From d622600fe09574280de98dbfa719d576c6daf4ef Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Wed, 25 Mar 2026 21:52:34 -0700 Subject: [PATCH 1/9] Migrate Az.Functions from AutoRest PowerShell v3 to v4 Breaking changes: - Replaced -IdentityType parameter with -EnableSystemAssignedIdentity (Boolean/SwitchParameter) in New-AzFunctionApp and Update-AzFunctionApp - Replaced -IdentityID parameter with -UserAssignedIdentity (String array of ARM resource IDs) in New-AzFunctionApp and Update-AzFunctionApp - New-AzFunctionApp and Update-AzFunctionApp now support combining SystemAssigned and UserAssigned identities in a single call - Output type property changes: enum types converted to strings, arrays converted to Lists (see BreakingChangeIssues.csv) Bug fixes: - Fix parameter set conflict between Create and CreateExpanded when passing identity params to internal cmdlet - Fix AppSetting list type (List[Object] to List[INameValuePair]) - Fix error messages to reference new parameter names - Fix variable typo (siteCofig to siteConfig) - Add SKU validation guards for Flex Consumption and Container App plans Tests: - Added combined SystemAssigned+UserAssigned identity tests for New-AzFunctionApp and Update-AzFunctionApp - Added Update-AzFunctionApp error guard test for Flex Consumption apps - Updated test assertions for new parameter names and ErrorIds - Removed 9 auto-generated template test stubs - All 64 tests pass in both record and playback modes Other: - Updated functionAppStacks.json (adds Node.js 24, Python 3.14, Java 25) - Added HelpMessage attributes for InputObject, DefaultProfile, and ResourceGroupName across all custom cmdlets - Added comment on StorageAccounts_Update remove-operation directive --- .../Properties/AssemblyInfo.cs | 7 +- src/Functions/Functions.Autorest/README.md | 23 +- .../custom/Functions.format.ps1xml | 4 +- .../custom/Functions.types.ps1xml | 4 +- .../FunctionsStack/functionAppStacks.json | 806 +- .../custom/Get-AzFunctionApp.ps1 | 7 +- .../Get-AzFunctionAppAvailableLocation.ps1 | 2 +- .../custom/Get-AzFunctionAppPlan.ps1 | 7 +- .../custom/Get-AzFunctionAppSetting.ps1 | 14 +- .../custom/HelperFunctions.ps1 | 27 +- .../custom/New-AzFunctionApp.ps1 | 97 +- .../custom/New-AzFunctionAppPlan.ps1 | 13 +- .../custom/Remove-AzFunctionApp.ps1 | 11 +- .../custom/Remove-AzFunctionAppPlan.ps1 | 11 +- .../custom/Remove-AzFunctionAppSetting.ps1 | 14 +- .../custom/Restart-AzFunctionApp.ps1 | 11 +- .../custom/Start-AzFunctionApp.ps1 | 11 +- .../custom/Stop-AzFunctionApp.ps1 | 11 +- .../custom/Update-AzFunctionApp.ps1 | 137 +- .../custom/Update-AzFunctionAppPlan.ps1 | 17 +- .../custom/Update-AzFunctionAppSetting.ps1 | 14 +- .../custom/api/Support/AppServicePlan.cs | 12 + .../custom/api/Support/Site.cs | 22 + .../Functions.Autorest/docs/Az.Functions.md | 2 +- .../docs/Get-AzFunctionApp.md | 2 +- .../Get-AzFunctionAppAvailableLocation.md | 2 +- .../docs/Get-AzFunctionAppPlan.md | 2 +- .../docs/Get-AzFunctionAppSetting.md | 10 +- .../docs/New-AzFunctionApp.md | 140 +- .../docs/New-AzFunctionAppPlan.md | 4 +- .../docs/Remove-AzFunctionApp.md | 8 +- .../docs/Remove-AzFunctionAppPlan.md | 8 +- .../docs/Remove-AzFunctionAppSetting.md | 10 +- .../docs/Restart-AzFunctionApp.md | 8 +- .../docs/Start-AzFunctionApp.md | 8 +- .../docs/Stop-AzFunctionApp.md | 8 +- .../docs/Update-AzFunctionApp.md | 77 +- .../docs/Update-AzFunctionAppPlan.md | 10 +- .../docs/Update-AzFunctionAppSetting.md | 10 +- .../examples/Update-AzFunctionApp.md | 4 +- .../Functions.Autorest/generate-info.json | 2 +- .../test/Get-AzFunctionApp.Recording.json | 932 +- ...unctionAppAvailableLocation.Recording.json | 180 +- .../test/Get-AzFunctionAppPlan.Recording.json | 373 +- ...Remove-AzFunctionAppSetting.Recording.json | 1063 +-- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 5 +- .../test/New-AzFunctionApp.Recording.json | 7690 +++++++++-------- .../test/New-AzFunctionApp.Tests.ps1 | 66 +- .../test/New-AzFunctionAppPlan.Recording.json | 170 +- ...-Remove-AzFunctionApp.Tests.Recording.json | 5636 ++++++++---- .../New-Update-Remove-AzFunctionApp.Tests.ps1 | 95 +- ...te-Remove-AzFunctionAppPlan.Recording.json | 860 +- .../test/Remove-AzFunctionApp.Recording.json | 779 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 3361 ++++--- .../Functions.Autorest/test/env.json | 256 +- .../Functions.Autorest/test/utils.ps1 | 17 + src/Functions/Functions.sln | 28 +- src/Functions/Functions/Az.Functions.psd1 | 11 +- src/Functions/Functions/ChangeLog.md | 13 +- .../Functions/Properties/AssemblyInfo.cs | 4 +- .../Functions/help/Get-AzFunctionApp.md | 2 +- .../Get-AzFunctionAppAvailableLocation.md | 2 +- .../Functions/help/Get-AzFunctionAppPlan.md | 2 +- .../help/Get-AzFunctionAppSetting.md | 9 +- .../Functions/help/New-AzFunctionApp.md | 111 +- .../Functions/help/New-AzFunctionAppPlan.md | 3 +- .../Functions/help/Remove-AzFunctionApp.md | 7 +- .../help/Remove-AzFunctionAppPlan.md | 7 +- .../help/Remove-AzFunctionAppSetting.md | 9 +- .../Functions/help/Restart-AzFunctionApp.md | 7 +- .../Functions/help/Start-AzFunctionApp.md | 7 +- .../Functions/help/Stop-AzFunctionApp.md | 7 +- .../Functions/help/Update-AzFunctionApp.md | 72 +- .../help/Update-AzFunctionAppPlan.md | 9 +- .../help/Update-AzFunctionAppSetting.md | 9 +- 75 files changed, 13687 insertions(+), 9712 deletions(-) create mode 100644 src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs create mode 100644 src/Functions/Functions.Autorest/custom/api/Support/Site.cs diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index dea87d44415e..c6747db81ca7 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -20,7 +20,10 @@ [assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] [assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] [assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Functions")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("4.3.1")] -[assembly: System.Reflection.AssemblyVersionAttribute("4.3.1")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("4.3.0")] +[assembly: System.Reflection.AssemblyVersionAttribute("4.3.0")] [assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] [assembly: System.CLSCompliantAttribute(false)] + + + diff --git a/src/Functions/Functions.Autorest/README.md b/src/Functions/Functions.Autorest/README.md index 87357d1ea4ee..7023d9eba9cb 100644 --- a/src/Functions/Functions.Autorest/README.md +++ b/src/Functions/Functions.Autorest/README.md @@ -48,7 +48,7 @@ In this directory, run AutoRest: ``` yaml # For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option use-extension: - "@autorest/powershell": "3.x" + "@autorest/powershell": "4.x" directive: - suppress: XmsResourceInPutResponse @@ -127,6 +127,8 @@ directive: - remove-operation: WebApps_GetProductionSiteDeploymentStatus - remove-operation: WebApps_GetSlotSiteDeploymentStatusSlot - remove-operation: Workflows_RegenerateAccessKey + # Prevent generation of StorageAccounts cmdlet — Functions uses custom Storage helper for Flex Consumption + - remove-operation: StorageAccounts_Update - from: WebApps.json where: $.paths["/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/privateEndpointConnections/{privateEndpointConnectionName}"].delete.responses.200 transform: delete $.schema @@ -560,25 +562,6 @@ directive: - from: source-file-csharp where: $ transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}FunctionsToExport = \{cmdletsList\}\"\);/, '') - - - where: - verb: Restart|Start|Stop - subject: App - set: - preview-announcement: - preview-message: "*****************************************************************************************\\r\\n* This cmdlet will undergo a breaking change in Az v16.0.0, to be released in May 2026. *\\r\\n* At least one change applies to this cmdlet. *\\r\\n* See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *\\r\\n**************************************************************************************************" - - where: - verb: New - subject: App|AppPlan - set: - preview-announcement: - preview-message: "*****************************************************************************************\\r\\n* This cmdlet will undergo a breaking change in Az v16.0.0, to be released in May 2026. *\\r\\n* At least one change applies to this cmdlet. *\\r\\n* See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *\\r\\n**************************************************************************************************" - - where: - verb: Get|Remove|Update - subject: App|AppPlan|AppSetting - set: - preview-announcement: - preview-message: "*****************************************************************************************\\r\\n* This cmdlet will undergo a breaking change in Az v16.0.0, to be released in May 2026. *\\r\\n* At least one change applies to this cmdlet. *\\r\\n* See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *\\r\\n**************************************************************************************************" ``` ``` yaml diff --git a/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml b/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml index 8de1f777359d..1f222fd8a254 100644 --- a/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml +++ b/src/Functions/Functions.Autorest/custom/Functions.format.ps1xml @@ -4,7 +4,7 @@ FunctionApp - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.Site + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Site @@ -36,7 +36,7 @@ FunctionAppPlan - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.AppServicePlan + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan diff --git a/src/Functions/Functions.Autorest/custom/Functions.types.ps1xml b/src/Functions/Functions.Autorest/custom/Functions.types.ps1xml index 85eca79aaac9..ae543a21e857 100644 --- a/src/Functions/Functions.Autorest/custom/Functions.types.ps1xml +++ b/src/Functions/Functions.Autorest/custom/Functions.types.ps1xml @@ -1,7 +1,7 @@ - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.Site + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Site Status @@ -27,7 +27,7 @@ - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.AppServicePlan + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan ResourceGroupName diff --git a/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json b/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json index c2cd0d0b0ef9..957f01db4837 100644 --- a/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json +++ b/src/Functions/Functions.Autorest/custom/FunctionsStack/functionAppStacks.json @@ -18,7 +18,7 @@ "stackSettings": { "windowsRuntimeSettings": { "runtimeVersion": "v10.0", - "isPreview": true, + "isPreview": false, "isDefault": false, "isHidden": false, "remoteDebuggingSupported": false, @@ -51,7 +51,7 @@ }, "linuxRuntimeSettings": { "runtimeVersion": "DOTNET-ISOLATED|10.0", - "isPreview": true, + "isPreview": false, "isDefault": false, "isHidden": false, "remoteDebuggingSupported": false, @@ -80,7 +80,37 @@ "isDefault": false } ], - "endOfLifeDate": "Fri Nov 10 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Fri Nov 10 2028 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "dotnet-isolated", + "version": "10.0" + } + } + } + ] } } } @@ -123,7 +153,7 @@ "isDefault": false } ], - "endOfLifeDate": "Tue May 12 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" }, "linuxRuntimeSettings": { "runtimeVersion": "DOTNET-ISOLATED|9.0", @@ -154,7 +184,37 @@ "isDefault": false } ], - "endOfLifeDate": "Tue May 12 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "dotnet-isolated", + "version": "9.0" + } + } + } + ] } } } @@ -230,7 +290,37 @@ "isDefault": true } ], - "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "dotnet-isolated", + "version": "8.0" + } + } + } + ] } } } @@ -302,7 +392,8 @@ "isDefault": true } ], - "endOfLifeDate": "Tue May 14 2024 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue May 14 2024 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } } @@ -374,7 +465,8 @@ "isDefault": true } ], - "endOfLifeDate": "Tue Nov 12 2024 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Nov 12 2024 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } } @@ -488,7 +580,8 @@ "isDefault": false } ], - "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } } @@ -558,7 +651,8 @@ "isDefault": true } ], - "endOfLifeDate": "Tue Nov 12 2024 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Nov 12 2024 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } } @@ -625,7 +719,8 @@ "isDeprecated": true, "isDefault": true } - ] + ], + "Sku": null } } } @@ -679,6 +774,113 @@ "value": "node", "preferredOs": "windows", "majorVersions": [ + { + "displayText": "Node.js 24", + "value": "24", + "minorVersions": [ + { + "displayText": "Node.js 24", + "value": "24 LTS", + "stackSettings": { + "windowsRuntimeSettings": { + "runtimeVersion": "~24", + "isPreview": true, + "isDefault": false, + "isHidden": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "24.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node", + "WEBSITE_NODE_DEFAULT_VERSION": "~24" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "netFrameworkVersion": "v6.0" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "endOfLifeDate": "Mon Apr 30 2029 00:00:00 GMT+0000 (Coordinated Universal Time)" + }, + "linuxRuntimeSettings": { + "runtimeVersion": "Node|24", + "isPreview": true, + "isDefault": false, + "isHidden": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "24.x" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "node" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Node|24" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "endOfLifeDate": "Mon Apr 30 2029 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "node", + "version": "24" + } + } + } + ] + } + } + } + ] + }, { "displayText": "Node.js 22", "value": "22", @@ -746,7 +948,37 @@ "isDefault": true } ], - "endOfLifeDate": "Fri Apr 30 2027 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Fri Apr 30 2027 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "node", + "version": "22" + } + } + } + ] } } } @@ -817,7 +1049,37 @@ "isDefault": true } ], - "endOfLifeDate": "Thu Apr 30 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Thu Apr 30 2026 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "node", + "version": "20" + } + } + } + ] } } } @@ -888,7 +1150,8 @@ "isDefault": true } ], - "endOfLifeDate": "Wed Apr 30 2025 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Wed Apr 30 2025 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } } @@ -910,6 +1173,74 @@ "displayText": "Python 3", "value": "3", "minorVersions": [ + { + "displayText": "Python 3.14", + "value": "3.14", + "stackSettings": { + "linuxRuntimeSettings": { + "runtimeVersion": "Python|3.14", + "remoteDebuggingSupported": false, + "isPreview": true, + "isDefault": false, + "isHidden": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "3.14" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "python" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Python|3.14" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "endOfLifeDate": "Thu Oct 31 2030 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "python", + "version": "3.14" + } + } + } + ] + } + } + }, { "displayText": "Python 3.13", "value": "3.13", @@ -917,8 +1248,8 @@ "linuxRuntimeSettings": { "runtimeVersion": "Python|3.13", "remoteDebuggingSupported": false, - "isPreview": true, - "isDefault": false, + "isPreview": false, + "isDefault": true, "isHidden": false, "appInsightsSettings": { "isSupported": true @@ -944,7 +1275,37 @@ "isDefault": true } ], - "endOfLifeDate": "Wed Oct 31 2029 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Wed Oct 31 2029 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "python", + "version": "3.13" + } + } + } + ] } } }, @@ -982,7 +1343,37 @@ "isDefault": true } ], - "endOfLifeDate": "Tue Oct 31 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Oct 31 2028 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "python", + "version": "3.12" + } + } + } + ] } } }, @@ -1020,7 +1411,37 @@ "isDefault": true } ], - "endOfLifeDate": "Sun Oct 31 2027 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Sun Oct 31 2027 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "python", + "version": "3.11" + } + } + } + ] } } }, @@ -1058,7 +1479,37 @@ "isDefault": true } ], - "endOfLifeDate": "Sat Oct 31 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Sat Oct 31 2026 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "python", + "version": "3.10" + } + } + } + ] } } }, @@ -1101,7 +1552,8 @@ "isDefault": false } ], - "endOfLifeDate": "Fri Oct 31 2025 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Fri Oct 31 2025 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } }, @@ -1142,7 +1594,8 @@ "isDefault": false } ], - "endOfLifeDate": "Mon Oct 07 2024 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Mon Oct 07 2024 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } }, @@ -1189,7 +1642,8 @@ "isDefault": false } ], - "endOfLifeDate": "Tue Jun 27 2023 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Jun 27 2023 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } } @@ -1207,6 +1661,115 @@ "value": "java", "preferredOs": "windows", "majorVersions": [ + { + "displayText": "Java 25", + "value": "25", + "minorVersions": [ + { + "displayText": "Java 25", + "value": "25.0", + "stackSettings": { + "windowsRuntimeSettings": { + "runtimeVersion": "25", + "isPreview": true, + "isHidden": false, + "isAutoUpdate": true, + "isDefault": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "25" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": true, + "javaVersion": "25", + "netFrameworkVersion": "v6.0" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "endOfLifeDate": "Wed Sep 01 2032 00:00:00 GMT+0000 (Coordinated Universal Time)" + }, + "linuxRuntimeSettings": { + "runtimeVersion": "Java|25", + "isPreview": true, + "isHidden": false, + "isAutoUpdate": true, + "isDefault": false, + "remoteDebuggingSupported": false, + "appInsightsSettings": { + "isSupported": true + }, + "gitHubActionSettings": { + "isSupported": true, + "supportedVersion": "25" + }, + "appSettingsDictionary": { + "FUNCTIONS_WORKER_RUNTIME": "java" + }, + "siteConfigPropertiesDictionary": { + "use32BitWorkerProcess": false, + "linuxFxVersion": "Java|25" + }, + "supportedFunctionsExtensionVersions": [ + "~4" + ], + "supportedFunctionsExtensionVersionsInfo": [ + { + "version": "~4", + "isDeprecated": false, + "isDefault": true + } + ], + "endOfLifeDate": "Wed Sep 01 2032 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "java", + "version": "25" + } + } + } + ] + } + } + } + ] + }, { "displayText": "Java 21", "value": "21", @@ -1280,7 +1843,37 @@ "isDefault": true } ], - "endOfLifeDate": "Fri Sep 01 2028 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Fri Sep 01 2028 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "java", + "version": "21" + } + } + } + ] } } } @@ -1359,7 +1952,37 @@ "isDefault": true } ], - "endOfLifeDate": "Wed Sep 01 2027 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Wed Sep 01 2027 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "java", + "version": "17" + } + } + } + ] } } } @@ -1444,7 +2067,37 @@ "isDefault": false } ], - "endOfLifeDate": "Wed Sep 01 2027 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Wed Sep 01 2027 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "java", + "version": "11" + } + } + } + ] } } } @@ -1500,7 +2153,7 @@ "isDefault": false } ], - "endOfLifeDate": "Mon Nov 30 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Dec 31 2030 00:00:00 GMT+0000 (Coordinated Universal Time)" }, "linuxRuntimeSettings": { "runtimeVersion": "Java|8", @@ -1537,7 +2190,37 @@ "isDefault": false } ], - "endOfLifeDate": "Mon Nov 30 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Dec 31 2030 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "java", + "version": "8" + } + } + } + ] } } } @@ -1551,7 +2234,7 @@ "name": "powershell", "type": "Microsoft.Web/functionAppStacks?stackOsType=All", "properties": { - "displayText": "PowerShell Core", + "displayText": "PowerShell", "value": "powershell", "preferredOs": "windows", "majorVersions": [ @@ -1624,7 +2307,37 @@ "isDefault": true } ], - "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Tue Nov 10 2026 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "powershell", + "version": "7.4" + } + } + } + ] } } }, @@ -1693,7 +2406,8 @@ "isDefault": true } ], - "endOfLifeDate": "Fri Nov 08 2024 00:00:00 GMT+0000 (Coordinated Universal Time)" + "endOfLifeDate": "Fri Nov 08 2024 00:00:00 GMT+0000 (Coordinated Universal Time)", + "Sku": null } } } @@ -1796,6 +2510,36 @@ "isDeprecated": true, "isDefault": false } + ], + "Sku": [ + { + "skuCode": "FC1", + "instanceMemoryMB": [ + { + "size": 512, + "isDefault": false + }, + { + "size": 2048, + "isDefault": true + }, + { + "size": 4096, + "isDefault": false + } + ], + "maximumInstanceCount": { + "lowestMaximumInstanceCount": 40, + "highestMaximumInstanceCount": 1000, + "defaultValue": 100 + }, + "functionAppConfigProperties": { + "runtime": { + "name": "custom", + "version": "1.0" + } + } + } ] } } diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 index 651171508beb..d1d1800c9b09 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 @@ -1,10 +1,5 @@ function Get-AzFunctionApp { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets function apps in a subscription.')] [CmdletBinding(DefaultParametersetname="GetAll")] param( diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 index 9490ee23c64e..2d359da6b919 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppAvailableLocation.ps1 @@ -1,5 +1,5 @@ function Get-AzFunctionAppAvailableLocation { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IGeoRegion])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IGeoRegion])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets the location where a function app for the given os and plan type is available.')] [CmdletBinding()] param( diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 index 9ff0febaab19..69cf8060665d 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 @@ -1,10 +1,5 @@ function Get-AzFunctionAppPlan { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Get function apps plans in a subscription.')] [CmdletBinding(DefaultParameterSetName='GetAll')] param( diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 index 352237e20b74..904f2cd948c5 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 @@ -1,10 +1,5 @@ function Get-AzFunctionAppSetting { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets app settings for a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] param( @@ -27,17 +22,16 @@ function Get-AzFunctionAppSetting { [System.String[]] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, - [Parameter()] + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 028152f55c09..1f82e32cafc3 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -160,14 +160,15 @@ function GetEndpointSuffix [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] param() - $storageEndpointSuffix = (Get-AzContext).Environment.StorageEndpointSuffix + $environmentName = (Get-AzContext).Environment.Name - if ([string]::IsNullOrWhiteSpace($storageEndpointSuffix)) + switch ($environmentName) { - return '' + "AzureUSGovernment" { ';EndpointSuffix=core.usgovcloudapi.net' } + "AzureChinaCloud" { ';EndpointSuffix=core.chinacloudapi.cn' } + "AzureCloud" { ';EndpointSuffix=core.windows.net' } + default { '' } } - - return ";EndpointSuffix=$storageEndpointSuffix" } function NewAppSetting @@ -185,7 +186,7 @@ function NewAppSetting $Value ) - $setting = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.NameValuePair + $setting = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.NameValuePair $setting.Name = $Name $setting.Value = $Value @@ -762,7 +763,7 @@ function ValidateFunctionAppNameAvailability -Exception $exception } - $result = Az.Functions.internal\Test-AzNameAvailability -Type Site @PSBoundParameters + $result = Az.Functions.internal\Test-AzNameAvailability -Name $Name -Type Site @PSBoundParameters if (-not $result.NameAvailable) { @@ -1366,7 +1367,7 @@ function NewResourceTag $Tag ) - $resourceTag = [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ResourceTags]::new() + $resourceTag = [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ResourceTags]::new() foreach ($tagName in $Tag.Keys) { @@ -1486,14 +1487,14 @@ function NewAppSettingObject ) # Create StringDictionaryProperties (hash table) with the app settings - $properties = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.StringDictionaryProperties + $properties = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.StringDictionaryProperties foreach ($keyName in $currentAppSettings.Keys) { $properties.Add($keyName, $currentAppSettings[$keyName]) } - $appSettings = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.StringDictionary + $appSettings = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.StringDictionary $appSettings.Property = $properties return $appSettings @@ -1660,11 +1661,11 @@ function NewIdentityUserAssignedIdentity ) # If creating user assigned identities, only alphanumeric characters (0-9, a-z, A-Z), the underscore (_) and the hyphen (-) are supported. - $msiUserAssignedIdentities = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ManagedServiceIdentityUserAssignedIdentities + $msiUserAssignedIdentities = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ManagedServiceIdentityUserAssignedIdentities foreach ($id in $IdentityID) { - $functionAppUserAssignedIdentitiesValue = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ManagedServiceIdentityUserAssignedIdentities + $functionAppUserAssignedIdentitiesValue = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ManagedServiceIdentityUserAssignedIdentities $msiUserAssignedIdentities.Add($id, $functionAppUserAssignedIdentitiesValue) } @@ -2618,7 +2619,7 @@ function New-FlexConsumptionAppPlan } } - $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.AppServicePlan + $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan $servicePlan.Location = $Location $servicePlan.Reserved = $true $servicePlan.Kind = "functionapp" diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 548b7d89775b..c6e61e33d2a6 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -1,10 +1,5 @@ function New-AzFunctionApp { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Creates a function app.')] [CmdletBinding(SupportsShouldProcess=$true, DefaultParametersetname="Consumption")] param( @@ -159,7 +154,7 @@ function New-AzFunctionApp { [Parameter(ParameterSetName="EnvironmentForContainerApp")] [Parameter(ParameterSetName="FlexConsumption")] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IResourceTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IResourceTags]))] [System.Collections.Hashtable] [ValidateNotNull()] ${Tag}, @@ -173,30 +168,26 @@ function New-AzFunctionApp { [Hashtable] ${AppSetting}, - [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage="Specifies the type of identity used for the function app. - The acceptable values for this parameter are: - - SystemAssigned - - UserAssigned - ")] + [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage="Determines whether to enable a system-assigned identity for the resource.")] [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] [Parameter(ParameterSetName="FlexConsumption")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.FunctionAppManagedServiceIdentityCreateType])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType] - ${IdentityType}, + [System.Management.Automation.SwitchParameter] + ${EnableSystemAssignedIdentity}, - [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage="Specifies the list of user identities associated with the function app. + [Parameter(ParameterSetName="ByAppServicePlan", HelpMessage="The array of user assigned identities associated with the function app. The user identity references will be ARM resource ids in the form: - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}'")] + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'")] [Parameter(ParameterSetName="Consumption")] [Parameter(ParameterSetName="CustomDockerImage")] [Parameter(ParameterSetName="EnvironmentForContainerApp")] [Parameter(ParameterSetName="FlexConsumption")] [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] [System.String[]] - ${IdentityID}, + ${UserAssignedIdentity}, [Parameter(Mandatory=$true,ParameterSetName="FlexConsumption", HelpMessage='Location to create Flex Consumption function app.')] [ValidateNotNullOrEmpty()] @@ -225,12 +216,12 @@ function New-AzFunctionApp { ${DeploymentStorageAuthValue}, [Parameter(ParameterSetName="FlexConsumption", HelpMessage= -'Array of hashtables describing the AlwaysReady configuration. Each hashtable must include: -- name: The function name or route name. -- instanceCount: The number of pre-warmed instances for that function. + 'Array of hashtables describing the AlwaysReady configuration. Each hashtable must include: + - name: The function name or route name. + - instanceCount: The number of pre-warmed instances for that function. -Example: -@(@{ name = "http"; instanceCount = 2 }).')] + Example: + @(@{ name = "http"; instanceCount = 2 }).')] [ValidateNotNullOrEmpty()] [Hashtable[]] ${AlwaysReady}, @@ -289,16 +280,12 @@ Example: [System.String] ${RegistryServer}, + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] [System.Management.Automation.PSObject] ${DefaultProfile}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] @@ -354,8 +341,6 @@ Example: "FunctionsVersion", "RuntimeVersion", "AppSetting", - "IdentityType", - "IdentityID", "Tag", "Environment", "RegistryServer", @@ -373,7 +358,9 @@ Example: "MaximumInstanceCount", "InstanceMemoryMB", "HttpPerInstanceConcurrency", - "EnableZoneRedundancy" + "EnableZoneRedundancy", + "EnableSystemAssignedIdentity", + "UserAssignedIdentity" ) foreach ($paramName in $paramsToRemove) { @@ -393,9 +380,9 @@ Example: $appInsightCreated = $false $functionAppCreatedSuccessfully = $false - $appSettings = New-Object -TypeName System.Collections.Generic.List[System.Object] - $siteConfig = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.SiteConfig - $functionAppDef = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.Site + $appSettings = New-Object -TypeName System.Collections.Generic.List[Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.INameValuePair] + $siteConfig = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.SiteConfig + $functionAppDef = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Site $OSIsLinux = ($OSType -eq "Linux") -or $functionAppIsFlexConsumption @@ -458,27 +445,31 @@ Example: } # Set function app managed identity - if ($IdentityType) + if ($null -ne $UserAssignedIdentity -and $UserAssignedIdentity.Count -eq 0) { - $functionAppDef.IdentityType = $IdentityType - - if ($IdentityType -eq "UserAssigned") - { - # Set UserAssigned managed identiy - if (-not $IdentityID) - { - $errorMessage = "IdentityID is required for UserAssigned identity" - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "IdentityIDIsRequiredForUserAssignedIdentity" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - - } + $errorMessage = "At least one user-assigned identity resource ID must be provided via the -UserAssignedIdentity parameter." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "UserAssignedIdentityRequired" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } - $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID - $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity - } + if ($EnableSystemAssignedIdentity.IsPresent -and $UserAssignedIdentity) + { + $functionAppDef.IdentityType = "SystemAssigned,UserAssigned" + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $UserAssignedIdentity + $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + } + elseif ($EnableSystemAssignedIdentity.IsPresent) + { + $functionAppDef.IdentityType = "SystemAssigned" + } + elseif ($UserAssignedIdentity) + { + $functionAppDef.IdentityType = "UserAssigned" + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $UserAssignedIdentity + $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity } $servicePlan = $null diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 index f46656ff14a3..27eb49c4638f 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 @@ -1,10 +1,5 @@ function New-AzFunctionAppPlan { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Creates a function app service plan.')] [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( @@ -65,7 +60,7 @@ function New-AzFunctionAppPlan { [Parameter(HelpMessage='Resource tags.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IResourceTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IResourceTags]))] [System.Collections.Hashtable] [ValidateNotNull()] ${Tag}, @@ -80,7 +75,7 @@ function New-AzFunctionAppPlan { [System.Management.Automation.SwitchParameter] ${AsJob}, - [Parameter()] + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] @@ -168,7 +163,7 @@ function New-AzFunctionAppPlan { -ParameterList @("SubscriptionId", "HttpPipelineAppend", "HttpPipelinePrepend") ValidatePremiumPlanLocation -Location $Location -OSIsLinux:$OSIsLinux @params - $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.AppServicePlan + $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan # Plan settings $servicePlan.SkuTier = $tier diff --git a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 index a22b0a52a4e9..dd8a7972557f 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 @@ -1,9 +1,4 @@ function Remove-AzFunctionApp { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Deletes a function app.')] @@ -14,7 +9,7 @@ function Remove-AzFunctionApp { [ValidateNotNullOrEmpty()] ${Name}, - [Parameter(ParameterSetName='ByName', Mandatory=$true)] + [Parameter(ParameterSetName='ByName', Mandatory=$true, HelpMessage='The name of the resource group.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] [System.String] [ValidateNotNullOrEmpty()] @@ -27,8 +22,8 @@ function Remove-AzFunctionApp { [ValidateNotNullOrEmpty()] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 index be03f847f152..6658611712c6 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 @@ -1,9 +1,4 @@ function Remove-AzFunctionAppPlan { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Deletes a function app plan.')] @@ -14,7 +9,7 @@ function Remove-AzFunctionAppPlan { [ValidateNotNullOrEmpty()] ${Name}, - [Parameter(ParameterSetName='ByName', Mandatory=$true)] + [Parameter(ParameterSetName='ByName', Mandatory=$true, HelpMessage='The name of the resource group.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] [System.String] [ValidateNotNullOrEmpty()] @@ -27,8 +22,8 @@ function Remove-AzFunctionAppPlan { [ValidateNotNullOrEmpty()] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app plan object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan] [ValidateNotNull()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 index f22b70efc40f..6a4c381517c7 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 @@ -1,10 +1,5 @@ function Remove-AzFunctionAppSetting { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Removes app settings from a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] param( @@ -27,8 +22,8 @@ function Remove-AzFunctionAppSetting { [System.String] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, @@ -42,12 +37,11 @@ function Remove-AzFunctionAppSetting { [System.Management.Automation.SwitchParameter] ${Force}, - [Parameter()] + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] diff --git a/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 index 86be97d05b23..c41001849f6b 100644 --- a/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 @@ -1,9 +1,4 @@ function Restart-AzFunctionApp { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='RestartByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Restarts a function app.')] @@ -14,7 +9,7 @@ function Restart-AzFunctionApp { [ValidateNotNullOrEmpty()] ${Name}, - [Parameter(ParameterSetName='RestartByName', Mandatory=$true)] + [Parameter(ParameterSetName='RestartByName', Mandatory=$true, HelpMessage='The name of the resource group.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] [System.String] [ValidateNotNullOrEmpty()] @@ -27,8 +22,8 @@ function Restart-AzFunctionApp { [ValidateNotNullOrEmpty()] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 index 37328b4782b9..cb77e3c7a506 100644 --- a/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 @@ -1,9 +1,4 @@ function Start-AzFunctionApp { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='StartByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Starts a function app.')] @@ -14,7 +9,7 @@ function Start-AzFunctionApp { [ValidateNotNullOrEmpty()] ${Name}, - [Parameter(ParameterSetName='StartByName', Mandatory=$true)] + [Parameter(ParameterSetName='StartByName', Mandatory=$true, HelpMessage='The name of the resource group.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] [System.String] [ValidateNotNullOrEmpty()] @@ -27,8 +22,8 @@ function Start-AzFunctionApp { [ValidateNotNullOrEmpty()] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 index 4ee5ffb7271d..7f913cf68b84 100644 --- a/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 @@ -1,9 +1,4 @@ function Stop-AzFunctionApp { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='StopByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Stops a function app.')] @@ -14,7 +9,7 @@ function Stop-AzFunctionApp { [ValidateNotNullOrEmpty()] ${Name}, - [Parameter(ParameterSetName='StopByName', Mandatory=$true)] + [Parameter(ParameterSetName='StopByName', Mandatory=$true, HelpMessage='The name of the resource group.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Path')] [System.String] [ValidateNotNullOrEmpty()] @@ -27,8 +22,8 @@ function Stop-AzFunctionApp { [ValidateNotNullOrEmpty()] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNullOrEmpty()] ${InputObject}, diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 index 08a444f1c440..cec9e7a3bd62 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 @@ -1,11 +1,6 @@ function Update-AzFunctionApp { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Updates a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] param( @@ -25,8 +20,8 @@ function Update-AzFunctionApp { [System.String] ${Name}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, @@ -54,28 +49,22 @@ function Update-AzFunctionApp { [Parameter(HelpMessage='Resource tags.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IResourceTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IResourceTags]))] [System.Collections.Hashtable] [ValidateNotNull()] ${Tag}, - [Parameter(HelpMessage="Specifies the type of identity used for the function app. - The type 'None' will remove any identities from the function app. The acceptable values for this parameter are: - - SystemAssigned - - UserAssigned - - None - ")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.FunctionAppManagedServiceIdentityUpdateType])] + [Parameter(HelpMessage="Determines whether to enable a system-assigned identity for the resource.")] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType] - ${IdentityType}, + [System.Boolean] + ${EnableSystemAssignedIdentity}, - [Parameter(HelpMessage="Specifies the list of user identities associated with the function app. + [Parameter(HelpMessage="The array of user assigned identities associated with the function app. The user identity references will be ARM resource ids in the form: - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}'")] + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'")] [ValidateNotNullOrEmpty()] [System.String[]] - ${IdentityID}, + ${UserAssignedIdentity}, [Parameter(HelpMessage='Starts the operation and returns immediately, before the operation is completed. In order to determine if the operation has successfully been completed, use some other mechanism.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Runtime')] @@ -87,6 +76,7 @@ function Update-AzFunctionApp { [System.Management.Automation.SwitchParameter] ${AsJob}, + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] @@ -137,14 +127,18 @@ function Update-AzFunctionApp { RegisterFunctionsTabCompleters + # Save identity parameter state before removing from PSBoundParameters + $hasEnableSystemAssignedIdentityParam = $PSBoundParameters.ContainsKey('EnableSystemAssignedIdentity') + $hasUserAssignedIdentityParam = $PSBoundParameters.ContainsKey('UserAssignedIdentity') + # Remove bound parameters from the dictionary that cannot be process by the intenal cmdlets. $paramsToRemove = @( "PlanName", "ApplicationInsightsName", - "ApplicationInsightsKey" - "IdentityType", - "IdentityID", - "Tag" + "ApplicationInsightsKey", + "Tag", + "EnableSystemAssignedIdentity", + "UserAssignedIdentity" ) foreach ($paramName in $paramsToRemove) { @@ -181,32 +175,77 @@ function Update-AzFunctionApp { $existingFunctionApp = GetFunctionAppByName -Name $Name -ResourceGroupName $ResourceGroupName @params } - $appSettings = New-Object -TypeName System.Collections.Generic.List[System.Object] - $siteCofig = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.SiteConfig - $functionAppDef = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.Site + # Guard: reject app types not yet supported by Update-AzFunctionApp + if ($existingFunctionApp.Kind -and $existingFunctionApp.Kind.ToString() -match "azurecontainerapps") + { + $errorMessage = "Update-AzFunctionApp does not support updating Container Apps–hosted function apps." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "ContainerAppNotSupported" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $currentPlan = $null + if ($existingFunctionApp.ServerFarmId) + { + $currentPlan = GetFunctionAppServicePlanInfo $existingFunctionApp.ServerFarmId @params + } + + if ($currentPlan -and $currentPlan.SkuName -eq "FC1") + { + $errorMessage = "Update-AzFunctionApp does not yet support updating Flex Consumption function apps." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "FlexConsumptionNotSupported" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } + + $appSettings = New-Object -TypeName System.Collections.Generic.List[Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.INameValuePair] + $siteConfig = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.SiteConfig + $functionAppDef = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Site # Identity information - if ($IdentityType) + $userProvidedIdentitySettings = $hasEnableSystemAssignedIdentityParam -or + ($UserAssignedIdentity) + + if ($userProvidedIdentitySettings) { - $functionAppDef.IdentityType = $IdentityType + $enableSystemAssigned = $EnableSystemAssignedIdentity -eq $true + $hasUserAssigned = $UserAssignedIdentity - if ($IdentityType -eq "UserAssigned") + if ($hasUserAssigned -and $UserAssignedIdentity.Count -eq 0) { - # Set UserAssigned managed identity - if (-not $IdentityID) - { - $errorMessage = "IdentityID is required for UserAssigned identity" - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "IdentityIDIsRequiredForUserAssignedIdentity" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception - - } + $errorMessage = "At least one user-assigned identity resource ID must be provided via the -UserAssignedIdentity parameter." + $exception = [System.InvalidOperationException]::New($errorMessage) + ThrowTerminatingError -ErrorId "UserAssignedIdentityRequired" ` + -ErrorMessage $errorMessage ` + -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` + -Exception $exception + } - $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $IdentityID + if ($enableSystemAssigned -and $hasUserAssigned) + { + $functionAppDef.IdentityType = "SystemAssigned,UserAssigned" + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $UserAssignedIdentity $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity } + elseif ($enableSystemAssigned) + { + $functionAppDef.IdentityType = "SystemAssigned" + } + elseif ($hasUserAssigned) + { + $functionAppDef.IdentityType = "UserAssigned" + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $UserAssignedIdentity + $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + } + elseif ($EnableSystemAssignedIdentity -eq $false) + { + # Explicitly disable identity + $functionAppDef.IdentityType = "None" + } } elseif ($existingFunctionApp.IdentityType) { @@ -312,17 +351,17 @@ function Update-AzFunctionApp { } # Set siteConfig properties: AlwaysOn, LinuxFxVersion, JavaVersion, PowerShellVersion - $siteCofig.AlwaysOn = $existingFunctionApp.SiteConfig.AlwaysOn - $siteCofig.LinuxFxVersion = $existingFunctionApp.SiteConfig.LinuxFxVersion - $siteCofig.JavaVersion = $existingFunctionApp.SiteConfig.JavaVersion - $siteCofig.PowerShellVersion = $existingFunctionApp.SiteConfig.PowerShellVersion + $siteConfig.AlwaysOn = $existingFunctionApp.SiteConfig.AlwaysOn + $siteConfig.LinuxFxVersion = $existingFunctionApp.SiteConfig.LinuxFxVersion + $siteConfig.JavaVersion = $existingFunctionApp.SiteConfig.JavaVersion + $siteConfig.PowerShellVersion = $existingFunctionApp.SiteConfig.PowerShellVersion # Set the function app Kind $functionAppDef.Kind = $existingFunctionApp.Kind # Set app settings and site configuration - $siteCofig.AppSetting = $appSettings - $functionAppDef.Config = $siteCofig + $siteConfig.AppSetting = $appSettings + $functionAppDef.Config = $siteConfig $PSBoundParameters.Add("SiteEnvelope", $functionAppDef) | Out-Null if ($PsCmdlet.ShouldProcess($Name, "Updating function app")) diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 index d5365ad71d7b..abdc9a74676a 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 @@ -1,10 +1,5 @@ function Update-AzFunctionAppPlan { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Updates a function app service plan.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] param( @@ -27,8 +22,8 @@ function Update-AzFunctionAppPlan { [System.String] ${Name}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app plan object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan] [ValidateNotNull()] ${InputObject}, @@ -60,7 +55,7 @@ function Update-AzFunctionAppPlan { [Parameter(HelpMessage='Resource tags.')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IResourceTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IResourceTags]))] [System.Collections.Hashtable] [ValidateNotNull()] ${Tag}, @@ -75,7 +70,7 @@ function Update-AzFunctionAppPlan { [System.Management.Automation.SwitchParameter] ${AsJob}, - [Parameter()] + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] @@ -194,7 +189,7 @@ function Update-AzFunctionAppPlan { } $shouldUpdateFunctionAppPlan = $false; - $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.AppServicePlan + $servicePlan = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.AppServicePlan # Plan settings $servicePlan.Location = $existingPlan.Location diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 index 1f40872c3778..ecd2361f4a6d 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 @@ -1,10 +1,5 @@ function Update-AzFunctionAppSetting { - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("**********************************************************************************************`n - * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n - * At least one change applies to this cmdlet. *`n - * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n - ***************************************************************************************************")] - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Adds or updates app settings in a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] param( @@ -27,8 +22,8 @@ function Update-AzFunctionAppSetting { [System.String] ${SubscriptionId}, - [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true)] - [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite] + [Parameter(ParameterSetName='ByObjectInput', Mandatory=$true, ValueFromPipeline=$true, HelpMessage='The function app object.')] + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite] [ValidateNotNull()] ${InputObject}, @@ -41,12 +36,11 @@ function Update-AzFunctionAppSetting { [System.Management.Automation.SwitchParameter] ${Force}, - [Parameter()] + [Parameter(HelpMessage='The credentials, account, tenant, and subscription used for communication with Azure.')] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] diff --git a/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs b/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs new file mode 100644 index 000000000000..10ec21a4c635 --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/api/Support/AppServicePlan.cs @@ -0,0 +1,12 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models +{ + public partial class AppServicePlan : + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan, + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlanInternal, + Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.IValidates + { + // This gets set via PowerShell. For more info, please see custom/HelperScripts/HelperFunctions.ps1 + /// The Service plan worker type. + public string WorkerType { get; set; } + } +} diff --git a/src/Functions/Functions.Autorest/custom/api/Support/Site.cs b/src/Functions/Functions.Autorest/custom/api/Support/Site.cs new file mode 100644 index 000000000000..16b9d0db2a73 --- /dev/null +++ b/src/Functions/Functions.Autorest/custom/api/Support/Site.cs @@ -0,0 +1,22 @@ +namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models +{ + public partial class Site : + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite, + Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISiteInternal, + Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.IValidates + { + + // Function app settings. These gets set via PowerShell. For more info, please see custom/HelperScripts/HelperFunctions.ps1 + + public System.Collections.Hashtable ApplicationSettings { get; set; } + + public System.Collections.Hashtable SiteConfig { get; set; } + + public string Runtime { get; set; } + + public string OSType { get; set; } + + public string AppServicePlan { get; set; } + + } +} diff --git a/src/Functions/Functions.Autorest/docs/Az.Functions.md b/src/Functions/Functions.Autorest/docs/Az.Functions.md index 1c4e5b25c843..ef099eabbe71 100644 --- a/src/Functions/Functions.Autorest/docs/Az.Functions.md +++ b/src/Functions/Functions.Autorest/docs/Az.Functions.md @@ -1,6 +1,6 @@ --- Module Name: Az.Functions -Module Guid: 30379b50-986b-4662-89be-efae17f0e70e +Module Guid: f000fe23-e934-47f4-94c7-b3df55b9e61e Download Help Link: https://learn.microsoft.com/powershell/module/az.functions Help Version: 1.0.0.0 Locale: en-US diff --git a/src/Functions/Functions.Autorest/docs/Get-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionApp.md index 681676f4edeb..a5c8f835cdc5 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionApp.md @@ -205,7 +205,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md index ed0533ba0f7e..f7796585359f 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppAvailableLocation.md @@ -318,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IGeoRegion +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IGeoRegion ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppPlan.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppPlan.md index 5d983c4d0467..d7530e714100 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppPlan.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppPlan.md @@ -184,7 +184,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppSetting.md b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppSetting.md index 9b04575e6e46..d55439b2fab5 100644 --- a/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppSetting.md +++ b/src/Functions/Functions.Autorest/docs/Get-AzFunctionAppSetting.md @@ -39,7 +39,7 @@ This command gets the app settings of a function app. ## PARAMETERS ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -54,10 +54,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -149,11 +149,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md index 8cbec14ce288..f2b556d0a100 100644 --- a/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md @@ -16,42 +16,42 @@ Creates a function app. ``` New-AzFunctionApp -Location -Name -ResourceGroupName -Runtime -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-DisableApplicationInsights] [-FunctionsVersion ] [-IdentityID ] - [-IdentityType ] [-OSType ] [-PassThru] [-RuntimeVersion ] - [-SubscriptionId ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] - [-WhatIf] [] + [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] + [-FunctionsVersion ] [-OSType ] [-PassThru] [-RuntimeVersion ] + [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### ByAppServicePlan ``` New-AzFunctionApp -Name -PlanName -ResourceGroupName -Runtime -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-DisableApplicationInsights] [-FunctionsVersion ] [-IdentityID ] - [-IdentityType ] [-OSType ] [-PassThru] [-RuntimeVersion ] - [-SubscriptionId ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] - [-WhatIf] [] + [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] + [-FunctionsVersion ] [-OSType ] [-PassThru] [-RuntimeVersion ] + [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### CustomDockerImage ``` New-AzFunctionApp -Image -Name -PlanName -ResourceGroupName -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-DisableApplicationInsights] [-IdentityID ] - [-IdentityType ] [-PassThru] [-RegistryCredential ] - [-SubscriptionId ] [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] - [-WhatIf] [] + [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] + [-PassThru] [-RegistryCredential ] [-SubscriptionId ] [-Tag ] + [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ### EnvironmentForContainerApp ``` New-AzFunctionApp -Environment -Name -ResourceGroupName -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-DisableApplicationInsights] [-IdentityID ] - [-IdentityType ] [-Image ] [-PassThru] - [-RegistryCredential ] [-RegistryServer ] [-ResourceCpu ] - [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] [-SubscriptionId ] - [-Tag ] [-WorkloadProfileName ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] - [-WhatIf] [] + [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] + [-Image ] [-PassThru] [-RegistryCredential ] [-RegistryServer ] + [-ResourceCpu ] [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] + [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] + [-WorkloadProfileName ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ### FlexConsumption @@ -59,12 +59,12 @@ New-AzFunctionApp -Environment -Name -ResourceGroupName -Name -ResourceGroupName -Runtime -StorageAccountName [-AlwaysReady ] [-ApplicationInsightsKey ] [-ApplicationInsightsName ] [-AppSetting ] - [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] + [-Break ] [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] [-DeploymentStorageContainerName ] [-DeploymentStorageName ] [-DisableApplicationInsights] - [-EnableZoneRedundancy] [-HttpPerInstanceConcurrency ] [-IdentityID ] - [-IdentityType ] [-InstanceMemoryMB ] [-MaximumInstanceCount ] - [-PassThru] [-RuntimeVersion ] [-SubscriptionId ] [-Tag ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + [-EnableSystemAssignedIdentity] [-EnableZoneRedundancy] [-HttpPerInstanceConcurrency ] + [-InstanceMemoryMB ] [-MaximumInstanceCount ] [-PassThru] [-RuntimeVersion ] + [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION @@ -132,11 +132,11 @@ This command creates a PowerShell function app hosted in a Flex Consumption plan ### -AlwaysReady Array of hashtables describing the AlwaysReady configuration. Each hashtable must include: -- name: The function name or route name. -- instanceCount: The number of pre-warmed instances for that function. + - name: The function name or route name. + - instanceCount: The number of pre-warmed instances for that function. -Example: -@(@{ name = "http"; instanceCount = 2 }). + Example: + @(@{ name = "http"; instanceCount = 2 }). ```yaml Type: System.Collections.Hashtable[] @@ -210,9 +210,24 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -DefaultProfile +### -Break +```yaml +Type: System.Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + ```yaml Type: System.Management.Automation.PSObject Parameter Sets: (All) @@ -302,6 +317,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableSystemAssignedIdentity +Determines whether to enable a system-assigned identity for the resource. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnableZoneRedundancy Enable zone redundancy for high availability. Applies to Flex Consumption SKU only. @@ -378,41 +408,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityID -Specifies the list of user identities associated with the function app. - The user identity references will be ARM resource ids in the form: - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}' - -```yaml -Type: System.String[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -IdentityType -Specifies the type of identity used for the function app. - The acceptable values for this parameter are: - - SystemAssigned - - UserAssigned - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Image Container image name, e.g., publisher/image-name:tag. @@ -733,6 +728,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -UserAssignedIdentity +The array of user assigned identities associated with the function app. + The user identity references will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkloadProfileName The workload profile name to run the container app on. @@ -786,7 +798,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/New-AzFunctionAppPlan.md b/src/Functions/Functions.Autorest/docs/New-AzFunctionAppPlan.md index 9ad41983627b..580871c44eb7 100644 --- a/src/Functions/Functions.Autorest/docs/New-AzFunctionAppPlan.md +++ b/src/Functions/Functions.Autorest/docs/New-AzFunctionAppPlan.md @@ -54,7 +54,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -258,7 +258,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/Remove-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Remove-AzFunctionApp.md index 03c7566a6426..fbcc35cfed63 100644 --- a/src/Functions/Functions.Autorest/docs/Remove-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Remove-AzFunctionApp.md @@ -76,10 +76,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -121,7 +121,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName - +The name of the resource group. ```yaml Type: System.String @@ -186,7 +186,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppPlan.md b/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppPlan.md index ceaa6e0885c3..7e0ea3df0c3c 100644 --- a/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppPlan.md +++ b/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppPlan.md @@ -76,10 +76,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app plan object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan Parameter Sets: ByObjectInput Aliases: @@ -121,7 +121,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName - +The name of the resource group. ```yaml Type: System.String @@ -186,7 +186,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## OUTPUTS diff --git a/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppSetting.md b/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppSetting.md index d47f1f2aa448..42edbf6247d6 100644 --- a/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppSetting.md +++ b/src/Functions/Functions.Autorest/docs/Remove-AzFunctionAppSetting.md @@ -54,7 +54,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -84,10 +84,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -179,11 +179,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/Restart-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Restart-AzFunctionApp.md index 799cdc284737..07290ae0b525 100644 --- a/src/Functions/Functions.Autorest/docs/Restart-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Restart-AzFunctionApp.md @@ -76,10 +76,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -121,7 +121,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName - +The name of the resource group. ```yaml Type: System.String @@ -186,7 +186,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions.Autorest/docs/Start-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Start-AzFunctionApp.md index 3e54500d3bf0..2ae8c2fa2b55 100644 --- a/src/Functions/Functions.Autorest/docs/Start-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Start-AzFunctionApp.md @@ -61,10 +61,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -106,7 +106,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName - +The name of the resource group. ```yaml Type: System.String @@ -171,7 +171,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions.Autorest/docs/Stop-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Stop-AzFunctionApp.md index 3643d9478ff6..98bc9682546c 100644 --- a/src/Functions/Functions.Autorest/docs/Stop-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Stop-AzFunctionApp.md @@ -76,10 +76,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -121,7 +121,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName - +The name of the resource group. ```yaml Type: System.String @@ -186,7 +186,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md index a07271888e50..f5aacd070849 100644 --- a/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md @@ -15,17 +15,17 @@ Updates a function app. ### ByName (Default) ``` Update-AzFunctionApp -Name -ResourceGroupName [-ApplicationInsightsKey ] - [-ApplicationInsightsName ] [-Force] [-IdentityID ] - [-IdentityType ] [-PlanName ] [-SubscriptionId ] - [-Tag ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + [-ApplicationInsightsName ] [-EnableSystemAssignedIdentity ] [-Force] [-PlanName ] + [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] + [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### ByObjectInput ``` Update-AzFunctionApp -InputObject [-ApplicationInsightsKey ] - [-ApplicationInsightsName ] [-Force] [-IdentityID ] - [-IdentityType ] [-PlanName ] [-Tag ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + [-ApplicationInsightsName ] [-EnableSystemAssignedIdentity ] [-Force] [-PlanName ] + [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] + [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION @@ -42,7 +42,7 @@ This command updates function app hosting plan. ### Example 2: Set a SystemAssigned managed identity for a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -IdentityType SystemAssigned -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 1 -Force ``` This command sets a SystemAssigned managed identity for a function app. @@ -56,7 +56,7 @@ This command updates function app Application Insights. ### Example 3: Remove managed identity from a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -IdentityType None -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 0 -Force ``` This command removes a managed identity from a function app. @@ -109,7 +109,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -123,28 +123,11 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Force -Forces the cmdlet to update the function app without prompting for confirmation. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -IdentityID -Specifies the list of user identities associated with the function app. - The user identity references will be ARM resource ids in the form: - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}' +### -EnableSystemAssignedIdentity +Determines whether to enable a system-assigned identity for the resource. ```yaml -Type: System.String[] +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -155,16 +138,11 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityType -Specifies the type of identity used for the function app. - The type 'None' will remove any identities from the function app. -The acceptable values for this parameter are: - - SystemAssigned - - UserAssigned - - None +### -Force +Forces the cmdlet to update the function app without prompting for confirmation. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -176,10 +154,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -281,6 +259,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -UserAssignedIdentity +The array of user assigned identities associated with the function app. + The user identity references will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. @@ -317,11 +312,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppPlan.md b/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppPlan.md index be273de4a2ff..81e0ab850928 100644 --- a/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppPlan.md +++ b/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppPlan.md @@ -60,7 +60,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -90,10 +90,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app plan object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan Parameter Sets: ByObjectInput Aliases: @@ -261,11 +261,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## NOTES diff --git a/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppSetting.md b/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppSetting.md index 61cad5c52229..b1f3f260803e 100644 --- a/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppSetting.md +++ b/src/Functions/Functions.Autorest/docs/Update-AzFunctionAppSetting.md @@ -55,7 +55,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile - +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -85,10 +85,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -180,11 +180,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary ## NOTES diff --git a/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md b/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md index ca5c0a83b035..7bf46223af09 100644 --- a/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md @@ -5,7 +5,7 @@ Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResource This command updates function app hosting plan. ### Example 2: Set a SystemAssigned managed identity for a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -IdentityType SystemAssigned -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 1 -Force ``` This command sets a SystemAssigned managed identity for a function app. ### Example 3: Update function app Application Insights. @@ -15,6 +15,6 @@ Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResource This command updates function app Application Insights. ### Example 3: Remove managed identity from a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -IdentityType None -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 0 -Force ``` This command removes a managed identity from a function app. \ No newline at end of file diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 242d3e62d82f..758312a28566 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "9c4921a8-146f-4104-b612-d6d997a2692f" + "generate_Id": "bb6a8b7a-352b-4d8e-8d78-07d0f81bd242" } diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index 475d47a779a7..7ee9f6f6e3f1 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "2208bb85-97b8-42c3-a33e-8e3826c8af13" ], + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "1fb1abf3-770c-450c-b9e9-d98a5f1f7c17" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,42 +22,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EDEA576295\"" ], - "x-ms-original-request-ids": [ "42d44b52-2107-4843-b073-6240909711b7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], + "x-ms-original-request-ids": [ "42ae5287-f272-44f3-b223-e891766c2cc1", "2940674e-4768-4b7b-95b4-94103c91620a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0b4409de-8cae-494e-b6bd-9611a7f3a2a2" ], - "x-ms-correlation-request-id": [ "0b4409de-8cae-494e-b6bd-9611a7f3a2a2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T181820Z:0b4409de-8cae-494e-b6bd-9611a7f3a2a2" ], + "x-ms-request-id": [ "e96abc04-4a32-4d3c-bc5d-773c62320df5" ], + "x-ms-correlation-request-id": [ "e96abc04-4a32-4d3c-bc5d-773c62320df5" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001231Z:e96abc04-4a32-4d3c-bc5d-773c62320df5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CBC15C95CB24201B8526A043D01EC71 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B6643F33FC1408999B30B9353B53FD5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "33821" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "43868" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:10:20.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:13:46.4733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:11:21.6733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:12:43.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:06:45.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:05:42.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-a50y\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-a50y.azurewebsites.net\"],\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace/sites/Flex-PowerShell-a50y\",\"repositorySiteName\":\"Flex-PowerShell-a50y\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-a50y.azurewebsites.net\",\"flex-powershell-a50y.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-a50y.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-a50y.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:11:58.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaa50y.blob.core.windows.net/app-package-flexpowershella50y-0196397\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-a50y\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-a50y\\\\$Flex-PowerShell-a50y\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"defaultHostName\":\"flex-powershell-a50y.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "b57e74d8-1d43-4a26-b6ca-c8511df45736" ], + "x-ms-unique-id": [ "66" ], + "x-ms-client-request-id": [ "9ab6e7d7-b9d4-408b-adf6-c88e3e6dbe89" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -69,40 +67,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b860514-d4ec-4257-957d-4b477e53a328" ], + "x-ms-request-id": [ "24d0815b-66de-4a0b-b91f-a5e295e76124" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b8cb20f8-f851-4f1e-80e1-27ea1ee6d13a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0e94fe09-3bba-46d0-818e-00da7e051c7f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f476360a-cd3d-4381-a991-23246d4c18ca" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181821Z:f476360a-cd3d-4381-a991-23246d4c18ca" ], + "x-ms-correlation-request-id": [ "60f149bf-28c2-4891-8c61-b47369b9db27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:60f149bf-28c2-4891-8c61-b47369b9db27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF108CEDBFAF42ECBD9276000086715D Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B9B9E6197AD498C9F96A8F7383A93E2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "64fe53ef-a101-468e-ae22-72010faaff0c" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "23b94087-c53c-46e4-8e42-ca8887dd57fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -114,41 +112,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ca246d7-7fdb-4119-a07a-6777ccea326f" ], + "x-ms-request-id": [ "9ecfba7c-61bf-4c6c-b850-b471481cee4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46f9500c-36ed-46dc-b46d-d79aeba15472" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a6b8b3b-69d2-4976-b44b-9f230f4b4f5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ba6d10ee-3356-4938-8259-fc70f0163e0c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181821Z:ba6d10ee-3356-4938-8259-fc70f0163e0c" ], + "x-ms-correlation-request-id": [ "88c94168-338e-43ee-8530-19ffaddd402a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:88c94168-338e-43ee-8530-19ffaddd402a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 417520AF2C2C4C41997AA1582B6981F1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 359A9D6FFFB84D85892D63C7FE8EA06C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+4": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "02c119cb-1592-4bf4-9f39-6496f60b5648" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "14dba604-bd6a-4a64-bdf9-c4a901808788" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -160,40 +158,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fccba17b-28c3-47f5-acd3-eb54049a504b" ], + "x-ms-request-id": [ "1e6603b2-e92e-4a8e-bb07-383bd0a0e1e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/271ee473-2fe8-46df-9841-ea9cb67435c5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce97c1c8-c028-450d-b82d-24fe3a230a78" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9b3b51f1-b570-4f59-9888-34681af68e5b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181821Z:9b3b51f1-b570-4f59-9888-34681af68e5b" ], + "x-ms-correlation-request-id": [ "1f6d898a-2b0d-4146-8fdc-9e681f12eab2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:1f6d898a-2b0d-4146-8fdc-9e681f12eab2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3AA030CFC79649CCB649C109A814F9EE Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECC89FD4E3F4460DBC8183C48E44F9BF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+5": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "2e00a9b9-b209-4903-ac59-d4f03c16b9ee" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "22f2b0fa-9be8-44fd-8577-b37863d4f574" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -205,41 +203,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c8845f2a-1de6-4de7-b69d-d468130f6147" ], + "x-ms-request-id": [ "c9b870b0-1482-48c2-87b4-74c026f311fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a585d63-f7ae-4a80-8c5e-83300a5741e1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c45686e-ab8d-434b-9e7e-0a645e65dd8f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9fb7be88-5237-4422-9ebc-8fdfe10e03dc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181821Z:9fb7be88-5237-4422-9ebc-8fdfe10e03dc" ], + "x-ms-correlation-request-id": [ "6f14ff0b-5dd8-472f-8ccf-b64e51d1ee9a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:6f14ff0b-5dd8-472f-8ccf-b64e51d1ee9a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E98A42A2004454E811E38BA4A3CECCC Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90EE5A6EF6164239AD52B3E86AD8ED9E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+6": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "e65ec8b8-1eb9-4364-a860-34d4edc775bb" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "1782ff9d-6439-405e-9d23-b15f27fa98d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -251,40 +249,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3003e3c-5c2e-478c-bb6d-b34cd89c6fe1" ], + "x-ms-request-id": [ "e3e864f4-50b8-4144-b6c9-6a3c7e9544e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7bc7956-f908-419d-afbb-c3c2d02e892a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/67665102-3398-48fc-981d-aec72d32ffd9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d07ffae6-6111-4b9d-a756-fcc2d79ada58" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181822Z:d07ffae6-6111-4b9d-a756-fcc2d79ada58" ], + "x-ms-correlation-request-id": [ "cd27d855-ed0f-495f-a0c8-fcd9b21d4b6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:cd27d855-ed0f-495f-a0c8-fcd9b21d4b6d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48B64C6ECD56420E99F97167AEDDD61B Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 575B68FF5AB244DF84E914CC713586E9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+7": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "bfd106a6-db2b-4872-84d0-89b95b5aacf6" ], + "x-ms-unique-id": [ "71" ], + "x-ms-client-request-id": [ "f532d4f5-9e1d-45de-8bd9-b75d3fe8c252" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -296,41 +294,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e838d2b0-023d-47e2-a755-725969b6dde8" ], + "x-ms-request-id": [ "5e06c01d-cbaf-4cad-a26b-81cbb03ae3be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a39f21cc-596e-4603-9674-da7df4151374" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0fdbcc06-6ce3-4786-b732-bf496f352537" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "48695471-a457-4554-9390-8b3413f28474" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181822Z:48695471-a457-4554-9390-8b3413f28474" ], + "x-ms-correlation-request-id": [ "54b72f9c-555d-4ae7-b8e2-7476815767cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:54b72f9c-555d-4ae7-b8e2-7476815767cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CBC87FCC32D4832A1C32448C1C4C13C Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49E401DDEAA44E999CDF7A9F64ECBFF9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+8": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "5f763164-7875-41a7-81aa-72aaedb86cd3" ], + "x-ms-unique-id": [ "72" ], + "x-ms-client-request-id": [ "fa4ecd44-c68e-4d65-9a5c-ca3a43b1b1fb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -342,40 +340,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2527a337-110c-417f-a14e-cdeef439c8be" ], + "x-ms-request-id": [ "3d53705c-a9c8-4db3-95bf-7e0ab4e4e466" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/41523fb3-7285-494a-b54f-75ec3b88896d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0428f6da-7865-47c6-8b33-1935aad8472f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4204e7ec-f711-49ee-886f-15fd63727d58" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181823Z:4204e7ec-f711-49ee-886f-15fd63727d58" ], + "x-ms-correlation-request-id": [ "7257fdc0-6b68-4eb9-9398-febd9bc2b340" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:7257fdc0-6b68-4eb9-9398-febd9bc2b340" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E190963F758941E68B169E71412CA089 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DA52F5E0658436CA05CBF27305A7154 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+9": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "a82e4f27-bc0b-4ee9-8dc2-febf89af0952" ], + "x-ms-unique-id": [ "73" ], + "x-ms-client-request-id": [ "f415988f-6934-470b-98a0-c7785bb5639c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4f611045-2a41-4174-886a-7d8d4e38892e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/670c9741-d45a-469d-886d-de539076c8eb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ec037fdf-0212-424a-afe8-2ba6f594c20d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:ec037fdf-0212-424a-afe8-2ba6f594c20d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4C0FCF3C21654326849D26B648B90C2A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4174" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01+10": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "74" ], + "x-ms-client-request-id": [ "3021d8a4-c61d-4a99-91cd-aef7f403a48f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,41 +431,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c8cf20f3-e5fe-4c2f-ba49-736396dcb5b7" ], + "x-ms-request-id": [ "16a9102b-829e-4682-a1ef-3373d32e372f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cfadc6a2-20b4-4290-8e0b-b504db2d712a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/96a36a7e-15d1-4a0d-b92b-a5db3750cb46" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "93aa3b2d-4406-4763-b76e-20abcd0c921a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T001234Z:93aa3b2d-4406-4763-b76e-20abcd0c921a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1944F650E4C2429EA173DD0692AD8475 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "75" ], + "x-ms-client-request-id": [ "a14636b0-4756-41d0-9fe9-26ceb25f937f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "29f197ac-a230-4cd7-ac99-392b80577c8c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a4d0effa-52fb-4206-b7de-80941f0083a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c308bbd-771e-46f4-98bb-2d022b51244d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181823Z:6c308bbd-771e-46f4-98bb-2d022b51244d" ], + "x-ms-correlation-request-id": [ "af906ede-ce0b-4781-8592-44f14c8ff9e4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T001234Z:af906ede-ce0b-4781-8592-44f14c8ff9e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD679D3BDA1B4B9A9AA2A733788F2F0F Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F128F89816E48659219991ACC5DF399 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4174" ], + "Content-Length": [ "4141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "59" ], - "x-ms-client-request-id": [ "fe59be44-9fa6-4c08-95d5-cfabf77f0880" ], + "x-ms-unique-id": [ "76" ], + "x-ms-client-request-id": [ "e782edc1-b373-42ca-ac75-85e2486881b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -432,42 +521,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57ED6FD16B15\"" ], + "ETag": [ "1DCBCB3EFD09DEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "34a1c849-8426-44ef-96cf-24781c7a5afe" ], + "x-ms-request-id": [ "100f2e91-edcf-4c01-b31d-7757df72fbb7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cd88dd43-9dc4-4f61-91cd-d23528ea2cae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181823Z:cd88dd43-9dc4-4f61-91cd-d23528ea2cae" ], + "x-ms-correlation-request-id": [ "58bf0791-df7b-4d0a-be48-e79021e44afb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001234Z:58bf0791-df7b-4d0a-be48-e79021e44afb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EB01A5CF27E4B60935DF49405F6C07F Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74EC0FD2F0044E3E86CDFE5A08EF1FBE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:10:20.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "78dbedd9-a3d2-4d35-8344-d1455639cf76" ], + "x-ms-unique-id": [ "77" ], + "x-ms-client-request-id": [ "2140041b-c5d0-474e-90d4-417e9ee2117a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -479,40 +568,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f002842-cb91-4a79-918b-a56a9bc20541" ], + "x-ms-request-id": [ "040d0548-e4af-4ea7-acfd-40c4f91549fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a4285c3-3381-41b7-a6af-99dce46a45d2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c857d23-caec-4988-9ee0-a080e73622d0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "18227a4b-44f3-405f-b7b0-f87494b950ee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181824Z:18227a4b-44f3-405f-b7b0-f87494b950ee" ], + "x-ms-correlation-request-id": [ "df20faef-0f61-455f-bda8-6e92315f2423" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:df20faef-0f61-455f-bda8-6e92315f2423" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6AC2A92369D34B28A3EA22070A983D92 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78A1C1BB1429408E925954B9F11632D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "aa9feb9d-63fa-4e9f-baea-8c6a315206b6" ], + "x-ms-unique-id": [ "78" ], + "x-ms-client-request-id": [ "13c4576b-c024-41b1-a273-4810a73811c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -524,41 +613,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0ba403e-50df-480f-a5dd-c922914bb1a9" ], + "x-ms-request-id": [ "16b4d917-473c-4351-9086-f95f413fbf8c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a070509-30f6-403e-8489-adbcab909dd6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c5f1d8a7-66e1-4e6b-b9da-823bda8b8196" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13f37177-7b74-4f43-8806-1b79e2d00b7c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181824Z:13f37177-7b74-4f43-8806-1b79e2d00b7c" ], + "x-ms-correlation-request-id": [ "3b5223ae-6557-4a1e-850d-5579aca1f844" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:3b5223ae-6557-4a1e-850d-5579aca1f844" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C84A32AF0D3949E9A35BB84F62176E0F Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65A57CA2A1AA4F59AA1EAA45AC45FB5F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "f0f06dc6-3291-4063-9ac5-554161dce6cd" ], + "x-ms-unique-id": [ "79" ], + "x-ms-client-request-id": [ "4c32cf90-6634-4ae7-9852-d7b2f2836d0f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -569,42 +658,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57ED9408A895\"" ], + "ETag": [ "1DCBCB41443E000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f25a8bfc-8a63-4838-8fe7-538c6fad2bcf" ], + "x-ms-request-id": [ "e97a9f2f-02d0-4d9e-8780-a279a67285bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "58bd0fd7-e3de-4eaa-9b0b-d79de71b9da5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181824Z:58bd0fd7-e3de-4eaa-9b0b-d79de71b9da5" ], + "x-ms-correlation-request-id": [ "0e5867b0-089b-4e5f-8888-6b455d0f6fe9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:0e5867b0-089b-4e5f-8888-6b455d0f6fe9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 038C0E2351A24CC5A29DCE9D4C2D3457 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED3AE268D01243DD86389A5293EA5D80 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8337" ], + "Content-Length": [ "8417" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:11:21.6733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "2b58821d-4579-4010-bad2-0cf88bdebb6b" ], + "x-ms-unique-id": [ "80" ], + "x-ms-client-request-id": [ "383e8494-75d9-4434-b257-85c5c99c053e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -616,40 +705,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2efa0f9a-48b8-4371-a220-6a92588cab19" ], + "x-ms-request-id": [ "4eaddb2e-915b-497a-a9b0-3637a93a871d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8292b269-6e66-49e8-964a-c0731194a1cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7aa0880f-ec19-4d47-beb1-a37cde75235d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5d11d11b-42a3-43ff-a4c1-30c7d8e2b3e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181824Z:5d11d11b-42a3-43ff-a4c1-30c7d8e2b3e4" ], + "x-ms-correlation-request-id": [ "1fd7b0f5-30ad-4e75-bd88-f6d579e81a53" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:1fd7b0f5-30ad-4e75-bd88-f6d579e81a53" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85BF0219CA52409BBEE5E0319F8CA7E2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABD2C087CD5F4466A6D857E008D81FE7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "2aaae44c-2065-43b7-88fe-b3f5d320560e" ], + "x-ms-unique-id": [ "81" ], + "x-ms-client-request-id": [ "243c3457-bd7a-4224-b5ef-0018399cc22a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -661,41 +750,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42466030-64a4-4e6b-927a-c3bcbf9f7778" ], + "x-ms-request-id": [ "f0d05be4-00b5-4234-982d-06378e5e3ddf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ffb4dd14-68b5-48e5-b4c8-3726f7e953ae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d99bab2-c6db-47d0-ae6d-8ccc537d37d3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cfd29793-c1f6-4948-b844-b5c867d34cc3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181824Z:cfd29793-c1f6-4948-b844-b5c867d34cc3" ], + "x-ms-correlation-request-id": [ "8c79f6dd-f8bd-4fc1-8f2b-2ddfe5482fc4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001236Z:8c79f6dd-f8bd-4fc1-8f2b-2ddfe5482fc4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB91C0C3B7074BF9963BC19039520754 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 106127C63AAA4281AFE13B6EAC71569D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "76873501-6a83-44ab-9d39-3b0bc612564f" ], + "x-ms-unique-id": [ "82" ], + "x-ms-client-request-id": [ "5a5c5345-0eb9-4a11-8b85-941225c71142" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -706,42 +795,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EDC4B88BCB\"" ], + "ETag": [ "1DCBCB44997E9E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee028c99-c2de-47bd-b26d-3e42c2dab75a" ], + "x-ms-request-id": [ "a2b25f56-b302-446d-9033-35bea1515f7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1ae42657-5d41-4eee-b5d0-9a5e769f554e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181825Z:1ae42657-5d41-4eee-b5d0-9a5e769f554e" ], + "x-ms-correlation-request-id": [ "5e7c23aa-f83e-450f-b6b2-9703730cfb86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001236Z:5e7c23aa-f83e-450f-b6b2-9703730cfb86" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A50DE7AE6A844663B0DF8CD5A2A519CB Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 81C23E3ED64F4C6483E3E5FCE3942F73 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8695" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:12:43.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:05:42.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "09df83e1-668d-4e4b-85fe-9544cd361ec1" ], + "x-ms-unique-id": [ "83" ], + "x-ms-client-request-id": [ "dc7bad55-1b42-429f-86a8-5e74c4194e14" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -753,40 +842,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "262229f7-e886-4417-bd72-ba3a4cb1a7dd" ], + "x-ms-request-id": [ "c561c661-c759-45bf-b96a-73de819c95f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f924a092-79da-4df2-aba2-a786496b2588" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f4b1edef-ff59-4325-b864-e39deee1e939" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7a3bbb30-b86f-4e6d-a96c-4013ee03cb2b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181825Z:7a3bbb30-b86f-4e6d-a96c-4013ee03cb2b" ], + "x-ms-correlation-request-id": [ "f6452304-18ee-4c1c-8bf1-7cb476e901fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001236Z:f6452304-18ee-4c1c-8bf1-7cb476e901fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55A4E1FAA5D9423DB196548015191543 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8399EC7834C442859D92ADFA08FE1DED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "f33d854c-e6b4-4f29-9033-aeddf8f971d3" ], + "x-ms-unique-id": [ "84" ], + "x-ms-client-request-id": [ "03b0650f-146a-4cc8-bf7b-e91abaf6251c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -798,41 +887,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e28ed8da-3d2d-4b82-9a57-9feae5817d3c" ], + "x-ms-request-id": [ "fad9217a-3c1b-4347-82ca-d4b3a8a8d393" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51e2811e-ea2d-4f6d-a52e-5bcc2598a01d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69bbeb01-e0da-44c9-9019-df14d5e60efe" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f267b34b-6d79-4c1e-9dbb-c86b38210839" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181825Z:f267b34b-6d79-4c1e-9dbb-c86b38210839" ], + "x-ms-correlation-request-id": [ "b416586a-bb4e-453d-ba6f-627e50c8088c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:b416586a-bb4e-453d-ba6f-627e50c8088c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70E1CDDEFC9948E4BF3162BFFDF5A979 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F1981BA7419F4670B40C3323D3BE050A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "2062306b-2d00-4a88-bdd4-6ba016aa744b" ], + "x-ms-unique-id": [ "85" ], + "x-ms-client-request-id": [ "9842cb2a-2010-48d8-96be-675112a59712" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -843,42 +932,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EDEA576295\"" ], + "ETag": [ "1DCBCB46F322CCB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a8653e1-f0b8-4f41-bcf3-c969110041b9" ], + "x-ms-request-id": [ "61bc3636-874c-4cff-872b-37c681a28871" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cbdf35d6-bffe-4eb8-bdde-996099d0b80d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181825Z:cbdf35d6-bffe-4eb8-bdde-996099d0b80d" ], + "x-ms-correlation-request-id": [ "3376778e-bad2-4548-b3ea-85b521690e3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:3376778e-bad2-4548-b3ea-85b521690e3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5787F54EA2A042C284DD29B10B91F055 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74F13ABAC9B94CF5B6F6C8143B6F3714 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8228" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:13:46.4733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:06:45.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "c655edf4-2379-469e-aa42-6fb2a8c969a6" ], + "x-ms-unique-id": [ "86" ], + "x-ms-client-request-id": [ "b19e0804-c885-47af-9c4e-724524f26c15" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -890,40 +979,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f2b6c77-4cee-4b57-b402-52a7a2b7cb2d" ], + "x-ms-request-id": [ "49e85d0e-4501-42dd-95d7-bdcbf4f45c3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/415adbe9-1b1a-4076-bf09-f672cbd5cd0a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3eadb1c3-6281-4c39-a2d4-5e4c1bab14ae" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "102cfc1d-1198-41f9-a3fd-82de35f4dd00" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181826Z:102cfc1d-1198-41f9-a3fd-82de35f4dd00" ], + "x-ms-correlation-request-id": [ "b98d0086-c957-4564-844d-5fd3cb99c8b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:b98d0086-c957-4564-844d-5fd3cb99c8b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 199A7487C49640EFB3E31F01D3F3713F Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A2252E73E9848878A4FCEBF391032BA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "af656ace-d94c-455e-9b74-668227c1c6df" ], + "x-ms-unique-id": [ "87" ], + "x-ms-client-request-id": [ "c7a3ad85-e8a3-40e7-bb93-b0b7f9db386e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -935,41 +1024,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf538cc3-fd78-40af-9af8-cae531032bd9" ], + "x-ms-request-id": [ "57ac843e-c864-4ed1-9cc3-b05c939967c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07125999-4e64-4559-be47-09d8a66ea928" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b830892-7d09-4fd3-b0d5-ddb312f6f705" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c1d7782-b4df-494e-a849-b62e029e144a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181826Z:6c1d7782-b4df-494e-a849-b62e029e144a" ], + "x-ms-correlation-request-id": [ "e7aef8a7-f941-4629-b2eb-dfae97ac886c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:e7aef8a7-f941-4629-b2eb-dfae97ac886c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3AF7C5037CD44F8A9E832F25B7A759D Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22BEFA723E8E4B9482613F49EB729410 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "4bd9c8dd-5914-42c7-bb0e-0651a4ed631f" ], + "x-ms-unique-id": [ "88" ], + "x-ms-client-request-id": [ "045a16df-6936-4c5d-afea-7c4aa18d9a96" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -980,41 +1069,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2432fa5d-d43b-4444-84c9-0c3077ac7bde" ], + "x-ms-original-request-ids": [ "fce2e056-d6ed-40a9-8a55-62276597cb67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b1d56dfa-38b6-4d27-b1ab-af1050172893" ], - "x-ms-correlation-request-id": [ "b1d56dfa-38b6-4d27-b1ab-af1050172893" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181826Z:b1d56dfa-38b6-4d27-b1ab-af1050172893" ], + "x-ms-request-id": [ "0db4ba17-fb0f-4170-9e5a-bb9f28ce09df" ], + "x-ms-correlation-request-id": [ "0db4ba17-fb0f-4170-9e5a-bb9f28ce09df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001238Z:0db4ba17-fb0f-4170-9e5a-bb9f28ce09df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5922F0CFCEE24DD89297800600AA038F Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8EDC105DD0642C7B93E95C65A50B916 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8240" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:10:20.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "ff795e8b-f968-4476-bb87-718e254de6c5" ], + "x-ms-unique-id": [ "89" ], + "x-ms-client-request-id": [ "744bbd84-3a82-47bb-a099-1b738729e1e9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1026,40 +1115,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77a8d8aa-742f-4695-8d31-27bcef2898fe" ], + "x-ms-request-id": [ "226108d5-7435-496a-9b89-9a7cca532314" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3149cf5-e48f-484e-8734-af2830332b61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9c3ac9d-5db9-4364-b9b2-db5d8851252c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "29e870a0-bfad-4a99-a5f4-e151042f30f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181826Z:29e870a0-bfad-4a99-a5f4-e151042f30f9" ], + "x-ms-correlation-request-id": [ "cdd5b46c-3087-420b-8629-010ed7d49592" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001238Z:cdd5b46c-3087-420b-8629-010ed7d49592" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 761495B659BD4BE9AD0118A1285ECA6D Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AB0C8B3F28048AAB958E10F82E5B299 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "08b39ea6-3276-4ae0-adfa-c0ac08bc1237" ], + "x-ms-unique-id": [ "90" ], + "x-ms-client-request-id": [ "d7cd7d2e-fb83-4841-9dc1-2dd9d66e2157" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1071,25 +1160,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c085735-e01d-4680-be65-ae1ae063da1a" ], + "x-ms-request-id": [ "96c5221e-3eae-4b41-b7f3-1c9251b3d53e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/27616be4-f7fb-49ea-b0dc-76f1297047b5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "878e111f-a714-4ac4-9d04-9c6a6ab5d0bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181827Z:878e111f-a714-4ac4-9d04-9c6a6ab5d0bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7949397-1fb6-4c84-91f1-00015ee9efdc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2fb7f625-2e62-401f-997e-d7ea2ddc351e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001238Z:2fb7f625-2e62-401f-997e-d7ea2ddc351e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA975F9706DB4D2E9DD8E6777576DFF4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D668C32BEAA478BB26BE53E20697E5A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, @@ -1100,12 +1189,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "144e530c-4fa0-4be8-904c-662f660242b8" ], + "x-ms-unique-id": [ "91" ], + "x-ms-client-request-id": [ "1598e68a-2de4-425e-8a4f-dbd967c75db9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1116,42 +1205,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EDEA576295\"" ], - "x-ms-original-request-ids": [ "ef75adde-e27f-4383-89f3-6decce1c837d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], + "x-ms-original-request-ids": [ "039ab8fd-e2b0-48bc-b610-94a76366caf4", "e0740bae-b93e-49ee-80be-7603c79957a6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "46e8d4ff-0f8d-4cfb-b1b1-b0abe7fe58b5" ], - "x-ms-correlation-request-id": [ "46e8d4ff-0f8d-4cfb-b1b1-b0abe7fe58b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181827Z:46e8d4ff-0f8d-4cfb-b1b1-b0abe7fe58b5" ], + "x-ms-request-id": [ "950adfd3-5027-4c5e-9117-17b99c67dd3d" ], + "x-ms-correlation-request-id": [ "950adfd3-5027-4c5e-9117-17b99c67dd3d" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001239Z:950adfd3-5027-4c5e-9117-17b99c67dd3d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4F5BA5D075A4A6885564E8435FAF11D Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:27Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC1211DBB36C4F04A8729C603E26ED7C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "33821" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "43868" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:11:21.6733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:10:20.9133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:13:46.4733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:12:43.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:06:45.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:05:42.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-a50y\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-a50y.azurewebsites.net\"],\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace/sites/Flex-PowerShell-a50y\",\"repositorySiteName\":\"Flex-PowerShell-a50y\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-a50y.azurewebsites.net\",\"flex-powershell-a50y.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-a50y.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-a50y.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:11:58.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaa50y.blob.core.windows.net/app-package-flexpowershella50y-0196397\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-a50y\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-a50y\\\\$Flex-PowerShell-a50y\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"defaultHostName\":\"flex-powershell-a50y.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "5f46ab2a-f09d-4291-a23f-60f4692dd72c" ], + "x-ms-unique-id": [ "92" ], + "x-ms-client-request-id": [ "da503932-26a8-487d-bc1e-c8b16444cce6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1163,40 +1250,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6335c8b-0651-480c-8b1b-77eb32b5d8ac" ], + "x-ms-request-id": [ "974a495a-a485-447a-9972-2d7f0c4c252a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/79666087-f373-46b1-8a00-0fa8b626f5ca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1e2523cb-3210-4c75-a184-71b0974f8fe7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6da18207-1a2f-4b86-b394-af7efa2a63b8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181828Z:6da18207-1a2f-4b86-b394-af7efa2a63b8" ], + "x-ms-correlation-request-id": [ "387eabfa-9943-4722-b828-16afab96bc8d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:387eabfa-9943-4722-b828-16afab96bc8d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6B68DE84A2C43D98CF4900274F58F22 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:27Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E9106DF1251429EAAD96EF029495546 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1201" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "97da9d94-06f5-40b7-90f2-ed85538fe5a4" ], + "x-ms-unique-id": [ "93" ], + "x-ms-client-request-id": [ "bed7acce-d8b2-4f35-947e-20cff68a6e57" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1208,41 +1295,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b198057f-850a-481f-8c77-41902dfc5537" ], + "x-ms-request-id": [ "6bac6302-85aa-482a-a077-a935eb5e4947" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/837a15fb-31e1-48dc-904b-bfacddf56d91" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/79da1432-fe13-48cb-80a4-17da2e99f803" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "973896c0-8ff2-4a11-bf5f-d7699108b576" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181828Z:973896c0-8ff2-4a11-bf5f-d7699108b576" ], + "x-ms-correlation-request-id": [ "7a26e5a9-c045-471b-892a-59cf09e9326d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:7a26e5a9-c045-471b-892a-59cf09e9326d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C2F12A18DF44A7DAC02AB586A6E5588 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00ACEA1F4F0E4F00B7927AB2E794C46E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4172" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+4": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "787a85f3-83ac-49d8-bda6-ab280d45182f" ], + "x-ms-unique-id": [ "94" ], + "x-ms-client-request-id": [ "064b82cc-c778-48f3-9e73-417d35868fd4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1254,40 +1341,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9ec6648-64ce-4e17-82ec-17da9acd2f17" ], + "x-ms-request-id": [ "8c454aad-e139-44ab-981c-4b06ad0d7a91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea01a466-bf87-450c-9cef-60ae453d6a40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/863c23d4-fcf9-45a2-a43c-e853465424e3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cb827218-0af9-44e8-a260-99a6945973b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181828Z:cb827218-0af9-44e8-a260-99a6945973b7" ], + "x-ms-correlation-request-id": [ "78bb609f-e5d4-41e0-9684-19e3fa96801a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:78bb609f-e5d4-41e0-9684-19e3fa96801a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A29119726524E94819222719DF66517 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF43F38A94544B23B8C83CCF28A21F0B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1172" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+5": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "8fe92347-c0fd-482f-b84b-fb89f6f5aa2f" ], + "x-ms-unique-id": [ "95" ], + "x-ms-client-request-id": [ "8f8fbee3-167b-42cf-b3b4-716f31d31260" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1299,41 +1386,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8854bda9-a0d9-4e31-94bd-5550428c38fe" ], + "x-ms-request-id": [ "6d35a73e-e09e-45a5-80ce-eff1cde62240" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/93e7dc5b-2078-4209-8804-a1426222127b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "43db41ca-e196-4d7f-a0e6-9484ef0dbb16" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181828Z:43db41ca-e196-4d7f-a0e6-9484ef0dbb16" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6232f6ee-7e76-494b-896a-be9859e7c5d5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "15a3e78e-c7c0-4299-9e19-0447a56673a2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:15a3e78e-c7c0-4299-9e19-0447a56673a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21A0149A31EC4F16B46DF32D4DED48B6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 014E98D9C8FD4025A587AE72303FA323 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4181" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+6": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "adf3a242-dd05-4ff0-a33a-2b49e024d885" ], + "x-ms-unique-id": [ "96" ], + "x-ms-client-request-id": [ "a147ae93-de2a-4e57-abc9-feb3ff75fa28" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1345,40 +1432,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45b0cac9-777e-4c94-b8dc-fed41cbea406" ], + "x-ms-request-id": [ "7a4160be-9aff-432a-88be-eac8f7fab2ac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5e02b150-ac36-43ed-828c-b2435659dc32" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04c73a7f-92e7-47ac-985b-d6e14311d0cd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "031be06a-9eea-42d8-8f16-a11aa8b4d892" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181828Z:031be06a-9eea-42d8-8f16-a11aa8b4d892" ], + "x-ms-correlation-request-id": [ "b146784e-77da-475b-b4f1-3c98b509e1f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:b146784e-77da-475b-b4f1-3c98b509e1f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 014D4BA147D84922BB8D95E7262EC8F4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 129D3D32E7994804BDE64DE02F4EAC37 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1213" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+7": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "80" ], - "x-ms-client-request-id": [ "e00b47a5-44a5-4d1c-9aa7-560e8d05f2f8" ], + "x-ms-unique-id": [ "97" ], + "x-ms-client-request-id": [ "d0ebf16b-42b9-4360-a9e2-71c8cb492a38" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1390,41 +1477,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05c1019e-a18b-482f-b77a-1a70269bc679" ], + "x-ms-request-id": [ "3b485a13-81bf-4e79-af0a-eee73e1a1a5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/faf169bd-34da-451d-9427-f755afba8486" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "125cbea3-7531-4944-b74e-de410241b00a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181829Z:125cbea3-7531-4944-b74e-de410241b00a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bacb295-3b64-4441-8bc7-0f7bf4c015cb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4c5855e2-fe28-4628-a796-45f6b5c488a4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:4c5855e2-fe28-4628-a796-45f6b5c488a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19ED0AEB1FD1402784E0C264DA651048 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:29Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C1253A42DAC455A81FC9D4675B1D59C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+8": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "0b0f5b85-e163-4963-8731-387a11aba521" ], + "x-ms-unique-id": [ "98" ], + "x-ms-client-request-id": [ "7849db7d-38e0-48f3-90fa-090bd720889e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1436,40 +1523,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d914f21a-8836-4341-987d-c17b7350be52" ], + "x-ms-request-id": [ "1845a695-62d1-4cf2-903e-c222be3af0f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2f1a3478-63e8-413f-99cd-fa2dcbbb7eee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fbc0376-b6fe-4053-8a85-b087d108bfe2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e9b5a049-35a5-486f-a662-f375eb336cc6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181829Z:e9b5a049-35a5-486f-a662-f375eb336cc6" ], + "x-ms-correlation-request-id": [ "72de760d-ede2-4c8a-b5cc-3dd776b1f887" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:72de760d-ede2-4c8a-b5cc-3dd776b1f887" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD5B4C70F8324F58AC1DBEDA1B2D85D7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:29Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6060B04259B04711A063416236B9BBD1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+9": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "6905ca8e-7359-440e-8f89-d3c6edc265e5" ], + "x-ms-unique-id": [ "99" ], + "x-ms-client-request-id": [ "96239a41-1390-46f3-93ec-f3a5750c1194" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1481,27 +1568,26 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f9bae92-01ed-4f35-badb-328d53c98d59" ], + "x-ms-request-id": [ "e5b024b4-43fd-405c-98b8-1f5b99a531ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7cb34b71-03a4-4323-8a2a-184fd31a186d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0dafde1-c05e-4144-9a77-49ffce8dc542" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7c2fa6d3-6e01-42c4-82fe-b5e62a306076" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181829Z:7c2fa6d3-6e01-42c4-82fe-b5e62a306076" ], + "x-ms-correlation-request-id": [ "28b1acb4-f58a-49f1-90b4-e8cf309d8162" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:28b1acb4-f58a-49f1-90b4-e8cf309d8162" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BEFAE95D154C4C71BFDB389828EC33D1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:29Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF676AEE28F243239C58652942898F5D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } } } - diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json index d385bd62dc4d..7500118c14c8 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "d445255a-de4d-424e-8088-7d6e4701a9b7" ], + "x-ms-unique-id": [ "100" ], + "x-ms-client-request-id": [ "12d2ad44-9094-452d-8c1b-2caff5afccd9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,25 +23,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d415ec03-5f9f-4f6b-9b31-9e28b1a17ca8" ], + "x-ms-request-id": [ "2d0182ff-cc9d-45bd-ac74-ea958503fc75" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b080ad65-249c-4fc6-86c1-071513c8f349" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e2734696-e987-4b6b-9555-4a3aa5c19f24" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c30c4cd3-7e2f-4947-9132-4307cb005f23" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181831Z:c30c4cd3-7e2f-4947-9132-4307cb005f23" ], + "x-ms-correlation-request-id": [ "5ca4c948-057d-4645-bd16-8d548bc5c5db" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001243Z:5ca4c948-057d-4645-bd16-8d548bc5c5db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F9968E2F9094071BD6F5BF836BB6C8C Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 096F0170A33E40378148A385DD3B5F83 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -52,12 +52,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "2b3a2467-5bdc-4ed1-8ce7-8b95343a7010" ], + "x-ms-unique-id": [ "101" ], + "x-ms-client-request-id": [ "e3f2877b-c5bb-463e-b349-cb439e5b9706" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -69,25 +69,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eed4bc4f-97e7-46ea-8ba3-d970ec2f739b" ], + "x-ms-request-id": [ "f0d8a5dc-9c85-40c5-a3a2-6f68e8a170b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8c3d6063-8e81-4613-899f-6f574db3898a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d015a265-d035-462c-87ed-19434c7b7493" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ae34f030-4d17-4ea4-9204-1e013ca567e6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181831Z:ae34f030-4d17-4ea4-9204-1e013ca567e6" ], + "x-ms-correlation-request-id": [ "3c3457d3-c123-4368-a1c1-8841fad85786" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001243Z:3c3457d3-c123-4368-a1c1-8841fad85786" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF500A0D7C2C4DB8AE7366E440BF2A49 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D11C216B0A83468AA65DC31EE23A3A0F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37360" ], + "Content-Length": [ "38204" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -98,12 +98,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "8efee3e2-7fb1-4e64-92ef-166b95c4ccbe" ], + "x-ms-unique-id": [ "102" ], + "x-ms-client-request-id": [ "fd22833a-b702-46e8-a519-285e9306a97d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -115,25 +115,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "191728dc-86d8-4e88-b619-cf3cf97fdd5a" ], + "x-ms-request-id": [ "0c5616c6-e4e4-4205-a0d7-ac113e22946e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1eafcbb9-eb26-426a-8c6e-8ec4580c8881" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b2accbc8-2608-46e9-8c03-4ff37ea0949f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "00757a32-a3cc-4227-91de-dc1b871220a8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181833Z:00757a32-a3cc-4227-91de-dc1b871220a8" ], + "x-ms-correlation-request-id": [ "d6a5da22-15e3-4cbb-8f2d-0c8baffe9399" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001243Z:d6a5da22-15e3-4cbb-8f2d-0c8baffe9399" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F8B68BA91ED4BB69A40A53B6DFEC382 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B28C56C7B304906977EC6F8E46F3024 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -144,12 +144,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "86" ], - "x-ms-client-request-id": [ "20192ad6-4183-49b9-a7cd-d835a2688776" ], + "x-ms-unique-id": [ "103" ], + "x-ms-client-request-id": [ "8500aeda-3bbc-4d4a-ad04-05dbe9b1fa3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -161,25 +161,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "926f4637-7209-4fc4-91b4-a76ca952f491" ], + "x-ms-request-id": [ "1cb9e65b-e448-489b-a6df-a2d9928797a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/515f311d-eb89-4ba3-a573-6de32c7f1cd2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/e20d384d-aa72-4403-b9c1-6295e6b76bf6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bb0ceaf0-5f72-4e50-b668-f98fcf375cef" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181833Z:bb0ceaf0-5f72-4e50-b668-f98fcf375cef" ], + "x-ms-correlation-request-id": [ "fc5fb0ed-eb6f-4419-a259-dffd393b3100" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001243Z:fc5fb0ed-eb6f-4419-a259-dffd393b3100" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07F897C667A64142AD1F9D8EF7CAF949 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA3FDA166554422998485F2ADBCEF6DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37716" ], + "Content-Length": [ "38561" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -190,12 +190,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "87" ], - "x-ms-client-request-id": [ "6b998703-bd64-4e4a-a921-035d5bf95833" ], + "x-ms-unique-id": [ "104" ], + "x-ms-client-request-id": [ "714ae86a-96ce-4b7b-906d-51484cf55ca0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -207,25 +207,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81e8e9c3-58fc-45e8-ba83-364f6a3465c4" ], + "x-ms-request-id": [ "2b597697-e3f7-48ec-893d-ed6d784b0852" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/f6242ac8-78b0-44d7-a422-315a51809a93" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ffeb3452-e1ff-4925-8ffb-9ab784e1df54" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d6f6245-ea87-4b93-b18f-17bcc09ff436" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T181833Z:1d6f6245-ea87-4b93-b18f-17bcc09ff436" ], + "x-ms-correlation-request-id": [ "61726fdb-77c5-4be1-a485-6cce53634c77" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:61726fdb-77c5-4be1-a485-6cce53634c77" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FBE496FD22041E59018143364695B4B Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38A7D9875260442A8054BA5F1143AD77 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36864" ], + "Content-Length": [ "37708" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -236,12 +236,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "b0193d3f-cc4a-4c8a-945a-1faae3d264f6" ], + "x-ms-unique-id": [ "105" ], + "x-ms-client-request-id": [ "6a3a68f1-e481-4203-8dbe-b621e94b9a6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -253,25 +253,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6bc4b7d1-03ea-4a71-8bdb-5e76667db840" ], + "x-ms-request-id": [ "b5e718db-d6a4-453d-9bc3-c9d990073b3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/7863dc76-0037-4d33-8574-db28beeb9a90" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f0c3114-63d3-4752-859b-224e7694af69" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T181834Z:6f0c3114-63d3-4752-859b-224e7694af69" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3bd1f004-0bf4-499c-bfdc-f1868896e6b8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "997aa752-25eb-4963-ba70-bbe7f0a5ed38" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:997aa752-25eb-4963-ba70-bbe7f0a5ed38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E46008955A4D4DF98D3B19D06CBE3C75 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A05A476A09794DE9A341CF34325E435D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27187" ], + "Content-Length": [ "27989" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -282,12 +282,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "3303738d-79b9-4fc6-8748-d4d1e0f5b4c5" ], + "x-ms-unique-id": [ "106" ], + "x-ms-client-request-id": [ "026d0d20-320f-4316-85cc-f87ee9d94c96" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -299,25 +299,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "413e6ce3-a67b-4cd1-823e-e79cea3ee95e" ], + "x-ms-request-id": [ "6e75ad06-6d42-4f84-9a19-838aee05932c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5f04daf3-0225-4f5c-8c4e-e2ef46b8b9dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/60757b25-b94f-43dc-9548-7735b3607b3c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "830849d6-6085-4543-ac2c-125520462da4" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T181834Z:830849d6-6085-4543-ac2c-125520462da4" ], + "x-ms-correlation-request-id": [ "cf036d1a-5d6a-4650-888d-8ce5d4947624" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:cf036d1a-5d6a-4650-888d-8ce5d4947624" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DFFD65739054FFB951EBEE60B1C4477 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E3B69776FB58474DBCF0E2E49B3562DA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27187" ], + "Content-Length": [ "27989" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -328,12 +328,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "90" ], - "x-ms-client-request-id": [ "e2e40a23-17aa-4bad-a797-d1ef6e0bce27" ], + "x-ms-unique-id": [ "107" ], + "x-ms-client-request-id": [ "50db3b67-a5d7-497a-8b89-50ddde6009b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -345,25 +345,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "392a60cf-5069-49f1-8cc7-b77f1dceb2e6" ], + "x-ms-request-id": [ "0ca4c055-17cb-44de-af41-9198be0fe7f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c9e1c479-0122-4790-ba44-050cc69df289" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/24fddc73-0e58-4e09-ad10-0e2e6ba25d4d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "78ee5ff5-408f-4887-98a8-f9b90e6cfb71" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181834Z:78ee5ff5-408f-4887-98a8-f9b90e6cfb71" ], + "x-ms-correlation-request-id": [ "a6b95066-dc08-459b-a0f9-a4dbcf1ae6cd" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:a6b95066-dc08-459b-a0f9-a4dbcf1ae6cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 145AF38B1AEA4ADE903B461ADEA41C75 Ref B: MWH011020807031 Ref C: 2025-11-17T18:18:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:18:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32499CE1C7FE4943AF4A7174F69A1132 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "27187" ], + "Content-Length": [ "27989" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json index 146c4953de91..d23ff0759873 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "139" ], - "x-ms-client-request-id": [ "44e9f921-6208-4f58-a907-fb7ea10d8410" ], + "x-ms-unique-id": [ "108" ], + "x-ms-client-request-id": [ "a03c1ee9-36f2-4b7c-90a6-7a0c8ff9ce04" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,41 +22,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0ac53525-a843-43da-bab1-e9cb396d6729" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], + "x-ms-original-request-ids": [ "f2d9d320-bff8-4918-91e2-bb10be4ae932", "011d656e-25e8-4260-b856-c114c75bfe3e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "30a1b2b9-66b5-4b58-94cf-f8fe6553f628" ], - "x-ms-correlation-request-id": [ "30a1b2b9-66b5-4b58-94cf-f8fe6553f628" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T181938Z:30a1b2b9-66b5-4b58-94cf-f8fe6553f628" ], + "x-ms-request-id": [ "fd6f885b-393d-483a-b9a1-9b528c07256e" ], + "x-ms-correlation-request-id": [ "fd6f885b-393d-483a-b9a1-9b528c07256e" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001246Z:fd6f885b-393d-483a-b9a1-9b528c07256e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 181A24B06FBF47B4BE6602F087A5DB00 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:37Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A7726E4F2EBF4031AC6CD2F8731C3133 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7011" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "8766" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "140" ], - "x-ms-client-request-id": [ "e2064c9e-4440-4d0c-9837-d7b5ee34f3e7" ], + "x-ms-unique-id": [ "109" ], + "x-ms-client-request-id": [ "b6a54b5f-8c73-4dd2-abd8-8d316d7020fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -68,40 +67,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc81a7bd-f306-45df-93d0-64624678c407" ], + "x-ms-request-id": [ "eb9e4272-51da-4fd6-86ef-e4e5f1d9a586" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "142b2d73-48d3-4821-8f01-57dd337a5534" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181938Z:142b2d73-48d3-4821-8f01-57dd337a5534" ], + "x-ms-correlation-request-id": [ "8ae8ae93-fcdf-459e-af9e-817791d12ad6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001246Z:8ae8ae93-fcdf-459e-af9e-817791d12ad6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80DA411BF70840938A2194053CE74667 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:38Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 100EE18AD9B548309BE7274D174157A7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "141" ], - "x-ms-client-request-id": [ "990b5446-f477-4a4a-bba5-c48c4b8ad1dd" ], + "x-ms-unique-id": [ "110" ], + "x-ms-client-request-id": [ "b6e1b14e-e2fe-4028-9e30-f62ddb828105" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -113,40 +112,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c030743-f599-4fd1-99e8-7a152142a175" ], + "x-ms-request-id": [ "8697056c-ef43-41be-acfd-00764e71c924" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b77f042-0394-4e43-bae8-60760827bce0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181938Z:1b77f042-0394-4e43-bae8-60760827bce0" ], + "x-ms-correlation-request-id": [ "0af2454e-4380-40e9-b69a-84e3b1ad7bf7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001246Z:0af2454e-4380-40e9-b69a-84e3b1ad7bf7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4886C759564A47149C1D7C7319045BEF Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:38Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D70F5E31E88D47C0B829FD7A9348E6ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+4": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "1775f056-d941-4d1b-bed9-57b334a1fff4" ], + "x-ms-unique-id": [ "111" ], + "x-ms-client-request-id": [ "cdc75228-08ff-44dd-8401-92b5d222db47" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -158,40 +157,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0f15428f-02da-411e-bede-cec28a39f175" ], + "x-ms-request-id": [ "0dc61355-371c-4aff-9e52-74e50070357e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa0e7cfd-41a8-44fe-bb60-bd213d2933ad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181939Z:aa0e7cfd-41a8-44fe-bb60-bd213d2933ad" ], + "x-ms-correlation-request-id": [ "d39e42e0-46e8-49e3-a626-21798801fe38" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:d39e42e0-46e8-49e3-a626-21798801fe38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09F98D2EE73E4DB2874EE46F4381EC10 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:38Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D0DE71C81004843A8A16406B87852B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "112" ], + "x-ms-client-request-id": [ "080d4c39-9a75-48f6-9b4e-188e3ae9fb91" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "70887217-1fcc-4d49-b174-9b982c11fb5b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a4d760a7-e214-4f87-9fa7-eaec8d368147" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:a4d760a7-e214-4f87-9fa7-eaec8d368147" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 155517CA68854720998DDAEB387D9320 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+5": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "7fc6e4c6-3383-41dc-936f-c83c7131818a" ], + "x-ms-unique-id": [ "113" ], + "x-ms-client-request-id": [ "1de73d35-a94c-4705-b74f-992b5ae97193" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -203,40 +247,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f3bcdd0-a6a9-4f86-a5ce-a3cc5935248e" ], + "x-ms-request-id": [ "29bc410b-1408-498e-a445-9c2f886b460d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "67062596-f9eb-4e75-914a-f2e750bf7fa8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181939Z:67062596-f9eb-4e75-914a-f2e750bf7fa8" ], + "x-ms-correlation-request-id": [ "2ed52e91-e813-4b59-b0df-00b7dc8aae30" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T001247Z:2ed52e91-e813-4b59-b0df-00b7dc8aae30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66A6CBE88A6F4ADCAC56C75616504633 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4DF97A38A4B44CCA6EB96CB726C7E00 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-arx9yi\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-iklz1o\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "f01275dc-5388-4f76-9986-0d19fa3643b1" ], + "x-ms-unique-id": [ "114" ], + "x-ms-client-request-id": [ "11bc016a-f221-4618-a749-e9766314ca4e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -248,40 +292,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c7a6c3c-6f35-4a05-8c4e-bcd49052956a" ], + "x-ms-request-id": [ "99ffbf08-428c-454e-bfe0-4ad65f44ea8f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "442ebbe3-a8f4-4a72-bbcf-93db2ec256dc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181939Z:442ebbe3-a8f4-4a72-bbcf-93db2ec256dc" ], + "x-ms-correlation-request-id": [ "0bf6f052-8d97-4024-a52c-6c618881edc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:0bf6f052-8d97-4024-a52c-6c618881edc6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D8A6009A75F249A99477BDE1D45A88FD Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C397F599137245B0B0193DE611E4F297 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-io68qa\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-sjhkza\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "15e9c5da-d2ba-4c86-b833-826e09fda50e" ], + "x-ms-unique-id": [ "115" ], + "x-ms-client-request-id": [ "13723794-015a-4053-94f3-78bc5a8f1c4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -293,40 +337,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "92f5bcbd-1bc3-4331-9821-648daa24d2db" ], + "x-ms-request-id": [ "e9fa9537-9f59-442e-8e4d-1b42e33173b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f6721d45-bb6b-4985-af83-f7c8c31073f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181939Z:f6721d45-bb6b-4985-af83-f7c8c31073f8" ], + "x-ms-correlation-request-id": [ "a5145744-2178-4437-b481-eacc4d27e618" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:a5145744-2178-4437-b481-eacc4d27e618" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 818E21766E39429F96527A2213A39CF6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 459876AC38904E4094460C8B4A818632 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "146" ], - "x-ms-client-request-id": [ "3be32995-5c2c-4b13-854f-1fcbf0fad17c" ], + "x-ms-unique-id": [ "116" ], + "x-ms-client-request-id": [ "dfa7cb02-43cc-4628-9221-f053cd6192b0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -337,25 +381,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "5506a49a-fcd2-46d3-9ec5-c5a535215546" ], + "x-ms-original-request-ids": [ "02c498a1-f06e-4550-b2c8-0dafcbd27928" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "01ffd38d-f4d0-44e8-bd61-80c5919fd479" ], - "x-ms-correlation-request-id": [ "01ffd38d-f4d0-44e8-bd61-80c5919fd479" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181939Z:01ffd38d-f4d0-44e8-bd61-80c5919fd479" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "cef0e3f3-5c47-49c3-901b-ffa028a255b1" ], + "x-ms-correlation-request-id": [ "cef0e3f3-5c47-49c3-901b-ffa028a255b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001248Z:cef0e3f3-5c47-49c3-901b-ffa028a255b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2CB6A05FB6134D888467F134A8B68751 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E357E5D76B5454F8AC751D642B5DDF1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1833" ], + "Content-Length": [ "1840" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, @@ -366,12 +410,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "147" ], - "x-ms-client-request-id": [ "1223bd5b-deb7-4263-9ea7-dd714a55dc68" ], + "x-ms-unique-id": [ "117" ], + "x-ms-client-request-id": [ "4bbedb08-a150-4c64-9c62-5b2e2d85e8c9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -382,41 +426,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ddc12e03-df78-453c-a445-7a7c768ecf40" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], + "x-ms-original-request-ids": [ "558fb60a-0501-45fa-8ed7-934da6df5897", "0116b786-e8f7-474a-9b1c-c62d95e4a481" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f3f0f58d-5116-4172-8cff-7926c7958da6" ], - "x-ms-correlation-request-id": [ "f3f0f58d-5116-4172-8cff-7926c7958da6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181940Z:f3f0f58d-5116-4172-8cff-7926c7958da6" ], + "x-ms-request-id": [ "1d5bdd24-9668-4589-90db-cad5b5f8d917" ], + "x-ms-correlation-request-id": [ "1d5bdd24-9668-4589-90db-cad5b5f8d917" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001248Z:1d5bdd24-9668-4589-90db-cad5b5f8d917" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1951D635348044808D95A382E88CA3A0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EE4F6AEC3CCB44FFB766DD2119970CB4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7011" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "8766" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "703302e3-fb6a-49e9-941b-1f15e8ac7b5e" ], + "x-ms-unique-id": [ "118" ], + "x-ms-client-request-id": [ "b5720cb0-aeac-4190-87c6-6b5ed8df5ff8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -428,40 +471,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d11d883-5b75-45c9-a049-17f887e3e695" ], + "x-ms-request-id": [ "e1755b84-a7a5-4b18-ac62-a290bfa5d554" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ab451a66-a845-4a2c-9127-e6920ba97c44" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T181940Z:ab451a66-a845-4a2c-9127-e6920ba97c44" ], + "x-ms-correlation-request-id": [ "54b5a49d-0e64-4330-b06f-f45ac02b0ff7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001248Z:54b5a49d-0e64-4330-b06f-f45ac02b0ff7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98A9F2071DDA40E282054B1B1BF114B6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:40Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6758315419B24D7AB35BCE57876C189B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "149" ], - "x-ms-client-request-id": [ "6de57241-885e-4af0-a7e2-42eb86fbcde9" ], + "x-ms-unique-id": [ "119" ], + "x-ms-client-request-id": [ "5c5a562e-17c3-409c-ad40-f2f4dda2189c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -473,40 +516,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb36bee5-5cff-44ea-9046-ecbf7998bfdf" ], + "x-ms-request-id": [ "1eefcac1-0e67-447f-9c78-a5ee5d0fba77" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1ab0b0bd-83d1-4e55-b811-85a26647e88f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181940Z:1ab0b0bd-83d1-4e55-b811-85a26647e88f" ], + "x-ms-correlation-request-id": [ "95195524-c922-4676-a201-2831ce76e2d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001249Z:95195524-c922-4676-a201-2831ce76e2d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA70498CA7CA438187627E19C7F03637 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:40Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7053F9DE4C634C49B520B28C56C73684 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+4": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "8f06c2cc-3055-4016-ab34-c646de3237e6" ], + "x-ms-unique-id": [ "120" ], + "x-ms-client-request-id": [ "a9c493f4-677d-414e-b956-0aa33ee99cef" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -518,40 +561,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d4ea131-78ab-4f71-83f2-9f40307c033e" ], + "x-ms-request-id": [ "37bdc4c8-eaaa-42b5-8a63-58dd3a50dec5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "2ba07c0d-699b-412d-8b45-8ce53eec6406" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181940Z:2ba07c0d-699b-412d-8b45-8ce53eec6406" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4d55e424-5c12-44c8-83b7-8dc6a100cbce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001249Z:4d55e424-5c12-44c8-83b7-8dc6a100cbce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5373F52CC6824A9FB3C573E422D8216D Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:40Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92CB5B2A1C394067B1EB0F4407F5B94E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+5": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "151" ], - "x-ms-client-request-id": [ "aa55bb5b-9dc7-43f7-994d-59e8fa7d949d" ], + "x-ms-unique-id": [ "121" ], + "x-ms-client-request-id": [ "16049d0f-08d9-4976-b5e0-ad0bf9947242" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -563,24 +606,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20e61cab-18b8-4050-899f-91a52378bd52" ], + "x-ms-request-id": [ "eb404a53-bd48-47d5-a75a-bde2df227271" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e23e521-e4d9-4212-8bff-4541ebcb40b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181940Z:4e23e521-e4d9-4212-8bff-4541ebcb40b9" ], + "x-ms-correlation-request-id": [ "331c44ad-7605-4503-a03d-825134b8b637" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001249Z:331c44ad-7605-4503-a03d-825134b8b637" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A23E480D1664E74955E4CF045E6A7D6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:40Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC366E544BBD4C46BE4D35AE5A822E8A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json index fe10543ed496..6553735b38af 100644 --- a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-ie0b2an8xm\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e065b4c7-0fbd-4a3d-b484-b2090953780e" ], + "x-ms-request-id": [ "352e64cf-c052-4f15-9ae8-a28645fe31f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48efa7f5-2caa-412b-8f93-bc3820972a78" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4a94072c-16c1-4f00-aba1-4e6f7cad5bdc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "450636f2-ece3-437d-aa5f-bb1eb297b373" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181941Z:450636f2-ece3-437d-aa5f-bb1eb297b373" ], + "x-ms-correlation-request-id": [ "9ef890ea-21e9-4561-8657-03c48b04fa25" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001250Z:9ef890ea-21e9-4561-8657-03c48b04fa25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3E9AD34C8BD406AA0A70A928EDDC2A7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C86DA00875F849DAB901CA9DB3A4955B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,56 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "2fa4b9aa-c3ed-4c5d-97fb-b359502cfbab" ], + "x-ms-unique-id": [ "123" ], + "x-ms-client-request-id": [ "61acd9f1-537a-42e9-86fd-eb3b88028587" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "2635f171-dd17-455f-82c6-654c29933e84", "c69f4d41-263f-4ae5-b211-e68ae1457613" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "0c392f1e-3993-45ca-9385-e57dd746c275" ], + "x-ms-correlation-request-id": [ "0c392f1e-3993-45ca-9385-e57dd746c275" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001251Z:0c392f1e-3993-45ca-9385-e57dd746c275" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0EDE200AD2384EE7A2CAA2F5CF924BF3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8766" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "124" ], + "x-ms-client-request-id": [ "7429ee9b-a617-4eaa-804c-6e4f517f510f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,41 +107,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e8d4ee7d-63d5-461e-b310-087784cc8da9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4c5bc5cc-98c5-4237-a8d7-8e3a9a423910" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "a7d45420-6476-43c7-9c97-ce6efc54b42e" ], - "x-ms-correlation-request-id": [ "a7d45420-6476-43c7-9c97-ce6efc54b42e" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T181942Z:a7d45420-6476-43c7-9c97-ce6efc54b42e" ], + "x-ms-correlation-request-id": [ "5200740e-488a-4cc4-95c2-89800413f77e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:5200740e-488a-4cc4-95c2-89800413f77e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 690B2DE5CF6B4D9F9C0F3C8E27B2018F Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C94E6218284D453DB9BFFD031DCEF46C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "7011" ], - "Content-Type": [ "application/json; charset=utf-8" ] + "Content-Length": [ "1819" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "b033477e-55d7-4389-a215-e742bb5414ae" ], + "x-ms-unique-id": [ "125" ], + "x-ms-client-request-id": [ "f4afea82-3aa8-4b38-8ac9-bffb298274ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -109,40 +153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec986b0c-17a1-4f0c-bb74-1f6c795ba369" ], + "x-ms-request-id": [ "2753b3aa-9657-4327-bfbb-10dea46c5603" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d11081e5-e0e8-4c30-98f5-3ef0482e0bb8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T181942Z:d11081e5-e0e8-4c30-98f5-3ef0482e0bb8" ], + "x-ms-correlation-request-id": [ "c7c617e4-1030-48e3-8039-dda998d21e55" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:c7c617e4-1030-48e3-8039-dda998d21e55" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 644CD2E8E31643E7B6777209EB614802 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 08013C2EDE7C43EAAF9A0B8A309D1917 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "155" ], - "x-ms-client-request-id": [ "fe51208b-dd3e-4f73-be5b-9186591c7369" ], + "x-ms-unique-id": [ "126" ], + "x-ms-client-request-id": [ "27ab7fdc-f9b5-418c-a19a-882e3e210f5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -154,40 +198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c24becde-a6ee-461e-9690-4ab12a8fe965" ], + "x-ms-request-id": [ "e933c678-7eac-41d4-8a86-c5eb72366ca2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "53d02c03-1188-442c-bc44-2e1dc3ce8409" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181942Z:53d02c03-1188-442c-bc44-2e1dc3ce8409" ], + "x-ms-correlation-request-id": [ "e75b00b3-d9fb-4863-9c28-85b1084b4e2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:e75b00b3-d9fb-4863-9c28-85b1084b4e2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3754905AD831405BBF14CDD6C8085F49 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B68EEB33AAD4E47918FB07349EDAEF8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+5": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "156" ], - "x-ms-client-request-id": [ "92032bb3-4c71-4ded-8165-5be42cbe4c86" ], + "x-ms-unique-id": [ "127" ], + "x-ms-client-request-id": [ "bbcf4c6c-7fe6-4148-8459-94d206cd1ee4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -199,40 +243,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9b5124b-5ae0-4f46-b7ac-fa5cd11f40a8" ], + "x-ms-request-id": [ "2aff4e35-6005-45d6-99b5-988b89486089" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "077ebc16-6705-43ee-934c-c79435f8a40b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181942Z:077ebc16-6705-43ee-934c-c79435f8a40b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d09684c3-f2d6-44a2-a53e-882c0a5d4a3c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:d09684c3-f2d6-44a2-a53e-882c0a5d4a3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 759D0D21E0A2435AAC12DE26863EBD27 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F9375B8BF26456A8021E0EB5F6E8FC4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+6": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "6ee45c2a-1637-424e-a848-5735ce2b3480" ], + "x-ms-unique-id": [ "128" ], + "x-ms-client-request-id": [ "0dca576d-80a8-4571-bf3a-7bd30f185dd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -244,40 +288,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e228714f-f80a-4fdf-a45a-941f32725bd4" ], + "x-ms-request-id": [ "050ba7ee-c9c4-4cc6-a079-741983b0a1e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b8f51979-1f86-4db6-b81f-26abb1526715" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181943Z:b8f51979-1f86-4db6-b81f-26abb1526715" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4c6a1060-e6e4-41e2-93af-dc2b0b7898a1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T001252Z:4c6a1060-e6e4-41e2-93af-dc2b0b7898a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F71634504154A29A2A18F080B1A55BA Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2E8854AAA1E4B26B5CE3B1E4207F16C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+7": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "158" ], - "x-ms-client-request-id": [ "cf93a96c-6378-474c-91ce-21b962ac26e5" ], + "x-ms-unique-id": [ "129" ], + "x-ms-client-request-id": [ "13ffcf9e-501a-4b8b-97da-fd11c6e2be35" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -288,40 +332,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "66ddc18c-897a-4085-b4ff-e89c99dce633", "0c74067b-d345-4250-bc98-a9089a272bb5", "e142d87c-b3ef-480a-b3de-b612edc1b394" ], + "x-ms-original-request-ids": [ "273881a8-80ad-4dd7-ada7-80aaf8df2697", "1f49c230-702a-4e0f-81d5-e09fd163ad6e", "47625f03-8541-41bd-b8a7-522aaf2910fa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4a0bada4-3e7e-4291-b2e7-1ab35a5d3337" ], - "x-ms-correlation-request-id": [ "4a0bada4-3e7e-4291-b2e7-1ab35a5d3337" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181944Z:4a0bada4-3e7e-4291-b2e7-1ab35a5d3337" ], + "x-ms-request-id": [ "5e0fad06-fe49-4159-97c3-de7c86c86a2c" ], + "x-ms-correlation-request-id": [ "5e0fad06-fe49-4159-97c3-de7c86c86a2c" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001252Z:5e0fad06-fe49-4159-97c3-de7c86c86a2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FDEA34B68CFC445599F4ACD2D19C7004 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8B0D240D59E4686AEDA732AEFE18685 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+8": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "159" ], - "x-ms-client-request-id": [ "8967de10-b77f-4394-9012-c35923c9e2b1" ], + "x-ms-unique-id": [ "130" ], + "x-ms-client-request-id": [ "6fa6e994-c10c-45c8-a8c3-523381f4828f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -332,16 +376,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "ec6c6c59-d5ac-49aa-96f3-eeced0c38c71" ], + "x-ms-request-id": [ "c0a15e07-90bb-46a2-b173-98276c3f7499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/67d6c780-a803-46ee-9673-c62023efc96a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/567993ab-2708-400f-bec4-ca1ba8436a41" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1e51d93a-1e68-44fe-9521-fbcb4c73242c" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T181944Z:1e51d93a-1e68-44fe-9521-fbcb4c73242c" ], + "x-ms-correlation-request-id": [ "76028eaf-345e-473a-b8be-ce6a78ef4cbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001252Z:76028eaf-345e-473a-b8be-ce6a78ef4cbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D103A72CD194F33ABA70106B788E888 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41D6A3884AB34E2AB27FA4DAEDDAA21E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -352,10 +396,10 @@ "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2015-05-01+9": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -375,30 +419,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4c97b195-7e57-4bfa-8f08-efb146412ade" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "b8c8f33c-707d-458b-94d5-ac698713dcc5" ], - "x-ms-correlation-request-id": [ "b8c8f33c-707d-458b-94d5-ac698713dcc5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T181949Z:b8c8f33c-707d-458b-94d5-ac698713dcc5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/060e2b58-08e6-4001-9dbd-4cd136498b08" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "751af79c-6b62-4583-ba51-06251c87ef37" ], + "x-ms-correlation-request-id": [ "751af79c-6b62-4583-ba51-06251c87ef37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001259Z:751af79c-6b62-4583-ba51-06251c87ef37" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6BD702C510D54E278817626E50E2A77B Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:19:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FF3CC0A343B48DA86CC94C676011723 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:12:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1684" ], + "Content-Length": [ "1683" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a000cc97-0000-0300-0000-691b67450000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest1-ie0b2an8xm\",\r\n \"name\": \"Func-PowerShell-NewTest1-ie0b2an8xm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-ie0b2an8xm\",\r\n \"AppId\": \"433befed-9e27-4b30-85fc-b98b893f03fd\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"44065200-b2f3-416b-b293-8ffb16c6d983\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest1-ie0b2an8xm\",\r\n \"CreationDate\": \"2025-11-17T18:19:44.9889018+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-ie0b2an8xm_433befed-9e27-4b30-85fc-b98b893f03fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-ie0b2an8xm-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202fa2e-0000-0300-0000-69c47a0b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"name\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"AppId\": \"e67bde51-45a5-4f45-b6dd-03a96bcd939e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8a93d396-fa83-4fef-8f0f-1fd48e9e4899\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"CreationDate\": \"2026-03-26T00:12:53.280685+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-d3t8hyrciu_e67bde51-45a5-4f45-b6dd-03a96bcd939e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-d3t8hyrciu-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01+10": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-ie0b2an8xm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-d3t8hyrciu\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -412,43 +456,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEC430BBB5\"" ], + "ETag": [ "\"1DCBCB54F4CADC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdc55a8a-c855-43fa-9f00-8bc2122b782d" ], + "x-ms-request-id": [ "1daeb7cc-ce1c-4e94-a109-738c13129221" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/459e6927-81e2-4230-87d1-f133af96bf9a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b0c68114-22c0-473a-aea1-61470b59271b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "fae5d125-2cc7-4d12-8e87-a544fd4e6d59" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182033Z:fae5d125-2cc7-4d12-8e87-a544fd4e6d59" ], + "x-ms-correlation-request-id": [ "b8b58568-4b52-494b-8765-b513292bb52d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001341Z:b8b58568-4b52-494b-8765-b513292bb52d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA72C8D7AE2043E3947AA6B01A466AE5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:19:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B42171E4A4B447E80131D279DED784C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:59Z" ], + "Date": [ "Thu, 26 Mar 2026 00:13:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8514" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:19:51.3266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-ie0b2an8xm\\\\$Func-PowerShell-NewTest1-ie0b2an8xm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:13:00.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01+11": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "5a6a4109-588a-4f01-a661-e20d6480869d" ], + "x-ms-unique-id": [ "133" ], + "x-ms-client-request-id": [ "02529da0-3c9f-47ce-ad2d-131cb2f61d55" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -458,42 +502,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEDD099D20\"" ], + "ETag": [ "1DCBCB566888E00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "113db20e-3d45-420e-9d75-d83c18754e6d" ], + "x-ms-request-id": [ "435174e6-a760-438a-8db7-ca2cd46734e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "71a7acd6-ae88-4426-b52c-a860e189f9c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182104Z:71a7acd6-ae88-4426-b52c-a860e189f9c6" ], + "x-ms-correlation-request-id": [ "46f645bc-a1ea-4a09-86e3-df20eca2009d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001411Z:46f645bc-a1ea-4a09-86e3-df20eca2009d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1A31B0BAF9244BFAE998F4841564EAB Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C686B5D7F4F480182A944DA181C1BB9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:20:33.65\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-ie0b2an8xm\\\\$Func-PowerShell-NewTest1-ie0b2an8xm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:13:40.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01+12": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "163" ], - "x-ms-client-request-id": [ "9a90d9f0-5856-4239-abe1-0f202d0d5219" ], + "x-ms-unique-id": [ "134" ], + "x-ms-client-request-id": [ "5b07781a-e558-4e46-b2f7-3d3607274443" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -504,42 +548,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEDD099D20\"" ], + "ETag": [ "1DCBCB566888E00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b299b13-8416-4e06-aa95-5ca157e1232c" ], + "x-ms-request-id": [ "883b1206-d5de-4a5f-ae7d-daa0cb5bdaf5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a1569aaf-e522-4d87-a3e2-29ad4fade19b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182104Z:a1569aaf-e522-4d87-a3e2-29ad4fade19b" ], + "x-ms-correlation-request-id": [ "aa98eca6-e19f-4a98-8ba1-973360cee765" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:aa98eca6-e19f-4a98-8ba1-973360cee765" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D87C4920BD2488FAA17C1DAD4A17C12 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A2E2D14A3F0E42EBA1EDE5667407F96B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:20:33.65\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-ie0b2an8xm\\\\$Func-PowerShell-NewTest1-ie0b2an8xm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:13:40.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+13": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "164" ], - "x-ms-client-request-id": [ "a1298266-4325-416d-998d-bcafbf64f5de" ], + "x-ms-unique-id": [ "135" ], + "x-ms-client-request-id": [ "8eebf3b9-f4e6-43b6-b39a-8ff800575618" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -551,40 +595,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05ef6874-dbcf-4a22-b553-15bb6a2c5d05" ], + "x-ms-request-id": [ "01101c0b-a2e2-46fc-8b8f-791dcadcd1d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/231bc9da-e619-4990-98e6-0fc79fc460b4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc62f061-8589-4e80-93d0-909c7a0a83bc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "656cfe19-62b6-4974-9572-c6843e27c2d9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182104Z:656cfe19-62b6-4974-9572-c6843e27c2d9" ], + "x-ms-correlation-request-id": [ "352ad491-c590-4b4b-9c0b-18016c355e87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:352ad491-c590-4b4b-9c0b-18016c355e87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83A27D458B884C71A203CA034D32CE0D Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5431D620FC23446FBD2A7504AF6C5A07 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01+14": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "165" ], - "x-ms-client-request-id": [ "5c6e4b20-4d78-4276-8b40-b218c8144b8a" ], + "x-ms-unique-id": [ "136" ], + "x-ms-client-request-id": [ "96e821cf-fd85-40c3-b529-5230acfd74ef" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -596,41 +640,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23fb47e4-0f02-4a55-ba7a-40d160d158d0" ], + "x-ms-request-id": [ "ad90d6c1-0d5f-409b-ad82-ed75fc99b5e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b3122b8-bb9e-41ec-985b-412c5f0383b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b295ebd6-ac0c-4d55-bf72-48c072b84246" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a90dcaf-6248-42b7-bd2c-9a16e3b032c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182104Z:8a90dcaf-6248-42b7-bd2c-9a16e3b032c0" ], + "x-ms-correlation-request-id": [ "260b3dfb-9dce-47eb-b16e-7bb7bbfe0b51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:260b3dfb-9dce-47eb-b16e-7bb7bbfe0b51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D9822BA462848EC81DD17FFC14A70C2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF051EB8CAC845F99B453E3E0DD6D7BF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+15": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "79a2f3a9-f3ac-4b42-b106-0adcb997abd9" ], + "x-ms-unique-id": [ "137" ], + "x-ms-client-request-id": [ "6be7f994-bc39-4bba-9eea-c4c2b48cee1a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -642,40 +686,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "73a864e7-acac-40cc-bd6d-3ae9946284b7" ], + "x-ms-request-id": [ "2559bc46-d362-4bbb-be24-8db8447e905e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad1167f0-e81f-4dad-9679-ea2a44cd4f3c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83e60800-2cee-4d9d-a371-f55473d386a2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "539cbab6-0c4c-45a1-9022-b7a12bf6b3a4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182105Z:539cbab6-0c4c-45a1-9022-b7a12bf6b3a4" ], + "x-ms-correlation-request-id": [ "d3ed882a-7594-4f8a-8cac-444190507087" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:d3ed882a-7594-4f8a-8cac-444190507087" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D4449C7AAF7400EBAADD0DBAE60848D Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EEFF75B799774AF083156BF3B63C8455 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+16": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "f513d5c6-3db5-4587-a2b7-30b065495b2f" ], + "x-ms-unique-id": [ "138" ], + "x-ms-client-request-id": [ "bc4b1ffa-e088-4cae-b025-f290e59c096e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -687,40 +731,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07709e1c-f790-4abe-bb86-3fd07884d438" ], + "x-ms-request-id": [ "e7c7151c-96b9-4a9c-951e-75bce175b6ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/652f267f-a47f-46e3-b5ac-c5246b4e1092" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1efc6b90-e3e6-4479-98e5-7c9733fb9ebc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bc9a50b7-a61e-4b6e-8389-7b3b3effd9e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182105Z:bc9a50b7-a61e-4b6e-8389-7b3b3effd9e1" ], + "x-ms-correlation-request-id": [ "ee86569c-c1ab-40c4-b942-cb611ded3e7b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001413Z:ee86569c-c1ab-40c4-b942-cb611ded3e7b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4DFE149A070E463A9828CBC792EDF83B Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D60CC41798544726B9A3EF7FB1A841DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+17": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "168" ], - "x-ms-client-request-id": [ "70a301d2-b33c-407f-a84f-b9aa0771740e" ], + "x-ms-unique-id": [ "139" ], + "x-ms-client-request-id": [ "6b9a8e8d-3e75-4ef1-9c1d-73e341783b2e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -732,32 +776,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35704007-dd13-4d19-8993-654400e82db2" ], + "x-ms-request-id": [ "872ef697-ed9b-41fc-a685-4b12ceea004f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb5483db-5402-498b-86f4-40feebabfb6b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a0a08bd-35ad-4cfa-abb4-e9bd78f590b5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ebd57613-4d48-486b-904f-5814f3209042" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182105Z:ebd57613-4d48-486b-904f-5814f3209042" ], + "x-ms-correlation-request-id": [ "975a4245-7b1c-4cbc-904d-db224af439e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001413Z:975a4245-7b1c-4cbc-904d-db224af439e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D757695EC4BE4EC386C7AD9CE7710628 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74D077854263433299B859B16D9DB001 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01+18": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-ie0b2an8xm\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -771,43 +815,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEDD099D20\"" ], + "ETag": [ "\"1DCBCB566888E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5097b504-f1c7-400b-8380-3b817f4e5b5e" ], + "x-ms-request-id": [ "3f14fec3-0e5a-4d08-82c2-58afa02e73fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8230bbc3-6f71-4012-b1ec-8e5c89457daa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b4dd0e1a-202c-40b7-97c5-dfe649bf356c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f081bfc8-1443-44b2-a3fa-c88a329109f3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182106Z:f081bfc8-1443-44b2-a3fa-c88a329109f3" ], + "x-ms-correlation-request-id": [ "6d1aa0f1-be67-4b16-8546-8a8eaab4662a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001414Z:6d1aa0f1-be67-4b16-8546-8a8eaab4662a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A3CBFE8FC4BA47788172BC7D90E14DD7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7194670E0F88408983FCCE85A13ECB85 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+19": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "cc5dc9d4-6c02-4603-aa88-671c7b447be7" ], + "x-ms-unique-id": [ "141" ], + "x-ms-client-request-id": [ "656b0c37-329a-46ff-be77-344042ca4c88" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -819,40 +863,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "693c5c56-99ae-4fb7-8afd-dce272b76099" ], + "x-ms-request-id": [ "d3e08fe2-478f-4355-a140-028be71a12de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dba36400-87ed-409d-9832-b0a12e7bf041" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fed9e256-8719-4117-aac7-eb5f4c319381" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "722ecd51-9367-4050-beab-c2e7da5eb156" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182106Z:722ecd51-9367-4050-beab-c2e7da5eb156" ], + "x-ms-correlation-request-id": [ "5d85360a-286d-4dd2-b79d-db73376b2693" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:5d85360a-286d-4dd2-b79d-db73376b2693" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 495129D1B9104432B4C84D562CBD5AE3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F52A1F375BA14913B51E253AE538D0E5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01+20": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "171" ], - "x-ms-client-request-id": [ "c51ae9ae-e4a5-48c6-9d27-76cbca06c094" ], + "x-ms-unique-id": [ "142" ], + "x-ms-client-request-id": [ "95e9aef9-65aa-40b7-83d2-25b4c88c5a09" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -863,42 +907,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF08E5BCB\"" ], + "ETag": [ "1DCBCB57A98A9C0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff87ae6f-2fdc-4602-a9a8-855d853cf903" ], + "x-ms-request-id": [ "56a441e2-a922-440b-ba26-059b86e70fcc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4b3c1dde-3771-4107-b0cd-4afa3966b8c9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182107Z:4b3c1dde-3771-4107-b0cd-4afa3966b8c9" ], + "x-ms-correlation-request-id": [ "9bda9ad4-9aac-43a8-af9a-94a3d36a287e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:9bda9ad4-9aac-43a8-af9a-94a3d36a287e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF7CBD10327047939006E68FDD999F29 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 60044889A2B14B808547A86321754147 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:21:06.3966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-ie0b2an8xm\\\\$Func-PowerShell-NewTest1-ie0b2an8xm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:14.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+21": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "e7bf0ba7-3d06-407f-822a-fef35a9005bb" ], + "x-ms-unique-id": [ "143" ], + "x-ms-client-request-id": [ "2b0d1c4c-043e-40aa-9a2e-4c01ad26efed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -910,40 +954,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "97a9db20-258f-4a9c-a196-5345389c5dd7" ], + "x-ms-request-id": [ "33ec6d1b-5678-4d2d-9081-86ee3773e7cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dae40c57-ddb8-439b-ab44-1f9806f971d5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5aa2ef5-3baf-42ac-bac7-626e064a98f3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "deda8cd9-9911-49de-9a1f-645d1994de06" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182107Z:deda8cd9-9911-49de-9a1f-645d1994de06" ], + "x-ms-correlation-request-id": [ "fd87ab0b-0c49-477e-858e-0d387f6b0b71" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:fd87ab0b-0c49-477e-858e-0d387f6b0b71" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EAF5314D535E48059B2C545FE75810B5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FEC7739D33FA4295902BE56A8B67B577 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01+22": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "173" ], - "x-ms-client-request-id": [ "ea8d711b-a6f0-45c7-bacc-5cb45ddd8f15" ], + "x-ms-unique-id": [ "144" ], + "x-ms-client-request-id": [ "57039c5e-838a-48ed-9114-ec4fa61d9684" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -955,41 +999,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb3bdb5d-57cd-4fe1-9b58-83b0d47bb9cf" ], + "x-ms-request-id": [ "ad93b803-6242-4b66-b709-0e4327f3cfef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5ea31570-f88c-4fa5-b5a3-1ccd06d583b2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2237e9de-3235-4f01-86a3-03223083a1a7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fb41f9d5-49d3-49e0-8134-7aac0bdf5361" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182107Z:fb41f9d5-49d3-49e0-8134-7aac0bdf5361" ], + "x-ms-correlation-request-id": [ "64e8ade5-0bd6-4d99-96cb-83ee90de877f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:64e8ade5-0bd6-4d99-96cb-83ee90de877f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 117A744C8C4A4C6E9FF986A9C1EB3B74 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA4D6739174244049576B4F0CA67B738 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+23": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "174" ], - "x-ms-client-request-id": [ "a3cbcb77-d5a4-4877-bbc2-6d2ef5aff868" ], + "x-ms-unique-id": [ "145" ], + "x-ms-client-request-id": [ "aa047991-8047-4b3d-80c8-4331e38d543a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1001,32 +1045,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f445a5cd-fcf9-4fd2-a582-2fa726470eca" ], + "x-ms-request-id": [ "3489d120-9d45-4489-8d5b-89133369faaa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f86c2603-040a-49d1-b9a1-1ef1934f4591" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "d02d9567-d803-4aad-be8d-7c9cc1f11661" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182107Z:d02d9567-d803-4aad-be8d-7c9cc1f11661" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff6dcaf0-9915-456b-b6ed-5f8e92efcd6f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7bc1366f-1236-4c81-bf9d-8674c6b4e7a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001416Z:7bc1366f-1236-4c81-bf9d-8674c6b4e7a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F93157476B8B4377B042FA84EBE24B17 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2E4D1A126B848888ABADA1FBAE1AF0E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:16Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01+24": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+25": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting1\": \"456789\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-ie0b2an8xm\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1040,43 +1084,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF08E5BCB\"" ], + "ETag": [ "\"1DCBCB57A98A9C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9509c003-2103-4144-9c50-c26db559d03b" ], + "x-ms-request-id": [ "556a0160-3bbb-4bf6-9ae7-9949e63a281f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1f396073-a224-4424-b182-8a74782729c2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48fa4713-9f1a-43d7-ac3e-3aac245ec80e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "082b2655-ac9a-4a6b-8e56-f3cf8253fad4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182108Z:082b2655-ac9a-4a6b-8e56-f3cf8253fad4" ], + "x-ms-correlation-request-id": [ "146d5d00-f2a1-4c9e-b1a8-b9e02c00a7f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001417Z:146d5d00-f2a1-4c9e-b1a8-b9e02c00a7f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59185B7496104697A02847A3314A7401 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5812DEA3B5A413AAF7197CEA0884164 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:16Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+25": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+26": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "176" ], - "x-ms-client-request-id": [ "9dd6e204-f614-4a55-85e0-598b35b1fc22" ], + "x-ms-unique-id": [ "147" ], + "x-ms-client-request-id": [ "3cecb018-fa95-4a6e-a795-deaf613719f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1088,40 +1132,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "893e5720-6a38-4222-acc4-577a231d47cf" ], + "x-ms-request-id": [ "c113ede2-93e7-4675-9626-86af678ceeff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47817f79-e6be-46bd-9c44-db15d41f4682" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/85989234-7ec1-440f-9238-8ec95ed04553" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8fe31bd7-20b2-4e76-adff-ba482d1f4e95" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182109Z:8fe31bd7-20b2-4e76-adff-ba482d1f4e95" ], + "x-ms-correlation-request-id": [ "4b4810fc-86ba-48a6-8703-7b102cf0e5ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001417Z:4b4810fc-86ba-48a6-8703-7b102cf0e5ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B078EF6D9DBE455496959771376DC784 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14B88DA53C3B43DAB9256BE4A2C245F9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+26": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+27": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "177" ], - "x-ms-client-request-id": [ "0ce00ec7-cb55-4ad8-b936-cf4fb456e0cb" ], + "x-ms-unique-id": [ "148" ], + "x-ms-client-request-id": [ "76591acb-cbb4-4396-b52b-68b8d8bbfbe2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1133,32 +1177,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "034734e8-0591-4b77-ba76-ce93875b598f" ], + "x-ms-request-id": [ "24c582c3-479c-4000-82e8-64d093254574" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75e5cb07-075b-478c-ac9e-081ddfdb0bc6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/138faedb-a56c-4336-91d7-00e1c16734ae" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3f8705e4-20bb-4b26-968b-56f566b0e038" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182109Z:3f8705e4-20bb-4b26-968b-56f566b0e038" ], + "x-ms-correlation-request-id": [ "6aec0825-ac53-4017-8947-d12e3d05a21c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001417Z:6aec0825-ac53-4017-8947-d12e3d05a21c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9ADEEDE55F54688AA4D391264E3F416 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3255BD1837A474DB8E83EBFB7B84142 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting1\":\"456789\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01+27": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+28": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-ie0b2an8xm\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1172,43 +1216,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF1D87500\"" ], + "ETag": [ "\"1DCBCB57C01C9AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a8c99b6-5915-4eeb-b613-7fb06feb9dcb" ], + "x-ms-request-id": [ "798f7ee2-1c80-4f7c-ada3-650c8da6d061" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e18f7852-31ce-43b5-8b9c-422e5e21c2fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/114273df-05cb-482f-8d4f-33bc50e6ca49" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "cf719978-a65e-43a6-a98e-f1fce5ec3da7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182111Z:cf719978-a65e-43a6-a98e-f1fce5ec3da7" ], + "x-ms-correlation-request-id": [ "089a0a3b-2b70-4e41-a5b7-2b14ffb22ac4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001418Z:089a0a3b-2b70-4e41-a5b7-2b14ffb22ac4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE5988BB50F2494F8B10CF6B2AA106B9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2BF803A381D46A5B1D69F3D038F06D5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+28": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+29": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "179" ], - "x-ms-client-request-id": [ "646993cf-59fb-4658-b477-e5f3cd483842" ], + "x-ms-unique-id": [ "150" ], + "x-ms-client-request-id": [ "aa0c5fc9-14d0-4676-945f-3c7448bc3bd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1220,40 +1264,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23cc31fe-5fe1-4afc-aea0-0940134eb82d" ], + "x-ms-request-id": [ "b6574e36-2eb3-4350-9cd3-f91181131c32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c29852d-d980-450a-a116-f7e0851435c1" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "208ca3b7-bc21-41bb-ba3d-927da2e3953a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182111Z:208ca3b7-bc21-41bb-ba3d-927da2e3953a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/efa0e8dc-4cc0-49ef-8b7b-35ca15190b31" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "48d43eba-2116-44d3-ae2e-7d3cb4be554c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:48d43eba-2116-44d3-ae2e-7d3cb4be554c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20EE47117C0342CA90220D1B378035BE Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC3D0A352B5C4A679AD5F679B1637DD6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01+29": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "180" ], - "x-ms-client-request-id": [ "1e6ae015-eb30-46b1-a365-55f2ce6c7fa9" ], + "x-ms-unique-id": [ "151" ], + "x-ms-client-request-id": [ "6a53d72a-b7a6-4230-8fea-485b28180fad" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1264,42 +1308,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF338EF60\"" ], + "ETag": [ "1DCBCB57CE39E2B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efff1ee6-4317-4c71-a538-8f2658dc4d4b" ], + "x-ms-request-id": [ "55dc3b7b-6d7f-4621-8386-94ff4f947cd3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eee9605f-af57-44c5-91e8-189b183eab8f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182111Z:eee9605f-af57-44c5-91e8-189b183eab8f" ], + "x-ms-correlation-request-id": [ "5b5dd920-f3e9-48ed-9eab-0e2d067b118f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:5b5dd920-f3e9-48ed-9eab-0e2d067b118f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75BCDD484078499BA1C6E837C1EE924E Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E34A6C63A01E459D87579A056F1FFE12 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:21:10.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-ie0b2an8xm\\\\$Func-PowerShell-NewTest1-ie0b2an8xm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:18.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+30": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+31": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "181" ], - "x-ms-client-request-id": [ "aaf1c865-1074-4f4b-a651-21340d63d381" ], + "x-ms-unique-id": [ "152" ], + "x-ms-client-request-id": [ "1b70ec66-d41a-44a1-9ef7-86cf1435e78e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1311,40 +1355,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e72af647-454d-4522-8a11-7f9733e887d3" ], + "x-ms-request-id": [ "f6d9f1ef-b8fb-46da-bc4c-afa4a73d87d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9da4108-31c3-4a49-99bd-df89fbadd790" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "889f446f-5b10-47d5-bc90-25a4460ca949" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182112Z:889f446f-5b10-47d5-bc90-25a4460ca949" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f97f042-1ff2-4cce-a9b7-efdc5ea7b1a6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "45791bd3-da61-4647-8830-45697f94fbc7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:45791bd3-da61-4647-8830-45697f94fbc7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA07FCCC9CB949C2A4B17AEADE2428E5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFCA6F3112E7497580BBDB6AE1675BEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01+31": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "182" ], - "x-ms-client-request-id": [ "e78cc057-86c0-4f75-a59c-ca0927e866c5" ], + "x-ms-unique-id": [ "153" ], + "x-ms-client-request-id": [ "4fe1448a-9501-455b-8fb0-fe7183474717" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1356,41 +1400,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2934bc1-16f4-4167-a68a-6d19bb24ae29" ], + "x-ms-request-id": [ "1c82e582-1ecd-4f08-9fd3-82f5e8624814" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ece8f92-d7d2-45ed-836e-5d905ca1a441" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/322c58a7-35f7-4d4c-ba10-5867b5934349" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a6227d14-74f9-4225-b54c-973478707190" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182112Z:a6227d14-74f9-4225-b54c-973478707190" ], + "x-ms-correlation-request-id": [ "8a113bde-a2d7-4982-9bee-96ab4c930a0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:8a113bde-a2d7-4982-9bee-96ab4c930a0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 43DA4223CB2E42788FC93D5458EE62BE Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF01DE5641674DDFB67C5F09CF51A586 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+32": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+33": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "183" ], - "x-ms-client-request-id": [ "fbfdd0cc-8a32-4188-80c0-16f8728e91a6" ], + "x-ms-unique-id": [ "154" ], + "x-ms-client-request-id": [ "44b047ec-637c-4585-911f-538614610eb4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1402,32 +1446,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3964735-1a66-4b61-8900-f1609acd68e2" ], + "x-ms-request-id": [ "25369898-78a0-45fc-a864-f01a55c87baf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cedfe042-29d0-4fe7-8b87-1a1115f9cc9c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "7b1fcb75-4798-48ed-afa0-9c91dffd841c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182112Z:7b1fcb75-4798-48ed-afa0-9c91dffd841c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/85176412-34e4-4ba5-b491-4053c5d6c63b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c45388e0-e18b-496e-81bd-2df62eb4b72b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:c45388e0-e18b-496e-81bd-2df62eb4b72b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D0477FB621ED4993BAA2CD3C3E045AD7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A1346C78E564AD8AC4F862EE497D6AF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01+33": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+34": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-ie0b2an8xm\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1441,43 +1485,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF338EF60\"" ], + "ETag": [ "\"1DCBCB57CE39E2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9e5d912-58bc-40c4-aabf-8a1278ced4ec" ], + "x-ms-request-id": [ "567bb46d-ac04-450f-a03c-04529f7f025a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92da2e78-2529-4f0f-9adb-24f496938228" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8002b98-3647-4969-814c-e95c04b7d077" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e57f33e9-0981-462d-99e2-d5a518ec5f24" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182113Z:e57f33e9-0981-462d-99e2-d5a518ec5f24" ], + "x-ms-correlation-request-id": [ "98add52b-ad01-4a77-8b3f-3c8a1a38e9cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:98add52b-ad01-4a77-8b3f-3c8a1a38e9cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA7AB195DA054D1D8B4618AC4B108FA8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC22E8B1462F41129651BB9D92196CAA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+34": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+35": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "185" ], - "x-ms-client-request-id": [ "77cc55da-24d3-4e69-8803-fc4592772bc2" ], + "x-ms-unique-id": [ "156" ], + "x-ms-client-request-id": [ "2d6a07a2-a08f-44ef-8c08-8d68d5dd36cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1489,40 +1533,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77fd153e-83d1-4ee4-8521-8d553c1e49b1" ], + "x-ms-request-id": [ "e374350a-c3c3-4b9e-b328-b0384ae35854" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef4a231e-044e-4b49-9f13-1c6f20dc42fb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ccaa4ade-4c31-4214-bf13-d76cc4d3af52" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "04d45542-8102-4157-8dc7-7b735850e290" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182113Z:04d45542-8102-4157-8dc7-7b735850e290" ], + "x-ms-correlation-request-id": [ "dac124d3-3459-4da4-8cab-0de2c66dc02e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:dac124d3-3459-4da4-8cab-0de2c66dc02e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46E52E5C6A4E4D2588BFC6B13306BF50 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBFBB6EAF009435D89D60E06B1EE1361 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01+35": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "186" ], - "x-ms-client-request-id": [ "0e64e8c8-420b-4fd0-ba10-2f282fa7893b" ], + "x-ms-unique-id": [ "157" ], + "x-ms-client-request-id": [ "ba9b00b3-a91f-499e-bc9a-3405bd5599de" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1533,42 +1577,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF4A088AB\"" ], + "ETag": [ "1DCBCB57E35DAB5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c85aa76f-6484-41f0-b9f4-5a2c53d2daa2" ], + "x-ms-request-id": [ "d2c09b36-8f76-4449-aec8-1a8149761c08" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "946a7778-dc6b-4f95-9989-320171df777a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182114Z:946a7778-dc6b-4f95-9989-320171df777a" ], + "x-ms-correlation-request-id": [ "f0eaff5e-d72c-4cf6-9e8f-48baa9a5b885" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:f0eaff5e-d72c-4cf6-9e8f-48baa9a5b885" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 759501CE970840A782C7DCA1E65E354A Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 866E2855C61A452B8B3F681774DF0783 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:21:13.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-ie0b2an8xm\\\\$Func-PowerShell-NewTest1-ie0b2an8xm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:20.6833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+36": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+37": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "187" ], - "x-ms-client-request-id": [ "6f7dfc3e-599f-49f4-92a2-80b636486027" ], + "x-ms-unique-id": [ "158" ], + "x-ms-client-request-id": [ "b280bd96-2477-41f6-a5fc-cd9a2ed020cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1580,40 +1624,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39b7bece-bc9c-4dfb-a823-45cec03a835c" ], + "x-ms-request-id": [ "20e79ce4-355f-4418-b213-bb5a0fbe2088" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbcb0ddd-b95b-4336-b5bf-346206552828" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d937152-8565-4d52-979e-5b36cb3e3682" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "678d056e-13ec-4c1d-af8e-d1a29088b419" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182114Z:678d056e-13ec-4c1d-af8e-d1a29088b419" ], + "x-ms-correlation-request-id": [ "8d9f4c88-f6ad-41fe-ab10-d92be32796b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:8d9f4c88-f6ad-41fe-ab10-d92be32796b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9DD7972E3D540EAB5FFEC2815959AD9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B5F80067A164A12878E6E51AC3D352C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01+37": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "188" ], - "x-ms-client-request-id": [ "41dd42d4-47c0-424b-b034-413808c6a13e" ], + "x-ms-unique-id": [ "159" ], + "x-ms-client-request-id": [ "b5ccf027-7196-410d-b4cb-934bbb7c4588" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1625,41 +1669,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8784666c-951b-4cfb-9dd3-a1d96af5e761" ], + "x-ms-request-id": [ "adfb0ae7-d62c-45f5-9810-a896d18423e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df31663e-6bd2-422f-b01d-675482542387" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9189b461-2c5b-4ad5-a521-a0c22878f72f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "56fb3ddf-dba4-41c0-beff-0f220a753e88" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182114Z:56fb3ddf-dba4-41c0-beff-0f220a753e88" ], + "x-ms-correlation-request-id": [ "5aa201e8-bb78-44c4-8d5b-fa370c3f3b02" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:5aa201e8-bb78-44c4-8d5b-fa370c3f3b02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 312DD49EF62B413B8F459C8227A6B608 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBF314711BF04AB8AE27D1CC7D801E06 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01+38": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "189" ], - "x-ms-client-request-id": [ "9638d391-4db6-4863-b704-dde1610842a8" ], + "x-ms-unique-id": [ "160" ], + "x-ms-client-request-id": [ "824d976d-b3e8-4976-905b-b136cc28e693" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1670,42 +1714,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF4A088AB\"" ], + "ETag": [ "1DCBCB57E35DAB5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2eca95c7-1b76-4e77-9c1f-faff0d54b0a0" ], + "x-ms-request-id": [ "2411dd5e-205b-4f86-844d-b6b1acb2fb8b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "01cb62f2-7ef6-42fe-b9be-57c26ae57af2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182114Z:01cb62f2-7ef6-42fe-b9be-57c26ae57af2" ], + "x-ms-correlation-request-id": [ "6b317ae6-a831-45df-a798-0a3281607291" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:6b317ae6-a831-45df-a798-0a3281607291" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E58B98DF8E6472B8BB532BC515F66AD Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5D132BAB52C43169FAA0C3B9A163FC6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest1-ie0b2an8xm\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-ie0b2an8xm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:21:13.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest1-ie0b2an8xm\\\\$Func-PowerShell-NewTest1-ie0b2an8xm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest1-ie0b2an8xm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:20.6833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01+39": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+40": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "ddfb5bfa-316c-4eea-928a-25354b446c94" ], + "x-ms-unique-id": [ "161" ], + "x-ms-client-request-id": [ "1c61d202-d06d-4870-84a2-821420f0ddf3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1717,40 +1761,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25982531-3dc2-47e6-94b7-50ad179fd0ec" ], + "x-ms-request-id": [ "ea64b6be-9251-4c71-8c39-a474f4ecf657" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1ce6ffd3-12f5-406a-a57f-1a660e732599" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20e6f016-a1f6-4dee-b514-1fa4ccf5ac9b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "db470297-c9ce-44db-8bf6-a255b5d425f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182115Z:db470297-c9ce-44db-8bf6-a255b5d425f8" ], + "x-ms-correlation-request-id": [ "907793c0-1dbc-462e-9507-f10199321a14" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:907793c0-1dbc-462e-9507-f10199321a14" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AB8875889324396AE5F7E4C3F74AA96 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B368114DA212490B85D872F041F340AE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-ie0b2an8xm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01+40": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "191" ], - "x-ms-client-request-id": [ "1fd9b725-3312-40c2-bbf9-e7095edf00d7" ], + "x-ms-unique-id": [ "162" ], + "x-ms-client-request-id": [ "e4835208-1ea6-49d0-af5d-dc3c4d1b9fa6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1762,41 +1806,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b32c65d1-00cd-42cd-b36f-f26c77c6a5ba" ], + "x-ms-request-id": [ "6538f5c4-d6ed-4f0c-8f50-0d65debc1c8d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fdee8094-55ce-4fa1-81b0-770589fed61d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e08e093-e597-4704-9b7e-aae40ef29702" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff570ec6-72d8-4788-8014-1dfa5c627f0b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182115Z:ff570ec6-72d8-4788-8014-1dfa5c627f0b" ], + "x-ms-correlation-request-id": [ "2384b35b-ea69-4951-a983-295360b48bbb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:2384b35b-ea69-4951-a983-295360b48bbb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA18BD95D23749CFA7E07E564485433C Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:15Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84D02232A27449958EF6DB6D1D78D4F9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm/config/web\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+41": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "192" ], - "x-ms-client-request-id": [ "bb67a7d9-4f3c-4f3d-82c3-62fd210487ae" ], + "x-ms-unique-id": [ "163" ], + "x-ms-client-request-id": [ "4f6a5d9f-cf3c-41ba-8ae3-99371f8a9e18" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1808,40 +1852,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a510980-f87e-4428-b5a4-e36442add3a0" ], + "x-ms-request-id": [ "db993a07-54ee-4e8b-9b84-3e8ffe2bdf15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bcecffc6-d49e-4e87-bf19-ec3459b5b7ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182115Z:bcecffc6-d49e-4e87-bf19-ec3459b5b7ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "edf0396b-3838-4914-a542-9ac4a56303a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001423Z:edf0396b-3838-4914-a542-9ac4a56303a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E83A91F16B5F4E46A265A1A0FF2C098A Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:15Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E5D8C1D64B940DAB428DDD5075141A4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+42": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+43": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-ie0b2an8xm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "ed38f797-fb8f-41ed-8146-c8e495a3e2d2" ], + "x-ms-unique-id": [ "164" ], + "x-ms-client-request-id": [ "0ae6375b-7314-42fd-aeb8-434112834bd3" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1852,20 +1896,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EEF4A088AB\"" ], + "ETag": [ "\"1DCBCB57E35DAB5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da8461ed-56d9-4d20-ad69-04bfae47c18e" ], + "x-ms-request-id": [ "cfeb18eb-cb55-45f0-afea-fef0513dc878" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf765383-c851-4609-8406-f1238f9f2dca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3dcc753b-8f5c-4f82-9e86-17fc17a3b3bb" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "e7487a94-78d8-4855-81cb-8e22eea9bff4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182125Z:e7487a94-78d8-4855-81cb-8e22eea9bff4" ], + "x-ms-correlation-request-id": [ "7e1342a8-626a-48af-86cf-01d62504e4dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001430Z:7e1342a8-626a-48af-86cf-01d62504e4dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 207DA17960FA476A95DB19BADF57302A Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:15Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62E4481000A54037ABBE715280C0AB78 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1876,4 +1920,3 @@ } } } - diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 index 32b655b8db63..5d853a7a7850 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -474,7 +474,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' -Tag 'LiveOnly' { -Runtime $runtime ` -FlexConsumptionLocation $flexLocation ` -DeploymentStorageAuthType "SystemAssignedIdentity" ` - -IdentityType "SystemAssigned" ` + -EnableSystemAssignedIdentity ` -EnableZoneRedundancy Write-Verbose "Validating SystemAssigned identity configuration..." -Verbose @@ -545,8 +545,7 @@ Describe 'New-AzFunctionApp - Flex Consumption' -Tag 'LiveOnly' { -FlexConsumptionLocation $flexLocation ` -DeploymentStorageAuthType "UserAssignedIdentity" ` -DeploymentStorageAuthValue $flexIdentityInfo.Id ` - -IdentityType "UserAssigned" ` - -IdentityID $flexIdentityInfo.Id + -UserAssignedIdentity $flexIdentityInfo.Id # Validate basic properties using base test case expectations Write-Verbose "Validating Flex function app basic properties..." -Verbose diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 1272b4936e78..45c6ce974c6c 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-CustomImage-p2wzf7nt5g\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomImage-4ps815eax3\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ddb32790-739d-4cb4-b98c-5fc37c07068b" ], + "x-ms-request-id": [ "8ef4377a-635b-465a-9163-4747aedb972d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a12973ee-8495-4209-babb-0cdb424f917d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/4a572908-12c5-4a59-8bad-6b10768ac136" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e3d30613-124f-485d-a148-4ee812f7c15b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184941Z:e3d30613-124f-485d-a148-4ee812f7c15b" ], + "x-ms-correlation-request-id": [ "c8a109bf-1121-4f25-bdbe-063e701bfc83" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001432Z:c8a109bf-1121-4f25-bdbe-063e701bfc83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5BDBA6C005314F08A3B8C572492B23AE Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:40Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CDBC5849A59643D5AE4413044D8549FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "551" ], - "x-ms-client-request-id": [ "b6dbab10-0640-442e-82db-f8b07439d80a" ], + "x-ms-unique-id": [ "166" ], + "x-ms-client-request-id": [ "e9cce825-4521-4881-ba52-9e8a706958b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ea9abdd3-7612-4176-b4d8-e02458081453", "4900398c-1707-40c7-a5b5-1e3d7e63ac42" ], + "x-ms-original-request-ids": [ "6ecbd4a5-0b2f-4e89-870e-273fb14aac79", "3815a5a9-c9e9-4878-aa53-bb6e39443593" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "014b7ae8-07fe-46ca-9e4f-eabe5d6996ba" ], - "x-ms-correlation-request-id": [ "014b7ae8-07fe-46ca-9e4f-eabe5d6996ba" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184942Z:014b7ae8-07fe-46ca-9e4f-eabe5d6996ba" ], + "x-ms-request-id": [ "f2bb14db-7a2b-464d-8e0f-d05575161016" ], + "x-ms-correlation-request-id": [ "f2bb14db-7a2b-464d-8e0f-d05575161016" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001433Z:f2bb14db-7a2b-464d-8e0f-d05575161016" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FE7A2231C56A4B62957D79B8027BAAC8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83C2F0E5CD054C8782260453E915D5E0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10323" ], + "Content-Length": [ "8766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "552" ], - "x-ms-client-request-id": [ "8288dd64-cf51-4700-9b95-4b718a55be70" ], + "x-ms-unique-id": [ "167" ], + "x-ms-client-request-id": [ "3f5393ee-e639-4ad4-8a84-047805c6a977" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +108,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bddfa215-cf29-46ff-8f74-d436c0dc1edf" ], + "x-ms-request-id": [ "5808b58a-8828-44fd-92f7-79a0d89476e4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "64f8cb86-9600-4d1a-8a8b-5db8349baee6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184942Z:64f8cb86-9600-4d1a-8a8b-5db8349baee6" ], + "x-ms-correlation-request-id": [ "4bdd8b62-61f9-486c-971b-648383aa51be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:4bdd8b62-61f9-486c-971b-648383aa51be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15547DD3587F47DC9645249B654C2722 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B201C5C257264F208554BC5715A03E38 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "553" ], - "x-ms-client-request-id": [ "1ea4e493-4d40-424a-914d-e46cb545e191" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "f818436b-f8ba-4109-a906-a90cca751713" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,85 +153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98fd7c07-e16c-451b-a049-9759672ca15a" ], + "x-ms-request-id": [ "be97f300-77aa-4dae-87ba-a2257d3276d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "30f1ef32-a8ed-496f-a506-57611beacd46" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T184943Z:30f1ef32-a8ed-496f-a506-57611beacd46" ], + "x-ms-correlation-request-id": [ "9a496cbe-45a1-4309-bb48-35c57e2b2bd2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:9a496cbe-45a1-4309-bb48-35c57e2b2bd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75CB4170C23043FF84083045E30B68AB Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3723F33DD6AD4C45AE142AA0EEF37A39 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "554" ], - "x-ms-client-request-id": [ "265c6eaf-9387-47ad-849b-02325d9b4cfa" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80800838-3ef6-4eb7-a119-bcfa32a46428" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e1cf6b2-f3bf-4dcd-98de-cb824c1b772a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T184943Z:4e1cf6b2-f3bf-4dcd-98de-cb824c1b772a" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A130E31F3F724DC2BDCED4DCEDE02148 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:42 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1746" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "555" ], - "x-ms-client-request-id": [ "1168b9cf-71c6-455f-9c36-240932d24578" ], + "x-ms-unique-id": [ "169" ], + "x-ms-client-request-id": [ "25e49924-c74c-4cb1-ad77-53832076d755" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4123553b-3f47-4bc5-9c71-4891e6cd8250" ], + "x-ms-request-id": [ "0b3068cb-a8ff-4e37-aebd-a845d9d0f232" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "427feebb-67e8-46c8-b3a1-909ef20296e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T184943Z:427feebb-67e8-46c8-b3a1-909ef20296e4" ], + "x-ms-correlation-request-id": [ "73e141eb-3a4c-415d-9f89-4e7d5532e793" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:73e141eb-3a4c-415d-9f89-4e7d5532e793" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1FE6D5D03D646B5A05E3279B44D2710 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A32D93A101B245B2B2713220D0C91C4C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "556" ], - "x-ms-client-request-id": [ "c022d358-b24b-4460-b656-82dcce2f005e" ], + "x-ms-unique-id": [ "170" ], + "x-ms-client-request-id": [ "72d92005-3d17-43b3-b149-a366d642d329" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -288,40 +243,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0af1d41-2266-4b6e-8898-1fcfccb2b867" ], + "x-ms-request-id": [ "a30a2158-3e08-42b7-b85a-2cef0c5a07e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f0ee08bd-2a94-4204-af6d-7dba53f253f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T184943Z:f0ee08bd-2a94-4204-af6d-7dba53f253f7" ], + "x-ms-correlation-request-id": [ "bacd8b5e-e416-4ea2-9234-1a4a4e0eb920" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:bacd8b5e-e416-4ea2-9234-1a4a4e0eb920" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B565A3643C634ABAA16EC99020E590C9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ADCEDDF97CCD4216A46789619B7C2CAB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "557" ], - "x-ms-client-request-id": [ "4d58d918-bb4e-49a9-a35d-d8645103f508" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "bbbccf08-1c4c-468f-a2a3-6cdb3804de04" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -333,40 +288,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cfbe045a-ef0a-4898-88b5-5884bd58a30e" ], + "x-ms-request-id": [ "c0cff892-00e8-48e7-ba1b-83988d587a4f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7abb4c2a-310c-4d5d-a2c7-81d288b4f3a3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T184944Z:7abb4c2a-310c-4d5d-a2c7-81d288b4f3a3" ], + "x-ms-correlation-request-id": [ "a3360191-f65f-47cf-a510-2d30d67b52e6" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T001434Z:a3360191-f65f-47cf-a510-2d30d67b52e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EE70F37097E4201BC1A3A61895DAC06 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BDC5930ADDE44C6BEF12C60E2E14F9D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1696" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "558" ], - "x-ms-client-request-id": [ "d8092f3b-d9b9-4af2-b5d1-be98153d8fd7" ], + "x-ms-unique-id": [ "172" ], + "x-ms-client-request-id": [ "10bc4a3d-3d5a-4592-bedf-d53d42e5f020" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -377,40 +332,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "07eecabb-e8c5-425c-8082-84a605df9321", "fc472296-77f4-43ea-82fd-8090672e9ef5", "73092068-d7ca-40b9-9dd3-17e45a55dad7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2a0ecac0-751a-4a68-b23b-19e1b4e5a107" ], - "x-ms-correlation-request-id": [ "2a0ecac0-751a-4a68-b23b-19e1b4e5a107" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184946Z:2a0ecac0-751a-4a68-b23b-19e1b4e5a107" ], + "x-ms-original-request-ids": [ "80dc9325-9a3f-4952-923c-74bf6e7e1be6", "34912a64-3375-43ba-bb1f-8a082136dada", "a19e25f2-93c2-4631-b7c7-87d2d9d4a7d4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "bed05be6-a123-4308-92cf-525e70f2faa7" ], + "x-ms-correlation-request-id": [ "bed05be6-a123-4308-92cf-525e70f2faa7" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001434Z:bed05be6-a123-4308-92cf-525e70f2faa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA3D736E8BCC4F8EB9A4705A566128B6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 79CC66526A0D45839DD83F392A415110 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "559" ], - "x-ms-client-request-id": [ "9701d5b9-87b2-4d65-ad36-d1086398f866" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "222f8de2-682d-4422-9c29-d3898912c0fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -421,16 +376,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "1952957d-caa0-436a-9d0f-83385f1aa748" ], + "x-ms-request-id": [ "2d5cd550-e32f-4e8b-8b42-9ac037ef5b1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/19af98b3-5120-4401-bc60-bc669633aea5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20e0fb1e-7bae-4fd7-a66d-f79869ce2942" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3ef1fef6-99be-460f-919c-bfa309804a31" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184946Z:3ef1fef6-99be-460f-919c-bfa309804a31" ], + "x-ms-correlation-request-id": [ "d9a9d58d-70a1-44cb-8c8f-577404f31298" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001434Z:d9a9d58d-70a1-44cb-8c8f-577404f31298" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 169A711D0D8C497E85557AEDEF4C517B Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6ACAE5975F8416099CCC2FBBB554FFB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -441,10 +396,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Insights/components/Functions-CustomImage-p2wzf7nt5g?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-CustomImage-4ps815eax3?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Insights/components/Functions-CustomImage-p2wzf7nt5g?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-CustomImage-4ps815eax3?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -464,30 +419,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a96fe5d1-bafe-4956-a948-8a5d43c32324" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "c3f4a48a-3cfb-4b6b-aa17-d25004eb82c4" ], - "x-ms-correlation-request-id": [ "c3f4a48a-3cfb-4b6b-aa17-d25004eb82c4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T184951Z:c3f4a48a-3cfb-4b6b-aa17-d25004eb82c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9521cfeb-5d3d-4c1e-aada-bdcf843cb730" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "9664a515-a6a6-432d-8618-9c43f82839d8" ], + "x-ms-correlation-request-id": [ "9664a515-a6a6-432d-8618-9c43f82839d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001441Z:9664a515-a6a6-432d-8618-9c43f82839d8" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58BAEBD9956C4B7089C5B9B671160BB9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BFAB9441EC16437A956CF33C1755B3C6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:14:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1664" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a2000068-0000-0300-0000-691b6e4f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/microsoft.insights/components/Functions-CustomImage-p2wzf7nt5g\",\r\n \"name\": \"Functions-CustomImage-p2wzf7nt5g\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-p2wzf7nt5g\",\r\n \"AppId\": \"c48624e3-1786-4ca8-ae3a-e7a699144dee\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"5d6a3053-c9bb-422d-b0a7-47290108db6b\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomImage-p2wzf7nt5g\",\r\n \"CreationDate\": \"2025-11-17T18:49:46.9866162+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-p2wzf7nt5g_c48624e3-1786-4ca8-ae3a-e7a699144dee_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-p2wzf7nt5g-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202943c-0000-0300-0000-69c47a710000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-CustomImage-4ps815eax3\",\r\n \"name\": \"Functions-CustomImage-4ps815eax3\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-4ps815eax3\",\r\n \"AppId\": \"05343c66-9cbf-4b65-ad79-6e07a5f9b887\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0a8fd25-6f5a-4920-a76f-0dc0ff656a13\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomImage-4ps815eax3\",\r\n \"CreationDate\": \"2026-03-26T00:14:35.5368194+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-4ps815eax3_05343c66-9cbf-4b65-ad79-6e07a5f9b887_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-4ps815eax3-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux,container\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOCKER|divyag2411/test:customcontainer\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DOCKER_CUSTOM_IMAGE_NAME\",\r\n \"value\": \"divyag2411/test:customcontainer\"\r\n },\r\n {\r\n \"name\": \"FUNCTION_APP_EDIT_MODE\",\r\n \"value\": \"readOnly\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-p2wzf7nt5g\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux,container\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOCKER|divyag2411/test:customcontainer\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DOCKER_CUSTOM_IMAGE_NAME\",\r\n \"value\": \"divyag2411/test:customcontainer\"\r\n },\r\n {\r\n \"name\": \"FUNCTION_APP_EDIT_MODE\",\r\n \"value\": \"readOnly\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-4ps815eax3\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -501,43 +456,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F2F5B4ADF5\"" ], + "ETag": [ "\"1DCBCB58BD80C4B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "64563606-20fa-45d9-ab23-f99d1f779e6d" ], + "x-ms-request-id": [ "4dc0ba83-11c6-4aa1-9dd2-5617c15b0970" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/37133b91-0c3f-4c49-9f10-1c4cf864167c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae88e6ac-d9b0-462f-a2f2-0b24288f5bc0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "8748c679-8283-4177-8150-5bc1a9d897ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185013Z:8748c679-8283-4177-8150-5bc1a9d897ac" ], + "x-ms-correlation-request-id": [ "2fd54de4-e760-421a-90ba-540255d15a95" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001504Z:2fd54de4-e760-421a-90ba-540255d15a95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44B3D617514B4C5AB0E6932CC686C1AD Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:51Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7D60F18DB9164728BFB33C1237485EB2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8519" ], + "Content-Length": [ "8782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-CustomImage-p2wzf7nt5g\",\"repositorySiteName\":\"Functions-CustomImage-p2wzf7nt5g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:49:52.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-p2wzf7nt5g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-p2wzf7nt5g\\\\$Functions-CustomImage-p2wzf7nt5g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:43.0066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "562" ], - "x-ms-client-request-id": [ "a511b3a6-11f0-4848-982a-4a49d2788820" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "01144ee7-0962-4ce3-8da6-07dff3205f74" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -547,42 +502,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F301C40A8B\"" ], + "ETag": [ "1DCBCB59825764B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fd429be-d5b7-4f14-8843-79b19c743191" ], + "x-ms-request-id": [ "3926cb12-0654-4db5-b3ac-3d54d666ce8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f3d59a9c-5f9c-4d8f-ab5b-5e4b1f54c165" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185043Z:f3d59a9c-5f9c-4d8f-ab5b-5e4b1f54c165" ], + "x-ms-correlation-request-id": [ "d3ca21ad-3449-4d66-87a5-f11f89f6ae73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:d3ca21ad-3449-4d66-87a5-f11f89f6ae73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F29C22FBF4E4CBFA46868836FCD4478 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88ABB99795D740268788CDB814C94F20 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8531" ], + "Content-Length": [ "8616" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-CustomImage-p2wzf7nt5g\",\"repositorySiteName\":\"Functions-CustomImage-p2wzf7nt5g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:50:13.2566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-p2wzf7nt5g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-p2wzf7nt5g\\\\$Functions-CustomImage-p2wzf7nt5g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "563" ], - "x-ms-client-request-id": [ "c5be5df9-56d7-440b-87e4-c746bd8bff56" ], + "x-ms-unique-id": [ "177" ], + "x-ms-client-request-id": [ "c32e67aa-515d-40e7-881e-e654f95443e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -593,42 +548,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F301C40A8B\"" ], + "ETag": [ "1DCBCB59825764B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99a16770-403d-432f-b621-35edcc48e5dc" ], + "x-ms-request-id": [ "321327e4-e5e8-4ecc-baa1-94cf788716d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93bcebb1-e41e-477b-8357-1c92c266b3ef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185044Z:93bcebb1-e41e-477b-8357-1c92c266b3ef" ], + "x-ms-correlation-request-id": [ "a8d31ab5-9116-4b01-823d-74f4dac46eae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:a8d31ab5-9116-4b01-823d-74f4dac46eae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F57BF302D8AC4EA683BF43AEF2688CD3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7391106A66244BB98D37327B98CC33AE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8531" ], + "Content-Length": [ "8616" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-CustomImage-p2wzf7nt5g\",\"repositorySiteName\":\"Functions-CustomImage-p2wzf7nt5g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:50:13.2566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-p2wzf7nt5g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-p2wzf7nt5g\\\\$Functions-CustomImage-p2wzf7nt5g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "564" ], - "x-ms-client-request-id": [ "491a9caf-850f-4f5a-a578-7685a835e4ce" ], + "x-ms-unique-id": [ "178" ], + "x-ms-client-request-id": [ "7357af1a-5725-4a31-a54f-42be3a824b2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -640,40 +595,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4e93a6a-b445-4710-8f04-485b8a48f21a" ], + "x-ms-request-id": [ "83bdd4ae-eb08-4645-975e-94fde9f1db21" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/774d47d8-2848-463a-9f68-d8800e4a2b8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dffff1db-c79d-4fdc-bf1d-3ba063f9c5c4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c339151c-1ed3-40db-835f-fb608cd43e70" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185044Z:c339151c-1ed3-40db-835f-fb608cd43e70" ], + "x-ms-correlation-request-id": [ "a45878a9-a026-437b-bbcf-e9d86118795c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:a45878a9-a026-437b-bbcf-e9d86118795c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3AC758A5EF342FB8ABA2E6CA16E7796 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8839FB561CEB486E93638114EEF6520B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-p2wzf7nt5g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-4ps815eax3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "565" ], - "x-ms-client-request-id": [ "7635ab40-af42-4406-b091-2b160f20af2f" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "bf37f099-ea4c-4fd6-b2af-c6e043180e3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -685,41 +640,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af3c619c-da1e-4f10-ae6e-31a7e30323df" ], + "x-ms-request-id": [ "42b57f2c-bb9d-481d-8b86-2c8f6fc3e3ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cf6f875-efa4-47a0-ab7f-10ec10472b26" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9801bc77-7c2a-471f-8550-3323919a44d3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "986f1963-2e15-4005-97cd-cc3f7ea7f33b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185044Z:986f1963-2e15-4005-97cd-cc3f7ea7f33b" ], + "x-ms-correlation-request-id": [ "96385cb2-7cd6-414c-a948-793849c595f0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:96385cb2-7cd6-414c-a948-793849c595f0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D786A7FCA5364F0E82487F406774D3A4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD2EF5A265644E51A97FF31E5C358418 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "566" ], - "x-ms-client-request-id": [ "fd36f672-112c-4a9a-9fe5-5f5d0018e455" ], + "x-ms-unique-id": [ "180" ], + "x-ms-client-request-id": [ "1cc598c0-427a-421f-a800-97ab9741192b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -730,42 +685,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F301C40A8B\"" ], + "ETag": [ "1DCBCB59825764B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfed45ae-fc3a-4e17-9424-ae73ee1b1a00" ], + "x-ms-request-id": [ "19a227a6-3ec9-4c60-8f31-c1e7b406b0e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff22b05d-33d5-48cf-8f2d-bba56b2a3fd2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185044Z:ff22b05d-33d5-48cf-8f2d-bba56b2a3fd2" ], + "x-ms-correlation-request-id": [ "a5840a27-a522-4456-a846-2c0afb947bfe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:a5840a27-a522-4456-a846-2c0afb947bfe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 59A753D1DC644C1FA22BC04750A98834 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64221B32FCE04DA5A05F6C816CBAD996 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8531" ], + "Content-Length": [ "8616" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-CustomImage-p2wzf7nt5g\",\"repositorySiteName\":\"Functions-CustomImage-p2wzf7nt5g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:50:13.2566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-p2wzf7nt5g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-p2wzf7nt5g\\\\$Functions-CustomImage-p2wzf7nt5g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "06e5c603-a416-469e-9f65-17fd928de7d5" ], + "x-ms-unique-id": [ "181" ], + "x-ms-client-request-id": [ "b4fba4b2-daf8-4542-9a9b-a1c01f9462fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -777,40 +732,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c8984e15-6e79-4b92-bfe6-dc234d823d9c" ], + "x-ms-request-id": [ "e2b4720a-c754-40e9-a8d5-aa512bd0815c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c19e612-f7f4-4235-ba7e-d00e426b2c68" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/638a0b1f-c01b-44ce-afbb-6e41857e1367" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "549a3b44-73d3-46d0-82d1-549ceb35e45e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185045Z:549a3b44-73d3-46d0-82d1-549ceb35e45e" ], + "x-ms-correlation-request-id": [ "6e5ba639-57b9-4839-a6ce-d8a1e4877115" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:6e5ba639-57b9-4839-a6ce-d8a1e4877115" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE96D26460B34EE6BCA353173C0DD71A Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B24B1CFA7A84336BDDBCAA1CC64B55F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-p2wzf7nt5g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-4ps815eax3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "568" ], - "x-ms-client-request-id": [ "606cfc65-d368-46b6-b842-1a631ebaf496" ], + "x-ms-unique-id": [ "182" ], + "x-ms-client-request-id": [ "4374e37a-e245-4b06-b13f-728cbba1a60b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -822,41 +777,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a34049ec-5ce7-4933-9a54-34ec7e303b73" ], + "x-ms-request-id": [ "154e1997-8209-4a19-8b5f-d415ea0abb96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de6a441d-0d34-4f0d-bb5d-cd5606b47c80" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "7f6aa841-51a3-46bd-ad6a-87350474b68f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185045Z:7f6aa841-51a3-46bd-ad6a-87350474b68f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f65be4ed-f6ba-4212-b2b0-68f65fbcf0cc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ba5271bd-c65f-40ec-8870-d3cf0da88fb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:ba5271bd-c65f-40ec-8870-d3cf0da88fb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3A77E1F78D141CC8A22BE8B19BFC44D Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E93208973B574620A0463A96BE693647 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "569" ], - "x-ms-client-request-id": [ "a0cfe3fd-56b8-4982-9277-24f11dbe9ae6" ], + "x-ms-unique-id": [ "183" ], + "x-ms-client-request-id": [ "721d2db0-03a5-4e9b-a370-4c9f62a40c4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -867,42 +822,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F301C40A8B\"" ], + "ETag": [ "1DCBCB59825764B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "65b6f785-cb37-42dc-a345-fda6ee06e4fc" ], + "x-ms-request-id": [ "451eea07-66c0-46f4-ba3a-239f84ff1cdd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d1acd65a-887d-4d93-8c9f-304ec11b7fe2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185045Z:d1acd65a-887d-4d93-8c9f-304ec11b7fe2" ], + "x-ms-correlation-request-id": [ "389c3a95-4f04-4740-bfa1-238eaf41ae2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:389c3a95-4f04-4740-bfa1-238eaf41ae2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78136B357C964C36BDF2082451AD6423 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC115AFA065F4955A2D9C300A7B23EA0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8531" ], + "Content-Length": [ "8616" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-CustomImage-p2wzf7nt5g\",\"repositorySiteName\":\"Functions-CustomImage-p2wzf7nt5g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-p2wzf7nt5g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:50:13.2566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-p2wzf7nt5g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-CustomImage-p2wzf7nt5g\\\\$Functions-CustomImage-p2wzf7nt5g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-customimage-p2wzf7nt5g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "570" ], - "x-ms-client-request-id": [ "85a8dc1e-218b-41d2-b203-0a8e9f3f7363" ], + "x-ms-unique-id": [ "184" ], + "x-ms-client-request-id": [ "f5847c32-1f39-4b92-baea-a9eab29abf60" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -914,40 +869,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "adc3fc31-b682-4cea-9056-ff8ae18e24e4" ], + "x-ms-request-id": [ "d00ed5a4-1346-4092-b901-9b2f636abb4c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/144b0d11-1c4e-4fe8-af89-7f562dfda2ef" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07c14e3d-f1c8-439c-87d0-49e5ffd74226" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "de596bca-2762-4ee3-843c-3b386d551dae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185045Z:de596bca-2762-4ee3-843c-3b386d551dae" ], + "x-ms-correlation-request-id": [ "64731a78-b550-4b5e-b0cf-fc9f4401e748" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001537Z:64731a78-b550-4b5e-b0cf-fc9f4401e748" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B577774C46784D31B1765911DC85865F Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0337ED9550A44BEE93D47155166BF2CB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-p2wzf7nt5g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-4ps815eax3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "571" ], - "x-ms-client-request-id": [ "e39fd778-19a3-4b6d-baa4-9d1eb77b0606" ], + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "45e13e51-815f-4656-9877-29c7b4f04d25" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -959,41 +914,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "450ab802-e7e1-49e3-be6d-56b179552b48" ], + "x-ms-request-id": [ "d084a9ed-5362-4ec3-91a3-53b3eeba88be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cde6b91f-570f-46ca-8530-604ed4cab9c7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a29ac1e5-45e1-4aa8-b2c0-98d4a53dee6b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f3ffcd9a-ae27-4cb7-a1fb-185b03eae2d5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185045Z:f3ffcd9a-ae27-4cb7-a1fb-185b03eae2d5" ], + "x-ms-correlation-request-id": [ "83928eab-0e68-4441-a458-35da30adceaa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001537Z:83928eab-0e68-4441-a458-35da30adceaa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C4CA973935B488DA3AEC1D9BEB63086 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 30A8AD4173CC440DAE17A9F4B70CAC5B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g/config/web\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "572" ], - "x-ms-client-request-id": [ "e6d3310d-1e5d-4027-a030-78760d1e32e5" ], + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "b1c603b7-38b7-4532-88c8-c5de438bb772" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1005,40 +960,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd418b44-f44d-490c-b630-f2bbdfef6825" ], + "x-ms-request-id": [ "edf1d124-0230-49d8-bafb-f6abd5888415" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "d4c25971-5a70-437e-b02b-29a4c9dc131c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185046Z:d4c25971-5a70-437e-b02b-29a4c9dc131c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "db9d0e9b-7992-4218-9f99-14e0d4b357a0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001537Z:db9d0e9b-7992-4218-9f99-14e0d4b357a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95DA8BF878634C71B91DE8E43762E9D0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E027764BD7EC4A29BACC0FBB3503457E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-CustomImage-p2wzf7nt5g?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "573" ], - "x-ms-client-request-id": [ "bff6bca3-773b-4bfb-a852-107169242c14" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "04d3c5e4-fd37-4df1-9fb1-50bdee7b42f5" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1049,20 +1004,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F301C40A8B\"" ], + "ETag": [ "\"1DCBCB59825764B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d3fc632-964d-4861-8d78-bc3e9ea8ca9f" ], + "x-ms-request-id": [ "0fec9d6d-c041-4dbc-8833-cc6bcd167b61" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56d43746-a7bb-4720-841f-9950d1d60c6e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65ae286d-fa3b-4ecc-b301-03300a0bab15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f056ccd0-bbdf-4f57-924d-f8728ab30791" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185057Z:f056ccd0-bbdf-4f57-924d-f8728ab30791" ], + "x-ms-correlation-request-id": [ "1affacc1-56ea-493b-856d-8e9cb4a5b3f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001545Z:1affacc1-56ea-493b-856d-8e9cb4a5b3f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA8A507D890C4EBF970BAF8919C363B0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CDE1A877CFF646E6B75FF96C6CBF9DD4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1076,7 +1031,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1091,18 +1046,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b3340d0-76d7-4e58-bc01-8570176abfae" ], + "x-ms-request-id": [ "23bb2ab6-990f-45b8-8d4e-68c295c81563" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/296d4741-1f75-48ac-8855-09f04f368bc4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/fa6692d9-a40a-4f96-9eea-2d696a28438e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8eceee90-bc23-405d-a335-814ee9fc12e0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185057Z:8eceee90-bc23-405d-a335-814ee9fc12e0" ], + "x-ms-correlation-request-id": [ "e45200d0-a688-47b2-a575-65e198b1ca9d" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001546Z:e45200d0-a688-47b2-a575-65e198b1ca9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E66194B8751A465D97D4AE1BCFAB77C0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88ECBEB6B0574CC282ABB1E9F87329CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1120,12 +1075,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "575" ], - "x-ms-client-request-id": [ "5946aed3-67de-4aa5-b9d5-37f3f443f280" ], + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "92d0328c-014b-4baa-a612-619741701d24" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1137,25 +1092,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6fffbb9c-2f4e-4dd6-8678-0dd87a9d6b02" ], + "x-ms-request-id": [ "fc38b4cc-a6be-4afa-81a8-ac97248acd22" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ea8de2f9-e7d9-4320-9061-4508f99e4c50" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2277de03-82d4-43e7-a151-ba72a6da056b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "338b0cd1-4ca7-4f1b-a567-99786bbe4a58" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185058Z:338b0cd1-4ca7-4f1b-a567-99786bbe4a58" ], + "x-ms-correlation-request-id": [ "773ec8da-8ac4-4172-9890-58d0f36b7864" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001546Z:773ec8da-8ac4-4172-9890-58d0f36b7864" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF28918C5FC44CAAB22363F51A84CFA8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ACFF64CEFC6F453AA6ADC8856595347F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36864" ], + "Content-Length": [ "37708" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1166,12 +1121,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "576" ], - "x-ms-client-request-id": [ "b7e94c78-44cb-445f-9d98-d9b23d7fcd21" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "24247a63-93d2-4105-82da-d9af66713f7d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1182,40 +1137,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7f4dbc54-236f-407e-a257-801dfe6bc558", "abc6adb7-43dd-47dc-a99e-2ffcd74dfc66", "99a743e8-09e7-4a04-a1dd-a635df7b9554" ], + "x-ms-original-request-ids": [ "92d452e7-da88-4e6d-97b0-ec66f8f26af7", "516b43ae-13f0-41cb-9c4b-561949459baa", "5a11f45b-bb3d-4fee-8c0d-a52dc2c01e8f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0f407e93-f356-4a31-aa72-24ef2868492b" ], - "x-ms-correlation-request-id": [ "0f407e93-f356-4a31-aa72-24ef2868492b" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T185058Z:0f407e93-f356-4a31-aa72-24ef2868492b" ], + "x-ms-request-id": [ "d98ade32-79fb-4344-ada3-d7957d590b3d" ], + "x-ms-correlation-request-id": [ "d98ade32-79fb-4344-ada3-d7957d590b3d" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001547Z:d98ade32-79fb-4344-ada3-d7957d590b3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CAC86841637B4C80BEF45676E32F20EE Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:58Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90B3543385C94B73AA3434E216841314 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "577" ], - "x-ms-client-request-id": [ "fbce98ec-e4e3-47ed-9ca6-fdb2ce1f73fa" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "7ed03ca0-21f2-4fb7-a618-dc9172ca9e44" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1226,16 +1181,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "05cba8f8-f3b5-41ee-9b66-cade65f490b7" ], + "x-ms-request-id": [ "8ed52019-1f36-420b-a8a5-2f8cda6a493b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0e83e39d-a5c2-4482-b332-b2548f9d3f0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b4c12c1-488c-415e-aad3-8d26e69b178f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1330f9bb-a0f2-42fb-b8f5-4343a478c487" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185058Z:1330f9bb-a0f2-42fb-b8f5-4343a478c487" ], + "x-ms-correlation-request-id": [ "40cd9e75-86b9-49f1-bb1c-3cfb57c1c8c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001547Z:40cd9e75-86b9-49f1-bb1c-3cfb57c1c8c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 506A868DBCCC4C85A1497EC6E2DC010D Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:58Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E5B9C115E2A4E4FA978AEF3D0AA405A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:15:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1250,7 +1205,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1265,18 +1220,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efd2f7e5-2209-462a-a789-ccdb043fb818" ], + "x-ms-request-id": [ "0c1d9e7e-5b6a-4534-9d55-579a78ba2ea3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/73049ab6-f7ec-46d4-917b-436bba0a29d6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "61bd378b-224d-4d4a-9bce-0c8aa2389261" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185059Z:61bd378b-224d-4d4a-9bce-0c8aa2389261" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/3a040fbb-b123-4fc9-90e4-2a595100b7a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], + "x-ms-correlation-request-id": [ "daff089e-1bc8-46ae-84fe-a8e489390fb3" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001601Z:daff089e-1bc8-46ae-84fe-a8e489390fb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6128AA77537A49C1B5668BA33EEEAEE3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:58Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6948E4D4BF2540FD84A9F9317764F581 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1294,12 +1249,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "579" ], - "x-ms-client-request-id": [ "a50ac034-3416-4045-a08e-c9b6a23aaa5b" ], + "x-ms-unique-id": [ "193" ], + "x-ms-client-request-id": [ "5fd41ea8-4eb9-4b3a-8db7-f651250f5a7e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1311,25 +1266,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc9d9698-5a06-4e0b-bdc6-1f19ea065b3a" ], + "x-ms-request-id": [ "dd1bff8d-2016-4d79-8cc7-5cb17b8271cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/ec77fcda-e644-4eb1-b851-fafb3718d908" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/41f9a476-8d73-46eb-bd54-23451f988909" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f7c5c89-c773-4f39-abdf-e813b7d46753" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T185059Z:6f7c5c89-c773-4f39-abdf-e813b7d46753" ], + "x-ms-correlation-request-id": [ "caffdb4e-34a5-49c5-af09-1d7bb03787f8" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001601Z:caffdb4e-34a5-49c5-af09-1d7bb03787f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48E8C3CE004F4984ACA414F2F836CDAF Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:59Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3FC991A84D9640F1B643A9638F913242 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36864" ], + "Content-Length": [ "37708" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1340,12 +1295,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "580" ], - "x-ms-client-request-id": [ "2b522d77-7d8e-406c-beb6-66bbc33d9e92" ], + "x-ms-unique-id": [ "194" ], + "x-ms-client-request-id": [ "974ba109-b1d3-4efb-bd55-3a9c44eace53" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1356,40 +1311,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b0181adf-cf13-4a7a-80b3-1169feecf008", "a6204385-28f3-40df-96e8-7f4c60804e0a", "87c308de-c328-4060-ad1e-ca65b18e1b22" ], + "x-ms-original-request-ids": [ "536e3c6d-51b1-4add-afdd-96ccbc6c19f5", "f63738c1-f10d-47ff-9121-f198b3347c3a", "377446ee-bed8-49a2-af41-59bff69abf2e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "eaaa8430-77ed-4e6f-8740-1ca0de70bd72" ], - "x-ms-correlation-request-id": [ "eaaa8430-77ed-4e6f-8740-1ca0de70bd72" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T185059Z:eaaa8430-77ed-4e6f-8740-1ca0de70bd72" ], + "x-ms-request-id": [ "49fe4bf9-1b34-4bd2-b121-e3845fc8904d" ], + "x-ms-correlation-request-id": [ "49fe4bf9-1b34-4bd2-b121-e3845fc8904d" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001602Z:49fe4bf9-1b34-4bd2-b121-e3845fc8904d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FAC5266FB55F4F62B7FA3233A99B7076 Ref B: MWH011020807031 Ref C: 2025-11-17T18:50:59Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6947B08FF3C841F5A386A1D47D5D7503 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "581" ], - "x-ms-client-request-id": [ "91a6e40e-1122-475b-80cf-53e94befd327" ], + "x-ms-unique-id": [ "195" ], + "x-ms-client-request-id": [ "b7ff679d-57cb-4aee-94dd-e30655397bb3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1400,16 +1355,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "574988cc-23cb-46c9-b4cc-b818bd02dd8c" ], + "x-ms-request-id": [ "83db5327-5b72-4b2c-bafe-1f4c953fb15a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/28562e9d-dfc5-4fbc-a8cd-a82f91b0b371" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b44b4b9-7ae3-4878-8e9d-56b2b224b532" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c9e365ae-437a-44c1-851e-5652e86bc9d2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185100Z:c9e365ae-437a-44c1-851e-5652e86bc9d2" ], + "x-ms-correlation-request-id": [ "29cb5c36-8f15-49df-ac95-56c3aa3f1d29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001602Z:29cb5c36-8f15-49df-ac95-56c3aa3f1d29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 490BB24AF13D410C96FC74FE0931E9DD Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:00Z" ], - "Date": [ "Mon, 17 Nov 2025 18:50:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3CCA5C2787746398A57478C1D21CC68 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1424,7 +1379,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1439,18 +1394,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3f3c6fb-94e7-4e6a-a534-32fc98818b8e" ], + "x-ms-request-id": [ "a4f7f7a1-a6af-4d16-b754-281f9affa9fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9c8d0893-306d-48e0-b88b-8dcd59fbeb56" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/104ae9b3-b9da-4f35-9b3b-42beafc520f2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "22b45f6d-d5b0-426d-92b2-b5e2284a5562" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185100Z:22b45f6d-d5b0-426d-92b2-b5e2284a5562" ], + "x-ms-correlation-request-id": [ "ecb508d0-734e-42e8-a1cd-e4e57b6764b8" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001602Z:ecb508d0-734e-42e8-a1cd-e4e57b6764b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A462A559FC2843F6BAA376784093AE31 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:00Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66A25B491CD14D06B65C83838A5CAFEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1468,12 +1423,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "583" ], - "x-ms-client-request-id": [ "5e529f76-2dad-4747-a0e0-63136be71d3e" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "3a678d32-7682-4109-9755-e9facd21a1b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1485,25 +1440,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f669cd87-6ed5-4793-bf57-5ac37bb65063" ], + "x-ms-request-id": [ "e95102c0-7b7c-4a0c-a254-3fb4c8b93625" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a88c224a-c1cf-4b19-b83e-dfcdb0d16ca0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/93b04e71-7e45-4a76-ae4d-8907287274ed" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e65fdc5-81e2-4494-94eb-5238e6d88019" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185100Z:9e65fdc5-81e2-4494-94eb-5238e6d88019" ], + "x-ms-correlation-request-id": [ "b2f4ece8-26f9-4906-8f7c-7e3f16b8cba9" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001602Z:b2f4ece8-26f9-4906-8f7c-7e3f16b8cba9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47F9D81DCF0D4A5E896068E8083A57A0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:00Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 992A573C3EBA4A33A6DAD4E6337F75D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36864" ], + "Content-Length": [ "37708" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1514,12 +1469,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "584" ], - "x-ms-client-request-id": [ "a012cf99-aef5-4c96-bca9-77960d993544" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "4583de1a-ba61-4b61-9484-0c37dce608e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1530,40 +1485,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ae3999ac-0146-46c7-8e1b-62d11458831e", "aa3b4ed0-9c34-49df-b6ba-c348309ffabc", "687ee86f-4ff0-4627-a805-2209a878ef40" ], + "x-ms-original-request-ids": [ "0c79425c-1af4-422d-8a03-91642ce92fe6", "bb664227-5f4d-45f2-ab05-50e959a7c1a8", "b2205b01-2403-4fcb-97d8-bf0584367748" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "cbcb3303-c9f8-4572-ad7a-7700431f1513" ], - "x-ms-correlation-request-id": [ "cbcb3303-c9f8-4572-ad7a-7700431f1513" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185101Z:cbcb3303-c9f8-4572-ad7a-7700431f1513" ], + "x-ms-request-id": [ "d6723c19-5e08-4960-9a84-50d471365f26" ], + "x-ms-correlation-request-id": [ "d6723c19-5e08-4960-9a84-50d471365f26" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001603Z:d6723c19-5e08-4960-9a84-50d471365f26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7094D7A6ACD433BBB0CB7CC135E9D7D Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:00Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9719D8C141C04248BA60A4C6CA838DE5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "585" ], - "x-ms-client-request-id": [ "81add3b9-b24a-4c59-b187-735130ddc5c7" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "92870222-ce20-43a9-83f3-a5927c15a240" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1574,16 +1529,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "60a79dba-2460-49bd-88fc-1073eba86e64" ], + "x-ms-request-id": [ "3166ff91-32c4-4640-96a6-c9d470adf710" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/085768db-2817-4e3a-b2e1-cc2c4de03a5c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45d0f31f-9463-40f6-a235-e82262b6d9d6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "26525e27-b88a-497a-9db1-c4a8bb93f3b7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185101Z:26525e27-b88a-497a-9db1-c4a8bb93f3b7" ], + "x-ms-correlation-request-id": [ "200486f1-019d-46b7-95ec-174df2b7993d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001603Z:200486f1-019d-46b7-95ec-174df2b7993d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E35CBE6A321B4E79B05302049B9CEF1E Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:01Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D37EC656B14642F785C208D5A403DF23 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1598,7 +1553,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1613,18 +1568,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93f7a60b-33ad-401a-ba16-ee43e68d98ee" ], + "x-ms-request-id": [ "a106c45d-6b83-4497-841f-6e8d614aaecb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/405dbdf6-5f22-47ba-b9ab-2adb84848251" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/518228f3-f413-49a3-ada5-3b7a8076682d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7ffbf413-ed42-4a69-89d9-3a3d9ba90ff8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185102Z:7ffbf413-ed42-4a69-89d9-3a3d9ba90ff8" ], + "x-ms-correlation-request-id": [ "e1f1f658-ecc8-4564-b626-215633cc75e9" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001603Z:e1f1f658-ecc8-4564-b626-215633cc75e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E767E4E377914BFEADF745AD8CE98378 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:01Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D408B3A30CAC4236B1F844A2607CD527 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1642,12 +1597,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "587" ], - "x-ms-client-request-id": [ "bfe813e7-9043-4015-ad5e-22572df929af" ], + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "e448b099-7db1-4813-9ade-f397d13b475c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1659,25 +1614,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "784a6804-ebe0-4200-9ec4-30ec8e80913d" ], + "x-ms-request-id": [ "4b3e7c8f-5967-42fb-9d44-842882735e36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/292efc21-d29f-4ec8-9059-feecf7a4f184" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/6bc40ed2-5ed1-452d-9069-301e41aad048" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d51874ff-5428-43e6-97f5-47463267108d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185102Z:d51874ff-5428-43e6-97f5-47463267108d" ], + "x-ms-correlation-request-id": [ "d7c891c6-9e11-4b18-8282-1b0303f108a1" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001604Z:d7c891c6-9e11-4b18-8282-1b0303f108a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 297626874DF34D4AA08D8752BCE80E56 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:02Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 207947D0CB8D4C03B38FABB13528C017 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36864" ], + "Content-Length": [ "37708" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1688,12 +1643,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "588" ], - "x-ms-client-request-id": [ "0d0b492d-5d59-49f4-8512-9d6d877a12e9" ], + "x-ms-unique-id": [ "202" ], + "x-ms-client-request-id": [ "a52b760e-dae0-4c3d-aa4b-a1771b2fa619" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1704,40 +1659,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4062db25-62cf-4349-9801-eb8f663997fb", "fff6bc95-04d1-46cf-869d-854a19b4cb68", "01ae737f-87c6-403d-b376-6a9d19f70431" ], + "x-ms-original-request-ids": [ "ef129c03-916d-4e3a-b79e-917c959aad4e", "e1cc7808-0e61-4f8b-a0ab-2391e60d3741", "50ddba37-c8c3-456a-b932-4d4abc725fbc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "507356ab-8fd3-41f8-8c9a-877ca332c711" ], - "x-ms-correlation-request-id": [ "507356ab-8fd3-41f8-8c9a-877ca332c711" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185103Z:507356ab-8fd3-41f8-8c9a-877ca332c711" ], + "x-ms-request-id": [ "b2397bad-4372-408a-8efa-5ac9c8538246" ], + "x-ms-correlation-request-id": [ "b2397bad-4372-408a-8efa-5ac9c8538246" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001604Z:b2397bad-4372-408a-8efa-5ac9c8538246" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2736ED047194EE695E2E051D631978B Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:02Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3BC9A8978F0A4E319142D8B31F69D270 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "589" ], - "x-ms-client-request-id": [ "3e104cda-936c-4450-b2ba-a65d0433cd19" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "d478eb2d-1188-4274-9388-55b615899b92" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1748,16 +1703,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "581f03b9-25b2-4c53-a532-add804da2703" ], + "x-ms-request-id": [ "abdbd6d5-d54d-43f3-8e3a-eab65d80b492" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e335d32f-ee63-4b29-a733-4760b2a81eff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7069aef5-7c0a-4eee-9099-738b73f5762c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1a36fbf5-867c-45ea-920b-4196b6d17efd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185103Z:1a36fbf5-867c-45ea-920b-4196b6d17efd" ], + "x-ms-correlation-request-id": [ "e797b2c6-1101-4e84-9463-aade21e7d0aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001604Z:e797b2c6-1101-4e84-9463-aade21e7d0aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38E1936DCC894DA893E0789E339885FB Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44345F80E1454FACA4E88F0AD9BAC8CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1772,7 +1727,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1787,18 +1742,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "573af1a1-3b13-40d9-8917-d4d424bc9927" ], + "x-ms-request-id": [ "7f9df22d-e3d7-4182-952c-1763d30c4118" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/81e0852f-ca2f-45ea-876f-65f4880b18bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c6de9229-d9e0-4f2e-a755-e14a82fbe997" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0e2b1846-4798-4146-882e-5ac5be1697ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185103Z:0e2b1846-4798-4146-882e-5ac5be1697ec" ], + "x-ms-correlation-request-id": [ "63d508ef-2b1a-444f-9b11-0ed9e9d24eba" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001605Z:63d508ef-2b1a-444f-9b11-0ed9e9d24eba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E07ED3ED727D445995A10B22DD9EFA55 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7881354437E45C695F3035BE2A19107 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1816,12 +1771,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "591" ], - "x-ms-client-request-id": [ "2961f959-edd4-48aa-8e9a-9a48846d254e" ], + "x-ms-unique-id": [ "205" ], + "x-ms-client-request-id": [ "f56d7ac5-5082-4606-884b-35e9ae2e0e99" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1833,25 +1788,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eeefcc76-3d34-4d6f-8a29-452e1d41bd68" ], + "x-ms-request-id": [ "9151a41f-6519-4675-be50-348de076d9f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f1a90cff-211a-4af4-9911-a091b2398dcb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a50f18c3-6305-4473-8ede-c4b610ce5fdb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eede8092-7f93-41a1-ae53-ea05db4f1ac5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185103Z:eede8092-7f93-41a1-ae53-ea05db4f1ac5" ], + "x-ms-correlation-request-id": [ "f0298b34-3ebc-4fff-a9d9-c7b41b6843b8" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001605Z:f0298b34-3ebc-4fff-a9d9-c7b41b6843b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BED912C8782145DA8EC5CCE70C3CD4AB Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8CF5D3FAA8F421D85D4D987ADF931CA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36864" ], + "Content-Length": [ "37708" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -1862,12 +1817,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "592" ], - "x-ms-client-request-id": [ "18837940-6d74-409e-bc87-d66d848ed78c" ], + "x-ms-unique-id": [ "206" ], + "x-ms-client-request-id": [ "149e1bc0-ef6a-44d1-9aee-d0f8872ea756" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1878,40 +1833,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3551e82f-c03a-4000-a168-3a8f02644dc7", "9b5d577e-b4b5-451d-b03d-fd4b80eaf388", "57209370-1f4a-47de-9efd-8e65f402d05c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "a323c1b1-903f-4265-b2f7-ab1fa016f562" ], - "x-ms-correlation-request-id": [ "a323c1b1-903f-4265-b2f7-ab1fa016f562" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185104Z:a323c1b1-903f-4265-b2f7-ab1fa016f562" ], + "x-ms-original-request-ids": [ "1ed0f4de-cb55-41cb-9a8c-8c41c0ef3a53", "91417e8c-2ab3-4e42-9fab-62e5fa1caaef", "35a26166-d086-4b51-b851-050828ce9bfb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "4a9ebb6d-8127-436e-994a-ac77b7bd5c19" ], + "x-ms-correlation-request-id": [ "4a9ebb6d-8127-436e-994a-ac77b7bd5c19" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001606Z:4a9ebb6d-8127-436e-994a-ac77b7bd5c19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1559A058D25842E595FA22C5DE9F9AF0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E8B53AA76AD41C2AE88FC42DD8E8671 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "593" ], - "x-ms-client-request-id": [ "5282eacc-8417-476d-aab1-f6b1e756d514" ], + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "8488ada0-09f4-410b-8ad9-17e557eab69f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1922,16 +1877,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "aac2cc1c-cea9-408b-8b28-d0667df1b814" ], + "x-ms-request-id": [ "dc1ed617-4cca-4c59-9b98-401f0632e761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d45b8eb8-63ef-48d0-a446-d1d572e918af" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bed005a1-35d2-4da0-b685-4155be626793" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "238c439c-9d37-41fc-ae9d-5f854d4a9fd4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185104Z:238c439c-9d37-41fc-ae9d-5f854d4a9fd4" ], + "x-ms-correlation-request-id": [ "ad1929bd-917b-4a87-81bd-a606a87092d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001606Z:ad1929bd-917b-4a87-81bd-a606a87092d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02804582C31D43FB803913CE9D1F0A1D Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 415966D8B8B04B1DB54056A73C342696 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:06Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1942,11 +1897,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1961,18 +1916,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c69054e7-fdc1-45c0-b612-def8f2581ad1" ], + "x-ms-request-id": [ "90a76ad0-7bc2-4312-a34d-add28b24b050" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a88e138e-b186-4776-bb73-f97157864946" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/abeee47f-853f-43a9-b583-7786914ce0bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4f5a904e-1fbd-4a47-b2b1-86c7832a62c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185105Z:4f5a904e-1fbd-4a47-b2b1-86c7832a62c5" ], + "x-ms-correlation-request-id": [ "34b5788b-e726-4012-a430-1980c91412b4" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001606Z:34b5788b-e726-4012-a430-1980c91412b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 098568A21442464AB6689D1B2818DB4F Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F97A8093A3854CF886A0EFDEBDD5A9A9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:06Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1983,11 +1938,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2002,18 +1957,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8e087fb-9d3d-489a-bcb7-4c57fa388db9" ], + "x-ms-request-id": [ "fe3f4e40-adeb-47f7-9270-d867c71d836d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/981c90e6-9462-4a5a-b963-33c3f77c99f2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "75e4a59c-9ef2-4c1c-b65f-84c4b03ca281" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185105Z:75e4a59c-9ef2-4c1c-b65f-84c4b03ca281" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c7e5b94c-72f9-4da3-8307-09e1008386ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bcd0c073-fde6-4961-ac08-fce05dbcac91" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001607Z:bcd0c073-fde6-4961-ac08-fce05dbcac91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B9B0742867A4640B1659E78EE986DEC Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B5253FBD6D34173B769D2129F4165AA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:07Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2028,7 +1983,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2043,18 +1998,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b760c8f-cb0f-4a6c-93a7-3ab1709bfac3" ], + "x-ms-request-id": [ "03562ec7-61e1-4754-af53-034e2ccb002d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5c94aaf8-c2a9-4c06-90c1-ff119803b246" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/d5be8407-eb74-4fbe-be35-ace22be6b68c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c3e1bc2-7f31-4818-bbb9-771615feddfb" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185105Z:6c3e1bc2-7f31-4818-bbb9-771615feddfb" ], + "x-ms-correlation-request-id": [ "84ea63af-a3aa-4f23-ba4f-99949f109281" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001607Z:84ea63af-a3aa-4f23-ba4f-99949f109281" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 945A82C59BE24EAC8D59210D259840ED Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14DEC91E33DE44EE9BE483F8A38BEABE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:07Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2069,7 +2024,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Python-s1yaf62r9d\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-7mrsp6yjac\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2084,18 +2039,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9bd45a09-ea8f-41bc-846f-b1fc794c0cd4" ], + "x-ms-request-id": [ "ab1c3225-b7fd-4682-8af2-7ee79063e757" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/42c41a1b-ed6c-40a4-9d8a-b8e81e651357" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1857a37f-d86b-4304-9ee6-a8da5d5a6851" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4eeaa7c2-6ddd-4258-806b-aa0b5eaa2569" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185106Z:4eeaa7c2-6ddd-4258-806b-aa0b5eaa2569" ], + "x-ms-correlation-request-id": [ "c7e928ee-f434-4bc0-bd5a-d1d8a219e28e" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001608Z:c7e928ee-f434-4bc0-bd5a-d1d8a219e28e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FB388B6CC304868AEE16D3312A54B1D Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B80F2C4967B14FCF935A674669226398 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:07Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2113,12 +2068,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "598" ], - "x-ms-client-request-id": [ "a0a10551-6c31-4587-8ea6-14b6c0cfa561" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "a88099ec-e6d7-4b3c-bca6-a5a7f22fa01e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2129,40 +2084,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e0891b96-a2ff-4ce2-af6b-7b04c90c4dc0", "a64b35f5-f3d4-422d-83f8-95811decf9b0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "274c2433-e3eb-4cc8-8e27-e5e0a59ea848" ], - "x-ms-correlation-request-id": [ "274c2433-e3eb-4cc8-8e27-e5e0a59ea848" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185107Z:274c2433-e3eb-4cc8-8e27-e5e0a59ea848" ], + "x-ms-original-request-ids": [ "d2ad4e28-b715-4555-a870-18d9464c35ba", "d1a363c7-2930-4e27-bbd1-cd3ce3fc9e8e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-request-id": [ "3fc66558-ee7c-466e-9de9-a7edc5bcda8e" ], + "x-ms-correlation-request-id": [ "3fc66558-ee7c-466e-9de9-a7edc5bcda8e" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001609Z:3fc66558-ee7c-466e-9de9-a7edc5bcda8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F0E943D40B44AB7AE25C278FA139A3F Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7099B95B479D47EE98CCE38DD787CC51 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10323" ], + "Content-Length": [ "8766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "599" ], - "x-ms-client-request-id": [ "545e472b-a552-4eb4-9d42-21de6d6be4a8" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "c00e8187-c69f-460c-bd14-9c3bca20a297" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2174,40 +2129,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b5b7195-da0f-477a-a235-6c7d3897ec0b" ], + "x-ms-request-id": [ "0ade2b56-d820-4f0b-ab91-e795516b1492" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08b2272f-4dd6-405b-9066-3408aa9487ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185107Z:08b2272f-4dd6-405b-9066-3408aa9487ab" ], + "x-ms-correlation-request-id": [ "e59c5b78-5957-436f-b524-386e6e89e9ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:e59c5b78-5957-436f-b524-386e6e89e9ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DAD546DAA78C460DBE5C3DD5AE8CA88F Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1CE927E10F8D4EF79AEE9031371AAFD2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "600" ], - "x-ms-client-request-id": [ "e5f57d9d-a1c3-414d-8d8c-c4eac9011d6f" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "5023148f-6730-4d07-a7f6-bd9cab791ac0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2219,40 +2174,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f3d8aca-0bb1-4681-9572-fe147f8c0a3d" ], + "x-ms-request-id": [ "fcca214e-85d7-4321-af2a-6c57ffa5b3bb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8d072f25-fb22-4fe5-af0a-3d33178391b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185107Z:8d072f25-fb22-4fe5-af0a-3d33178391b9" ], + "x-ms-correlation-request-id": [ "bacbc15f-3ad2-44a8-86ea-aae5729f6140" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:bacbc15f-3ad2-44a8-86ea-aae5729f6140" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2AC5D0DC76E47EB98701240BD0627C1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4EC1931CD89A47AC9EDB13B88DCD6036 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "601" ], - "x-ms-client-request-id": [ "8164fda0-7fc2-4d38-9b66-ef9a0cc13c1e" ], + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "693972ad-17c0-41a6-85bd-fdcc0a42156e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2264,40 +2219,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69112b96-48d0-4764-a108-773149836bc2" ], + "x-ms-request-id": [ "1913a831-d2fa-4de8-94da-a747abab267c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9dffee39-5930-4db0-b837-0ce824d38037" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185107Z:9dffee39-5930-4db0-b837-0ce824d38037" ], + "x-ms-correlation-request-id": [ "4fa0699e-c240-476b-a0f5-644f4293f123" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:4fa0699e-c240-476b-a0f5-644f4293f123" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BA151F5364834E55B426F8547EEF177B Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1C356511B584A018DFD4A15CE63FFA9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "602" ], - "x-ms-client-request-id": [ "bbf86ea0-5b3f-456d-af23-e057f7700419" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "4d8a0990-585e-410d-ac56-8b663ed02206" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2309,85 +2264,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fcf0ccb7-6eb5-4373-80c8-1c9c5a6de466" ], + "x-ms-request-id": [ "226cd336-adf0-462b-8a02-ed115e84e541" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4db5225d-f8fd-4163-a5c6-2e988f2f089a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185108Z:4db5225d-f8fd-4163-a5c6-2e988f2f089a" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA0F1CF7D8FC4892865781CB5674E9DC Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1819" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "603" ], - "x-ms-client-request-id": [ "700e4492-b86c-4ade-bab4-8c642718512d" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "191719c1-5cee-47ed-9db2-93a9745037a0" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1f8463c1-9bb7-4044-a0d2-88806baff06f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185108Z:1f8463c1-9bb7-4044-a0d2-88806baff06f" ], + "x-ms-correlation-request-id": [ "ec69830f-46dd-4a74-b229-d70998dd28fc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:ec69830f-46dd-4a74-b229-d70998dd28fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2421C6A3A7404DC59A80F7149DB48BAA Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F8E9C23F6474BB2824890406AC24261 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "604" ], - "x-ms-client-request-id": [ "1aaf8406-a842-4344-b489-7293c964db76" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "94ee7512-c887-42a8-baf9-98b2f20b44c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2399,40 +2309,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9b1874dd-b855-4e8d-b60a-97167ce5df85" ], + "x-ms-request-id": [ "3c6e4cd4-064d-4148-b69e-397efd9e1cb6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "05993a07-3a66-49b2-a90b-7b39dd0cdc31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185109Z:05993a07-3a66-49b2-a90b-7b39dd0cdc31" ], + "x-ms-correlation-request-id": [ "0bc5d55f-f629-4f47-bee5-d3c301a7ec45" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T001610Z:0bc5d55f-f629-4f47-bee5-d3c301a7ec45" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5223B313B5714D14A0427C5AA961EA5C Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1D4314B66A544AD8A02CC54E438D3BE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1696" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "605" ], - "x-ms-client-request-id": [ "ba662faf-d7b2-4f83-b19c-f57cba3fb819" ], + "x-ms-unique-id": [ "218" ], + "x-ms-client-request-id": [ "2519a0ec-f13a-4301-be9d-afe1c9e161fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2443,40 +2353,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "dc173ede-7ac7-4e9c-82d0-6b18b927988d", "4a7f6574-818f-40a5-86ca-f31da2d230c4", "10be8a15-1346-4386-a0fb-99bd1e5499aa" ], + "x-ms-original-request-ids": [ "f4b4fccb-f42a-4029-b595-d92a4ebc7434", "2b2afbee-50ce-494e-b81a-b2ae85dbc1cd", "9f65e4a1-dfdc-4ae8-8eaa-0c6ec558925b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "76476938-78ad-4bb4-ac3d-2bdd841e9b8c" ], - "x-ms-correlation-request-id": [ "76476938-78ad-4bb4-ac3d-2bdd841e9b8c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T185110Z:76476938-78ad-4bb4-ac3d-2bdd841e9b8c" ], + "x-ms-request-id": [ "1261511f-501e-4c8a-be40-12bfb38a4c70" ], + "x-ms-correlation-request-id": [ "1261511f-501e-4c8a-be40-12bfb38a4c70" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001610Z:1261511f-501e-4c8a-be40-12bfb38a4c70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98AA4C8676EC498D97CFE80A5212B5BF Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F8BF3241114483EBE320747DBFB9F28 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "606" ], - "x-ms-client-request-id": [ "fe2d3952-187c-4e25-bf7d-985effdd63d6" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "c19caafc-2f95-4ecd-bc71-81b4049788d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2487,16 +2397,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fd61cde6-c5ef-4e10-ac51-9d1935cecd69" ], + "x-ms-request-id": [ "0cc1db0a-f9b0-4a60-83b5-ab8cd82f28a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/efb7efd8-1cd4-4336-9f05-4bb4f0dc16d0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff02b341-2e5d-49c3-b29e-38e3d4aac51f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "10e8b15f-68b1-48cf-b7c1-4373023678e7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185110Z:10e8b15f-68b1-48cf-b7c1-4373023678e7" ], + "x-ms-correlation-request-id": [ "e2bcd2ed-b94e-4e04-86e8-74ee7373210f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001611Z:e2bcd2ed-b94e-4e04-86e8-74ee7373210f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40D891DA8BD34094A4E5ACEF7345EB22 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CE5AF1D1ED344C0B9C7DBDC26ACD404 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -2507,10 +2417,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Insights/components/Functions-Python-s1yaf62r9d?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-Python-7mrsp6yjac?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Insights/components/Functions-Python-s1yaf62r9d?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-Python-7mrsp6yjac?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -2530,30 +2440,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff7d9545-3338-419c-9247-22a4b74d3744" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "1de93d72-8f08-4a24-9b6f-0cdb54f6adb7" ], - "x-ms-correlation-request-id": [ "1de93d72-8f08-4a24-9b6f-0cdb54f6adb7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185116Z:1de93d72-8f08-4a24-9b6f-0cdb54f6adb7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/898df8a9-775c-4da5-b035-0568605579a6" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "3dd4e15d-b893-4ac7-9295-4fe6f70d7ede" ], + "x-ms-correlation-request-id": [ "3dd4e15d-b893-4ac7-9295-4fe6f70d7ede" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001617Z:3dd4e15d-b893-4ac7-9295-4fe6f70d7ede" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A384EF6BED7144E784D3B321AD0BD680 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6DE877C412F4657AA44887F9CAE9363 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1633" ], + "Content-Length": [ "1634" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a200ce7d-0000-0300-0000-691b6ea40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/microsoft.insights/components/Functions-Python-s1yaf62r9d\",\r\n \"name\": \"Functions-Python-s1yaf62r9d\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-s1yaf62r9d\",\r\n \"AppId\": \"ec8a3810-1b42-411e-bc07-32aebe917787\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"af4ca839-b493-4193-a18c-ad82b3528fb7\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-s1yaf62r9d\",\r\n \"CreationDate\": \"2025-11-17T18:51:11.113167+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-s1yaf62r9d_ec8a3810-1b42-411e-bc07-32aebe917787_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-s1yaf62r9d-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202f148-0000-0300-0000-69c47ad10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-Python-7mrsp6yjac\",\r\n \"name\": \"Functions-Python-7mrsp6yjac\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-7mrsp6yjac\",\r\n \"AppId\": \"109dd349-0540-4220-a333-02741ec50c53\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"29cd09e4-f396-4270-9b30-047a14841e5e\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-7mrsp6yjac\",\r\n \"CreationDate\": \"2026-03-26T00:16:11.6046114+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-7mrsp6yjac_109dd349-0540-4220-a333-02741ec50c53_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-7mrsp6yjac-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.13\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"python\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-s1yaf62r9d\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.13\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"python\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-7mrsp6yjac\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2567,43 +2477,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F328A2CE60\"" ], + "ETag": [ "\"1DCBCB5C50342E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48109afb-5144-4586-a1e0-80104ffe6ea9" ], + "x-ms-request-id": [ "64637fe4-ee3e-401c-b48d-4ec8f343fd81" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2345ace1-80e4-4824-b8d9-e38ed9cfa4de" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/436d5546-faf1-4a30-ae8f-652001daf044" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "7d4df2e8-b473-41f3-a360-1d344a516402" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185138Z:7d4df2e8-b473-41f3-a360-1d344a516402" ], + "x-ms-correlation-request-id": [ "fa30de73-b30a-4a5f-a7ab-3785c53ffb9b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001639Z:fa30de73-b30a-4a5f-a7ab-3785c53ffb9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6E1B752774474F229CB51E693926D106 Ref B: MWH011020807031 Ref C: 2025-11-17T18:51:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:51:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55B4E21D22F845928216293BE07DE6E2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:16:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8402" ], + "Content-Length": [ "8660" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-s1yaf62r9d\",\"state\":\"Running\",\"hostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Python-s1yaf62r9d\",\"repositorySiteName\":\"Functions-Python-s1yaf62r9d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\",\"functions-python-s1yaf62r9d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-s1yaf62r9d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:51:17.8533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-s1yaf62r9d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-s1yaf62r9d\\\\$Functions-Python-s1yaf62r9d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:18.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "609" ], - "x-ms-client-request-id": [ "db0cb22e-7eb0-47cd-bc0a-e0aff22d744a" ], + "x-ms-unique-id": [ "222" ], + "x-ms-client-request-id": [ "b075567b-e8ae-42d5-a689-f1f01d2b7d91" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -2613,42 +2523,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F334919DA0\"" ], + "ETag": [ "1DCBCB5D0BBA5D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de15e535-d736-49c5-bda2-7327678e4d84" ], + "x-ms-request-id": [ "cc81cc5c-dd38-444b-85f5-f04f8b264b31" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "091b3e28-1d0c-4e02-8195-ce877fdff964" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185209Z:091b3e28-1d0c-4e02-8195-ce877fdff964" ], + "x-ms-correlation-request-id": [ "251b205d-072b-4779-b374-635b0dc65897" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:251b205d-072b-4779-b374-635b0dc65897" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 50B9705F3D83448EB70CB9A602070179 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 730A0D301E5E4DC1A38BF0419131E36B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-s1yaf62r9d\",\"state\":\"Running\",\"hostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Python-s1yaf62r9d\",\"repositorySiteName\":\"Functions-Python-s1yaf62r9d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\",\"functions-python-s1yaf62r9d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-s1yaf62r9d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:51:38.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-s1yaf62r9d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-s1yaf62r9d\\\\$Functions-Python-s1yaf62r9d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "610" ], - "x-ms-client-request-id": [ "feb77f3c-e49d-4650-848c-900f0fafc8a4" ], + "x-ms-unique-id": [ "223" ], + "x-ms-client-request-id": [ "c7f86485-b47b-4d59-afdd-16e9383f0a15" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2659,42 +2569,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F334919DA0\"" ], + "ETag": [ "1DCBCB5D0BBA5D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d59ba105-eec3-4a8f-a392-fbd43b11ce1c" ], + "x-ms-request-id": [ "bdeebfb0-304e-48fb-8cf0-1c895c59a305" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d1fb2e84-8637-40a6-bde2-e446b06945e7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185211Z:d1fb2e84-8637-40a6-bde2-e446b06945e7" ], + "x-ms-correlation-request-id": [ "34c4af5e-c769-4a91-8d88-a5a8b7c2c7d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:34c4af5e-c769-4a91-8d88-a5a8b7c2c7d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63219D10B160440ABC28576E6A849705 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86A54A9C6B0940DB9121DA42741C980A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-s1yaf62r9d\",\"state\":\"Running\",\"hostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Python-s1yaf62r9d\",\"repositorySiteName\":\"Functions-Python-s1yaf62r9d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\",\"functions-python-s1yaf62r9d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-s1yaf62r9d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:51:38.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-s1yaf62r9d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-s1yaf62r9d\\\\$Functions-Python-s1yaf62r9d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "611" ], - "x-ms-client-request-id": [ "4210a74d-9a01-42dc-9353-570e9256ef1a" ], + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "d2fa8b94-65f6-4933-adca-a3ef4715bb3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2706,40 +2616,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01112ef8-608c-4945-8483-8c598f43ce1f" ], + "x-ms-request-id": [ "0bdcce64-e209-4f3d-955f-969525ae65bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5b8f0ff-70dc-4d99-9115-281ef6d65234" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e85b958-a7ee-487d-ba17-234bf72f59e2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "12e2e281-bf0b-44d7-9a2b-85becf404955" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185211Z:12e2e281-bf0b-44d7-9a2b-85becf404955" ], + "x-ms-correlation-request-id": [ "ca385f14-c48c-4013-ac0c-a1aae4badcbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:ca385f14-c48c-4013-ac0c-a1aae4badcbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 57A64C5B5AC042D49036C1B7EB63C9FC Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64F2F7DF58774F7596857E1E1050B2C5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-s1yaf62r9d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "612" ], - "x-ms-client-request-id": [ "c70e6d41-bd6a-4883-81f8-ca68167a01e9" ], + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "0f37ac18-52c5-46d7-bb5d-78418819c16e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2751,41 +2661,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bca98313-105b-45c5-ad76-6d9958787148" ], + "x-ms-request-id": [ "4e530201-b371-4361-9a54-d7a840892082" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc39fd80-6a2a-4c88-8b57-c1ea790e963c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92a0cd53-c19e-43f7-9913-908d8ac5283f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5e3abc58-f745-45f5-b736-b8ba32abf5c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185211Z:5e3abc58-f745-45f5-b736-b8ba32abf5c6" ], + "x-ms-correlation-request-id": [ "889d0be2-4053-4374-a888-2427d3c9e51a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:889d0be2-4053-4374-a888-2427d3c9e51a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B42C37C83A747ABBDC4E2A38895B566 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7D7263D43938479D9E430F4F1A744EF5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "613" ], - "x-ms-client-request-id": [ "f4869eec-ef9a-4f3a-bfde-29e69e651a31" ], + "x-ms-unique-id": [ "226" ], + "x-ms-client-request-id": [ "4109d249-ec85-4d2f-91df-d527807095ef" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2797,40 +2707,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "647358bb-e36c-4a18-923e-d558a2fb0f33" ], + "x-ms-request-id": [ "529c0534-bf7e-4a6a-bfee-84667f6d1817" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58eae9eb-8044-4492-839f-4d9cf8f65100" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18fb5b2c-8ad3-4c99-837d-1c9bd2f99d28" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "07413338-61d1-4534-9936-b6149c4eaf3b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185211Z:07413338-61d1-4534-9936-b6149c4eaf3b" ], + "x-ms-correlation-request-id": [ "2593c298-7b84-4a40-80c4-0b37fddc77b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:2593c298-7b84-4a40-80c4-0b37fddc77b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5EBD190FFEA944A69CEAE83F47E63042 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CE2C80E175D46EDB7D7AE521173226C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-s1yaf62r9d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "614" ], - "x-ms-client-request-id": [ "8b0e885c-68b2-445b-a756-5172496cbb4e" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "6d05a886-8b8e-495d-9bce-ea184d5a3600" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2841,42 +2751,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F334919DA0\"" ], + "ETag": [ "1DCBCB5D0BBA5D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "52cc81ce-8db1-4be6-8526-40342d824d7b" ], + "x-ms-request-id": [ "8eb76be9-ccd5-4a44-899f-8a585c0f539a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4341ef83-6df4-4828-88e1-f99469ce7e20" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185212Z:4341ef83-6df4-4828-88e1-f99469ce7e20" ], + "x-ms-correlation-request-id": [ "3790a057-bb16-46aa-8353-523187b4b8ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:3790a057-bb16-46aa-8353-523187b4b8ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8F04B6B8FE24548AC09B0655FD3C9BE Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82E55EF03C9942E7B395EDA245085AEB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-s1yaf62r9d\",\"state\":\"Running\",\"hostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Python-s1yaf62r9d\",\"repositorySiteName\":\"Functions-Python-s1yaf62r9d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\",\"functions-python-s1yaf62r9d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-s1yaf62r9d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:51:38.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-s1yaf62r9d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-s1yaf62r9d\\\\$Functions-Python-s1yaf62r9d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "615" ], - "x-ms-client-request-id": [ "989fa7f3-6233-49d4-adfa-ba9a7e4e9f88" ], + "x-ms-unique-id": [ "228" ], + "x-ms-client-request-id": [ "6a13867a-fc26-49fe-a0ca-796c7a29199a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2888,40 +2798,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb9f3cd5-5308-46da-ae7e-9bf478f3eb4b" ], + "x-ms-request-id": [ "f9bd2cae-2485-4ed3-b975-2e286dd84444" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3e7ead8-7170-4ea8-913d-9061272a7189" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9bb4ae20-24ff-429b-93be-1d602fc9d5af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185212Z:9bb4ae20-24ff-429b-93be-1d602fc9d5af" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c6f151f-8f56-4bb8-9ede-e4797fa0b9c6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "20a8cf7c-81d7-4631-b37a-b9906937622f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:20a8cf7c-81d7-4631-b37a-b9906937622f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3ED3BEC666E640DBB646AAFF15AF5671 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66C62799C34D4B3BA8CB563559C80259 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-s1yaf62r9d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "616" ], - "x-ms-client-request-id": [ "1cca6011-167f-4a62-b6ab-524f82e2bb74" ], + "x-ms-unique-id": [ "229" ], + "x-ms-client-request-id": [ "0eaf3415-a023-45a6-82e6-4f0121dc0580" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2933,41 +2843,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4312e459-d754-4ee2-882d-710ff37d1831" ], + "x-ms-request-id": [ "797ec05c-29ff-4b8e-aa86-16bf21a25b30" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5df1be2a-6180-4468-9d1c-3434852eef0a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1fb7f894-1161-426e-9eae-910366967fec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185212Z:1fb7f894-1161-426e-9eae-910366967fec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0987734-4ff3-4100-ad06-536ba744e6ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f60880fe-0365-43bb-bc93-f08857413003" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:f60880fe-0365-43bb-bc93-f08857413003" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21350E46D083492D9DBE51E2643EA5B7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1DA9EFF074AE4D29AFC7F1CB48368209 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "617" ], - "x-ms-client-request-id": [ "61c3e51b-7748-4320-aacc-c718e16b958e" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "222797be-b9a3-422f-b231-324811f0e238" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2978,42 +2888,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F334919DA0\"" ], + "ETag": [ "1DCBCB5D0BBA5D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01439e83-8175-4b43-92ff-6b3692e0aaa9" ], + "x-ms-request-id": [ "6d7b4bce-f25c-420a-8bfa-a64a157ce29a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "60243c4e-7b6f-4f2c-ae46-515b38d840c2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185213Z:60243c4e-7b6f-4f2c-ae46-515b38d840c2" ], + "x-ms-correlation-request-id": [ "883bca6e-2a11-4b6b-8a49-c837499b6d47" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:883bca6e-2a11-4b6b-8a49-c837499b6d47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15693EF8583F46AEAE0C30EA403879B1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62106C3FD0B2457282BEF2988C4AD062 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8472" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-s1yaf62r9d\",\"state\":\"Running\",\"hostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Python-s1yaf62r9d\",\"repositorySiteName\":\"Functions-Python-s1yaf62r9d\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-s1yaf62r9d.azurewebsites.net\",\"functions-python-s1yaf62r9d.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-s1yaf62r9d.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:51:38.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-s1yaf62r9d\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Python-s1yaf62r9d\\\\$Functions-Python-s1yaf62r9d\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-python-s1yaf62r9d.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "618" ], - "x-ms-client-request-id": [ "72d64719-33ab-45a4-aafc-dbe0051c735c" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "06c8033d-16a5-426f-94c2-aa68d4e099e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3025,40 +2935,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d507c5f0-8073-4b0b-936c-a47e40fe0bc5" ], + "x-ms-request-id": [ "733a5577-a030-4a86-b0a6-e47ca74370eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/892e6cf2-390e-4f72-9c99-cda385f09bf4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/efe51dbb-b56f-487b-b81c-a895a183747d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "08e2abd6-bf26-44d4-9709-00c9e4501c8f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185213Z:08e2abd6-bf26-44d4-9709-00c9e4501c8f" ], + "x-ms-correlation-request-id": [ "951cae2c-ceae-4b8e-a197-48b37328d85c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:951cae2c-ceae-4b8e-a197-48b37328d85c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B61731D28B14500B7A8F96398976E09 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E90A9F80DE1435BBD0D43A811D93D3D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-s1yaf62r9d\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "04cb999e-81b5-432e-831c-dd86c7aa712f" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "5ec9e4ad-02b9-403d-bdc3-560b0e22497a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3070,41 +2980,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ff0b37b-6d3f-4635-a2bb-3d16648e16d4" ], + "x-ms-request-id": [ "7c2e4359-7cca-43ee-b77b-df018779030e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4f0ce89-00fe-45b3-bc57-516054e53b88" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0576067-3aef-41d3-91f2-eab7f75a24c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "469bbc6a-8427-4bee-8512-7e11be000f1f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185213Z:469bbc6a-8427-4bee-8512-7e11be000f1f" ], + "x-ms-correlation-request-id": [ "6524ce71-e68d-4b1e-b8f6-5413f64559a9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:6524ce71-e68d-4b1e-b8f6-5413f64559a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1ABFB9D022314D45AFDB3A8D763FF981 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8091D98988CA441AA9D8EB9940FE6AFA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d/config/web\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "620" ], - "x-ms-client-request-id": [ "152b09c3-476f-4618-b03b-5a5b68b18dca" ], + "x-ms-unique-id": [ "233" ], + "x-ms-client-request-id": [ "75efd022-d360-456a-a779-6a4658b18a89" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3116,40 +3026,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a79bea8f-a9dd-45cf-942a-9be3c99acc8f" ], + "x-ms-request-id": [ "06648a34-d75c-49c3-a9dc-18acf6357a96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "03a94cb4-b172-4bbc-beed-684e34fb3434" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185214Z:03a94cb4-b172-4bbc-beed-684e34fb3434" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "18abab99-4f61-41de-9041-e7f12c85f19c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:18abab99-4f61-41de-9041-e7f12c85f19c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76A0FF5A214044229595C282A0D77E61 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9EF2AD8C04C470B8EBD085901D40354 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Python-s1yaf62r9d?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "621" ], - "x-ms-client-request-id": [ "aed568aa-86aa-490f-b248-4b9333a97564" ], + "x-ms-unique-id": [ "234" ], + "x-ms-client-request-id": [ "1da8c060-d373-4928-878e-7e708901fa8b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3160,20 +3070,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F334919DA0\"" ], + "ETag": [ "\"1DCBCB5D0BBA5D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6085e7be-66ea-4399-9f76-5d75d3df2a67" ], + "x-ms-request-id": [ "270cee1c-f6bb-46b9-9853-5b60b7e3b0c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed3f59c9-10d1-41d0-9702-387f721c0367" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/78da1bb3-92cf-477a-a089-5853594fa7bf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c5e2a3ee-72a7-4dd6-8d52-6a4a57dac0ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185221Z:c5e2a3ee-72a7-4dd6-8d52-6a4a57dac0ca" ], + "x-ms-correlation-request-id": [ "d3cdcf11-6763-4be1-b7ae-f256daae1ea3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001719Z:d3cdcf11-6763-4be1-b7ae-f256daae1ea3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81F8C2A7CF4340AD889187AA8173026F Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 525AC54DA2D44ACB8019FA72D1F8AFDC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3187,7 +3097,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3202,18 +3112,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22f80873-7f21-4b57-bdc0-fa9b31620436" ], + "x-ms-request-id": [ "08fa7105-c25e-4da7-b323-4177394fd0a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7f51325-ede8-4e7e-955b-c8ac11682fe1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/88bb1c7d-2d35-4691-a978-d8d41828196b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fa7eda59-4929-4cd1-8c1c-3d773d378f7f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185222Z:fa7eda59-4929-4cd1-8c1c-3d773d378f7f" ], + "x-ms-correlation-request-id": [ "65796f42-9212-4f5a-9fad-38e73fe68363" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001720Z:65796f42-9212-4f5a-9fad-38e73fe68363" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56671460D79644C9B875DE1464EC7987 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EFFB939FB21B4B1B8B049BC4196D1F19 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3231,12 +3141,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "623" ], - "x-ms-client-request-id": [ "ea17555a-bba3-4344-84ec-2fba996e807c" ], + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "d57e534e-07d5-44a0-a476-742a1198cbd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3248,25 +3158,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07a3c433-1fbf-4d8d-892a-251f32bf597a" ], + "x-ms-request-id": [ "dbd82b5c-a011-45fc-a4a1-ef406969d494" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a7018053-bd94-46b1-b6cd-f62b25f712b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/0c98da0b-21c3-471e-96bc-e425989dc675" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9032bf9c-fae4-4f42-98d6-ae49846f51e5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185222Z:9032bf9c-fae4-4f42-98d6-ae49846f51e5" ], + "x-ms-correlation-request-id": [ "48781627-545a-4ea3-b30f-0836faafa557" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001720Z:48781627-545a-4ea3-b30f-0836faafa557" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2EBF54E0E58543829E1661C4562192F5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1EA279BAD5E74C19BEC9CFE1BE88D526 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36864" ], + "Content-Length": [ "37708" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -3277,12 +3187,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "624" ], - "x-ms-client-request-id": [ "5899998f-6276-4cc1-bd65-50320c337298" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "562e38ac-ff7d-45fe-8f3d-e2583df6a715" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3293,40 +3203,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "46413eb1-761a-4a4e-8999-db7795974eac", "742ed868-5fda-44b0-8498-73a233dd2f3e", "9336acf7-6273-49f4-829e-92ccc916a867" ], + "x-ms-original-request-ids": [ "df5ebd21-d6fd-4824-8090-a6ed19dd3000", "fba37e9e-ffe7-47ed-beed-799fb83e2cf8", "b80e26ea-07c9-4e8d-b7f0-89c0b0794761" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "60721bda-22c1-470e-bb98-bb95626f6ea5" ], - "x-ms-correlation-request-id": [ "60721bda-22c1-470e-bb98-bb95626f6ea5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185222Z:60721bda-22c1-470e-bb98-bb95626f6ea5" ], + "x-ms-request-id": [ "e1370e22-027f-4abb-a636-9338a7eefcc9" ], + "x-ms-correlation-request-id": [ "e1370e22-027f-4abb-a636-9338a7eefcc9" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001720Z:e1370e22-027f-4abb-a636-9338a7eefcc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1EBB273F50774044B951E0620E4963FD Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB4059DB6CB54199A1977FFB5A7F9080 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "625" ], - "x-ms-client-request-id": [ "0a69197e-a786-4e73-8823-6e8a932f0f6f" ], + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "589bc0e4-1cfe-4509-a6f8-ac0462f4124c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3337,16 +3247,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "02712ac8-f42c-4bc1-9a08-70b89802ac63" ], + "x-ms-request-id": [ "55c6485e-8116-4db7-9805-f304c9dae1d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/39d632c3-95b9-4906-856b-7278870c9c7c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/843b40f7-e3e8-48b1-9d20-31ad4bf59e79" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "94fb57e1-92dc-4bbf-973f-5490df8c4b1f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185222Z:94fb57e1-92dc-4bbf-973f-5490df8c4b1f" ], + "x-ms-correlation-request-id": [ "0f196c60-8e00-4c5d-97cc-909aaa443946" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001721Z:0f196c60-8e00-4c5d-97cc-909aaa443946" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA194B5A789942EC969C2C17919BAA58 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E857FFA641B42598ABC07697C3C032F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -3357,10 +3267,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Insights/components/Functions-PowerShellTest-z7cj05b1wo?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Insights/components/Functions-PowerShellTest-z7cj05b1wo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -3380,30 +3290,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b756892-7434-49cc-ac30-c685f4848b06" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "55a7adf1-cd50-4305-8dc0-f258f3278a6f" ], - "x-ms-correlation-request-id": [ "55a7adf1-cd50-4305-8dc0-f258f3278a6f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185228Z:55a7adf1-cd50-4305-8dc0-f258f3278a6f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ce45212-c478-462b-a738-c8513d5e8677" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "f2ada9de-d319-4bf2-bf31-7cf7c5a784f7" ], + "x-ms-correlation-request-id": [ "f2ada9de-d319-4bf2-bf31-7cf7c5a784f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001727Z:f2ada9de-d319-4bf2-bf31-7cf7c5a784f7" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7CA25908921E4B89A65EB67384FDB404 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:52:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E475B57B56D443CFA1C050CD63365ABA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:17:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a200f38f-0000-0300-0000-691b6eec0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo\",\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"AppId\": \"dd627cd3-387f-4e69-a453-4d516b90a439\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"aa7ff924-cea8-4163-abff-fbd0cab9951c\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"CreationDate\": \"2025-11-17T18:52:23.6372476+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo_dd627cd3-387f-4e69-a453-4d516b90a439_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202a251-0000-0300-0000-69c47b170000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"AppId\": \"db56b95a-3f4f-4eb1-b507-1e5a10443bc4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ed7b9976-dd73-42e2-99e4-89a1f8783d15\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"CreationDate\": \"2026-03-26T00:17:21.5953108+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_db56b95a-3f4f-4eb1-b507-1e5a10443bc4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-z7cj05b1wo\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting1\",\r\n \"value\": \"Value1\"\r\n },\r\n {\r\n \"name\": \"AppSetting2\",\r\n \"value\": \"\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-d90zp8nj5h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AppSetting2\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting1\",\r\n \"value\": \"Value1\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -3417,43 +3327,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3540D4EE0\"" ], + "ETag": [ "\"1DCBCB5F01FF180\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ec80a42-3bb4-42a1-a95a-10e2390ed2b5" ], + "x-ms-request-id": [ "ec613a3d-c2da-4ba4-9f9a-54393da890eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b63f2b08-2c64-42fc-8fb6-be4cc4b0b6e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b9617cf-8b4e-43cc-9f7c-34b81bfc2dab" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "877232a3-f580-4523-8617-f3542fda9b0f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185311Z:877232a3-f580-4523-8617-f3542fda9b0f" ], + "x-ms-correlation-request-id": [ "653d6ff0-dc60-4890-8cd0-40af0d3bd3a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001810Z:653d6ff0-dc60-4890-8cd0-40af0d3bd3a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA348C5851754CF79A1F5E27AECCFE56 Ref B: MWH011020807031 Ref C: 2025-11-17T18:52:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A034D9E140A4C48B28251037B6DDC54 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8960" ], + "Content-Length": [ "8987" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:52:30.3733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:17:30.1666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "628" ], - "x-ms-client-request-id": [ "320f1748-571e-4855-a80e-a1d9bb052f01" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "6d5d3d25-078f-435a-b355-9b52cdd67d42" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -3463,42 +3373,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F36B7C8E2B\"" ], + "ETag": [ "1DCBCB6070C7940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c08493c8-6f9b-43f0-8075-6f37e41fd31e" ], + "x-ms-request-id": [ "36b8984e-8343-4f10-9750-f0b55aa51a4f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ece929b9-e485-4995-8af4-0a3b564e6898" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185341Z:ece929b9-e485-4995-8af4-0a3b564e6898" ], + "x-ms-correlation-request-id": [ "49379a7f-f993-449c-80c7-03937622f25d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001841Z:49379a7f-f993-449c-80c7-03937622f25d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0FFB79798CC4E35BF71BB9901AAAA13 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C2EBACB73434CCEA25F54392E1EA708 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8937" ], + "Content-Length": [ "8781" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:53:10.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "629" ], - "x-ms-client-request-id": [ "efa5c4c5-cf80-4e4d-91fa-9e41f74a1c39" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "71a71025-1f86-4e4f-ac01-c9491594773b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3509,42 +3419,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F36B7C8E2B\"" ], + "ETag": [ "1DCBCB6070C7940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd667971-4340-4194-8eeb-85c71f364928" ], + "x-ms-request-id": [ "c1154f96-cbda-4307-8bbb-c1100523c716" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1fbee58d-30eb-46cc-aa5d-cfa8ef301ae3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185341Z:1fbee58d-30eb-46cc-aa5d-cfa8ef301ae3" ], + "x-ms-correlation-request-id": [ "c32647d1-df5b-420a-98be-9190d5a33cc0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001842Z:c32647d1-df5b-420a-98be-9190d5a33cc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2457F2C33A9245D6948A5CBEB9007219 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63CC80CEB0F44CA99AD351B5F7967F4B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8937" ], + "Content-Length": [ "8781" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:53:10.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "630" ], - "x-ms-client-request-id": [ "4dbeb572-ceb4-433d-87cb-375aa1d49ba2" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "ac9de2c4-1d89-42f7-ab9f-b89f4beef62b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3556,40 +3466,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "354fb9fc-2d48-49ae-a225-5d4fb6900954" ], + "x-ms-request-id": [ "1c9bad68-c662-4918-9929-e312ceecb1e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ba1248b-382b-43dc-9edc-44c0844e15bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c376fe09-5a25-4a23-b2b0-cc94eb8c617f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8b0753b0-418e-4210-80b1-6baeda462bc9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185341Z:8b0753b0-418e-4210-80b1-6baeda462bc9" ], + "x-ms-correlation-request-id": [ "1ce81c44-afac-4912-8724-b3a19ed9cc8a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001842Z:1ce81c44-afac-4912-8724-b3a19ed9cc8a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 94129070B52440048E4C9015D045EE54 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DBF4D5646424586904A32F771E3C980 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "631" ], - "x-ms-client-request-id": [ "4baf0d6c-4c86-47bb-8a2c-55c8c697752c" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "6970032c-da93-4122-8ec9-2011f879b6f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3601,41 +3511,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "826e6fde-c494-49d9-991a-3c6667c18f13" ], + "x-ms-request-id": [ "7638f53b-17e3-4378-82b5-7360044503e4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2a352c9-8b11-4c83-8023-96f8af64575f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/13c4629c-e533-47f3-aa02-b5170341121e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cdae57c2-9c0b-42ca-9e60-0515894c200c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185342Z:cdae57c2-9c0b-42ca-9e60-0515894c200c" ], + "x-ms-correlation-request-id": [ "a0e14de8-b69b-4d0c-8e6c-1d464c4c9c76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001842Z:a0e14de8-b69b-4d0c-8e6c-1d464c4c9c76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB6DFBFDEF18443181B0353CFF1D67DE Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0ACA439ED08846DEB2BFA5193B7057AB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "632" ], - "x-ms-client-request-id": [ "cf5254dd-00f1-4d9e-a53a-b5890f8e5ca3" ], + "x-ms-unique-id": [ "245" ], + "x-ms-client-request-id": [ "f58f93b6-672f-4433-8f19-400bfe53c50f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3647,40 +3557,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2283425-1f65-48bf-a0a5-cc4ad3bbe288" ], + "x-ms-request-id": [ "eb0bea31-645f-4e6f-bfd5-f9458458ceb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb526cde-ac4c-4c12-8b73-a0340ad552dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eebdba9f-21a6-4a67-8632-168311bfd525" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6d976366-8275-4fcc-b12a-5ae42831eb2c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185342Z:6d976366-8275-4fcc-b12a-5ae42831eb2c" ], + "x-ms-correlation-request-id": [ "acd68b64-dfc9-4909-bf49-8e6a780eec29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001843Z:acd68b64-dfc9-4909-bf49-8e6a780eec29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2ABE4D1C55734F1693773BD33A9DE9F3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12ED82404F694698B9DDDE7E34CFC274 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "633" ], - "x-ms-client-request-id": [ "26b031ee-89a4-4d3a-9be6-b7d28db4ff6e" ], + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "2329e9d5-9606-41a2-b0e4-f888b0b50035" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3691,42 +3601,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F36B7C8E2B\"" ], + "ETag": [ "1DCBCB6070C7940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9795f10-aba4-4392-9960-b4330bc13d51" ], + "x-ms-request-id": [ "da5eda9b-03af-4f7e-b2f5-1d257368a86f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "156afae4-4f42-403d-9edf-088e2c36a306" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185343Z:156afae4-4f42-403d-9edf-088e2c36a306" ], + "x-ms-correlation-request-id": [ "c9064644-a6a0-4702-9e1c-fed7e0456e47" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001843Z:c9064644-a6a0-4702-9e1c-fed7e0456e47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A407ED40DD3F4DDA8839167106A96D79 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E49E9DFFCF52486D9572A786C15BDC36 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8937" ], + "Content-Length": [ "8781" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:53:10.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "634" ], - "x-ms-client-request-id": [ "d4272916-f9bc-4f18-b602-669ce616614e" ], + "x-ms-unique-id": [ "247" ], + "x-ms-client-request-id": [ "a3584df1-2959-4fd2-869d-2febd8083444" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3738,40 +3648,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "679fbc94-1b73-46c5-8319-db4ad101bd09" ], + "x-ms-request-id": [ "03e47b29-f826-47fd-97bb-c1fbbe87ab89" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb18f487-9d33-4d62-8fc3-48e8c396bb8c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed8ab0f5-6b34-4078-834b-575a206cc20b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a7fea55f-a480-44db-b654-82eded5c23d0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185343Z:a7fea55f-a480-44db-b654-82eded5c23d0" ], + "x-ms-correlation-request-id": [ "476996b1-7755-480b-b386-139fc271528f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001843Z:476996b1-7755-480b-b386-139fc271528f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0FEBB5C4040546C6B1C85B619C5000A6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80FA2C73B7444D21841F4B21236A15EC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "635" ], - "x-ms-client-request-id": [ "96aa5bb8-d0fa-46f4-821d-0b16f0e2c220" ], + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "43965cbf-f40a-41f8-863c-821257e61140" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3783,41 +3693,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f32f652-0847-4b3d-8d5b-21ca47a7fdfc" ], + "x-ms-request-id": [ "8a5c2558-9e5a-4947-a2f9-98361d8dbc47" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a50e194e-2a33-4136-89af-c9d50cf7b65c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b6cc88da-536b-4da2-83bf-99cd18845cc4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185343Z:b6cc88da-536b-4da2-83bf-99cd18845cc4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8403861e-4cd8-47be-8349-94dd500dc3dd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eb88d103-b3d4-4d1d-b7db-f6305a65c503" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001844Z:eb88d103-b3d4-4d1d-b7db-f6305a65c503" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 333C92F6395F402389B033A6CB601A3D Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CC3878BC6424B9FA5743B39CCBE8270 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "636" ], - "x-ms-client-request-id": [ "f6cd2094-bcf0-4fb9-b836-a81dcbd0ceaa" ], + "x-ms-unique-id": [ "249" ], + "x-ms-client-request-id": [ "f6f493ab-b998-4d56-9147-e336c48aa503" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3828,42 +3738,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F36B7C8E2B\"" ], + "ETag": [ "1DCBCB6070C7940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "864f3c88-f963-4d41-af02-66de9164bce1" ], + "x-ms-request-id": [ "5267004a-7156-49e2-9a17-9215950a2ab7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e6e9ff82-0e8a-40ad-8b36-9838e93682b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185343Z:e6e9ff82-0e8a-40ad-8b36-9838e93682b4" ], + "x-ms-correlation-request-id": [ "51c6b72e-5bed-47e3-9b42-1624a1f114f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001844Z:51c6b72e-5bed-47e3-9b42-1624a1f114f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 041B37DDFD794683BC307E037871514C Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4647F2917B9E40C5AD01F2B953CD3299 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8937" ], + "Content-Length": [ "8781" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:53:10.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "637" ], - "x-ms-client-request-id": [ "9e6548fa-6e0a-4f74-a9ef-d3736881ff0b" ], + "x-ms-unique-id": [ "250" ], + "x-ms-client-request-id": [ "14a5e96a-8cf5-4162-bd86-9bdd0136d699" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3875,40 +3785,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2f1e04f-d2f6-424c-8984-aeb9fc64f787" ], + "x-ms-request-id": [ "98b9c73c-90e4-404d-98e0-040c18a483b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4512307d-15f7-4a89-96c0-ddb38c30ed87" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/38e44b69-f5ae-4c97-8f55-b2647f200fe0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "da42f334-d6ef-4d3a-8b79-9c122d5c9632" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185344Z:da42f334-d6ef-4d3a-8b79-9c122d5c9632" ], + "x-ms-correlation-request-id": [ "74d35490-bc93-4988-8d12-9583f379c8ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001845Z:74d35490-bc93-4988-8d12-9583f379c8ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1AC2ED6539C741EEA760A15F5FB097B8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C57B5EDF57644FF485EE6C8A540D88A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\",\"AppSetting2\":\"\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "638" ], - "x-ms-client-request-id": [ "bafdd091-c1b0-4e4c-b12d-82f200f7c6dd" ], + "x-ms-unique-id": [ "251" ], + "x-ms-client-request-id": [ "daea118f-d7a6-4bf1-9257-7519e6e6656f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3920,41 +3830,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88491c3a-ca77-4042-ac7b-604f117b6633" ], + "x-ms-request-id": [ "22f18149-127c-4431-bb8d-8cac6fec035c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9610c303-261b-4391-a8d2-8dc151882410" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b5618ad7-823a-4490-886b-d339269e6209" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8ab3d44-66a3-4dda-b911-63ba3410670b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185344Z:c8ab3d44-66a3-4dda-b911-63ba3410670b" ], + "x-ms-correlation-request-id": [ "35a4b084-a680-49d3-8170-84aa11e3e7b9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001845Z:35a4b084-a680-49d3-8170-84aa11e3e7b9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB329831E63D489FBE879BA46EDCCFEA Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B40B3E5EF31D4BC993D50E74BBF37621 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "639" ], - "x-ms-client-request-id": [ "e7893bb4-21e2-4cb2-9618-a43962492e90" ], + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "9196126d-9f88-4b87-aca1-626eb6b230c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3966,40 +3876,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74b5e426-4606-4741-b892-6accedce34c9" ], + "x-ms-request-id": [ "67489a8c-1115-44b0-b973-550c97e17c76" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f6eb5c24-6972-45a3-ac9d-d90678ad9a76" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185344Z:f6eb5c24-6972-45a3-ac9d-d90678ad9a76" ], + "x-ms-correlation-request-id": [ "52509aa0-3725-4c2c-b344-6dad303a6b97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001845Z:52509aa0-3725-4c2c-b344-6dad303a6b97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F35872498FA4CE9BAF8381FB4D18318 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 839FBE15C0604705B06AA36BE4460C5F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "640" ], - "x-ms-client-request-id": [ "5d6e1f2f-411a-40d0-b461-20660db598f4" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "50116969-6a04-4313-99b8-2404da7119c0" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4010,20 +3920,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F36B7C8E2B\"" ], + "ETag": [ "\"1DCBCB6070C7940\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "566a39f0-f128-4b03-af61-1d9c866944aa" ], + "x-ms-request-id": [ "ff13d801-a323-4404-8821-cb23782460fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f4028cda-222a-4831-9bf0-4114f83a5419" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94ccd418-d99e-46b2-8e96-96cb9d5b0d64" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "9a15689b-d45d-4321-a451-b2c3b8dd83b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185354Z:9a15689b-d45d-4321-a451-b2c3b8dd83b3" ], + "x-ms-correlation-request-id": [ "6ef4dbda-229b-46f5-8170-b900f99c3590" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001855Z:6ef4dbda-229b-46f5-8170-b900f99c3590" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 661C43B93A79433A9B28EAD7E9696FD0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A97AB18403964737B90B2CF1BABCFBEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4037,7 +3947,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -4052,18 +3962,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91d76d9a-d5b0-4c0a-acdf-d28f2ce0a39b" ], + "x-ms-request-id": [ "74dd823c-7a45-4700-9de7-87496b501553" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71f9da4c-6fd4-4d71-a461-6de4a800ec0b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/78504e0e-1e03-49f0-89b8-59c332ff41d9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4726fe9b-98fa-48da-8cfa-16091b6adcca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185354Z:4726fe9b-98fa-48da-8cfa-16091b6adcca" ], + "x-ms-correlation-request-id": [ "84aabcdb-d3e3-40ed-b896-eaf87760a22a" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T001856Z:84aabcdb-d3e3-40ed-b896-eaf87760a22a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76043A7A2FDD4C28B94140D50F30B341 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F1D30C0DCCC4D57AD5A75ACF2B9A776 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:55Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -4081,12 +3991,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "642" ], - "x-ms-client-request-id": [ "a5d6af7f-a244-4e1d-9dfe-8c018e921444" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "0f94a9e3-5b9c-4262-a9e3-26d6147087a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4097,40 +4007,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "29cd8277-6a42-4ae6-b79d-58bbe3ff67dd", "bcdbd3a2-ee79-4bb6-bbb6-83dffd7eefea" ], + "x-ms-original-request-ids": [ "4c96612f-2b34-4443-bc0f-46fd16650b6f", "eef10d1f-561e-46b2-93c6-0d6d8c535660" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "682ad686-ad17-43c9-8832-d4de136a6611" ], - "x-ms-correlation-request-id": [ "682ad686-ad17-43c9-8832-d4de136a6611" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185355Z:682ad686-ad17-43c9-8832-d4de136a6611" ], + "x-ms-request-id": [ "ebd46b67-6c00-48e1-b68f-65bfc0f87200" ], + "x-ms-correlation-request-id": [ "ebd46b67-6c00-48e1-b68f-65bfc0f87200" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T001857Z:ebd46b67-6c00-48e1-b68f-65bfc0f87200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D30CA88DD0584D36810E04D6DEBB137C Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4156FAE622E14D72A91F90D76B7D5B49 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:56Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10323" ], + "Content-Length": [ "8766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "643" ], - "x-ms-client-request-id": [ "a34dd7be-7edb-4dad-8e96-29cdd2637c54" ], + "x-ms-unique-id": [ "256" ], + "x-ms-client-request-id": [ "337337d8-dffb-4d59-accf-f9f5f6df26a4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4142,40 +4052,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3757ddee-d723-4e1e-9b44-afe138cd42f6" ], + "x-ms-request-id": [ "50518ed0-3ada-4798-9fe8-f0da79bf5cde" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "194aa525-f031-41fa-950f-2e17c28f92be" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185356Z:194aa525-f031-41fa-950f-2e17c28f92be" ], + "x-ms-correlation-request-id": [ "43d10e2e-5f28-4939-bd0a-82dc7603dcdf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001857Z:43d10e2e-5f28-4939-bd0a-82dc7603dcdf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0134A698194041EAA7497D35C99F171E Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:55Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA182AA3D3034E46B8091ACAF4C321AB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "644" ], - "x-ms-client-request-id": [ "16b2bb67-1e1d-4528-bd80-725e987d8a3d" ], + "x-ms-unique-id": [ "257" ], + "x-ms-client-request-id": [ "1047e5e6-ce5d-46f1-b1ec-504bcc085e4e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4187,85 +4097,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4bfbead6-ba9a-4156-b5fa-36b03b113fc3" ], + "x-ms-request-id": [ "59d11461-1e67-4884-9652-85ec30ac6728" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "806d659b-f93e-4f8e-b633-78218910c5eb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185356Z:806d659b-f93e-4f8e-b633-78218910c5eb" ], + "x-ms-correlation-request-id": [ "37517db6-a08f-4748-8ae0-c495105235f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001857Z:37517db6-a08f-4748-8ae0-c495105235f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20BB9025D1F942929B7660DDBBB9F3D7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17E9ABF87BEA4BB69937AC47CECD7025 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "645" ], - "x-ms-client-request-id": [ "c33ee7d1-32c1-4da6-9a63-5e2544bf2398" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de32a60d-41c6-4b1c-a9bd-3842f5e1abbe" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "248979a1-e879-4d37-b28f-3efee248104a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185356Z:248979a1-e879-4d37-b28f-3efee248104a" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9528A3B34E94E8D84175F1B71743A17 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:56 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1746" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "646" ], - "x-ms-client-request-id": [ "a7c4f521-a9c0-4e4c-a9c6-fec41c1fa63f" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "181e995e-c7de-48aa-964c-6f79b3676774" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4277,40 +4142,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "044a1eaf-8dcb-4a7f-a211-6ba116fffe6d" ], + "x-ms-request-id": [ "74c69d2e-687f-44d3-bc31-b5d4c03b7bbe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37123090-bc20-48b7-a6d5-7e9da907ed8b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185356Z:37123090-bc20-48b7-a6d5-7e9da907ed8b" ], + "x-ms-correlation-request-id": [ "214f3b1c-ab75-4daa-8fea-7fb8d7b6d3b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001858Z:214f3b1c-ab75-4daa-8fea-7fb8d7b6d3b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA6D4C4CD18E464D8176356F5A050B81 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 677CF91DBD244508BE656D5027FB0F21 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "647" ], - "x-ms-client-request-id": [ "e9c248ce-1311-4bdc-a5bd-ca173a97b814" ], + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "1734e0cf-abb8-4baf-bc46-a34320e40003" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4322,40 +4187,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "479424d3-cb65-4f2a-92c3-b017f01000e7" ], + "x-ms-request-id": [ "800388d2-2cf6-4903-b6b7-5118a7b642d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49f1d8f5-a22b-4948-b962-a2d2f3e82358" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185357Z:49f1d8f5-a22b-4948-b962-a2d2f3e82358" ], + "x-ms-correlation-request-id": [ "05389884-6110-4dbb-9591-08a676e34e07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001858Z:05389884-6110-4dbb-9591-08a676e34e07" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08DA053D8C8C41E089ED9437D8E9268E Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6CDA4C36CF75498390A6ED537A94FF5A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "648" ], - "x-ms-client-request-id": [ "23d693d4-de5c-4a41-80a0-ebe82adbc14f" ], + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "eb275c6a-e67b-405b-b68c-bc410fc78661" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4367,40 +4232,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2995b02b-e692-4279-bacc-85f1e5595ab5" ], + "x-ms-request-id": [ "f5a80e6f-07e1-459e-b03a-071da224c223" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fcb2470c-ab97-4958-bc35-bca3075583de" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185358Z:fcb2470c-ab97-4958-bc35-bca3075583de" ], + "x-ms-correlation-request-id": [ "1f46a04e-80f4-4c93-b000-a05fac07f7ad" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T001858Z:1f46a04e-80f4-4c93-b000-a05fac07f7ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3DBE3732D33B48B9AD0D71EDE505E39B Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA21E76BEB0B472AA302CB0D20A79AA9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":10,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "649" ], - "x-ms-client-request-id": [ "c2b76e4e-1d71-4204-9f2f-a1084af1b5cc" ], + "x-ms-unique-id": [ "261" ], + "x-ms-client-request-id": [ "eb923293-6295-4dd2-b798-96a8ee58bd19" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4411,40 +4276,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "262b043f-06d1-4461-b0e1-bde0693ed384", "c5656ca9-2454-4374-ac42-c384a15afa24", "363fbb74-3b71-4689-bcd2-f2687c170fa9" ], + "x-ms-original-request-ids": [ "6e10f161-3575-4e82-8857-6b3bb6d3f2da", "1e38873e-d3fb-412a-a913-744d0d120237", "14610417-0c6d-4fb8-9a7c-ce14bac1f345" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e218066e-d641-49ca-b488-8a74039fedab" ], - "x-ms-correlation-request-id": [ "e218066e-d641-49ca-b488-8a74039fedab" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T185359Z:e218066e-d641-49ca-b488-8a74039fedab" ], + "x-ms-request-id": [ "4ada6c33-c756-42f8-9f4f-123675d331e5" ], + "x-ms-correlation-request-id": [ "4ada6c33-c756-42f8-9f4f-123675d331e5" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T001859Z:4ada6c33-c756-42f8-9f4f-123675d331e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D4C80248C334FFC89ACE5392D8E10E1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:59Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EA084FCCCDE4CFD9F21D77A0503A8AE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "650" ], - "x-ms-client-request-id": [ "271144e9-5da7-4ad1-bbba-3393add5ccbb" ], + "x-ms-unique-id": [ "262" ], + "x-ms-client-request-id": [ "9437e2d8-1dbb-4b6a-83a4-6699e93bee8c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4455,16 +4320,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dd386f45-5e55-4aa9-a04b-f79741a467e2" ], + "x-ms-request-id": [ "fd9100e5-3fa3-487d-83fb-3f49806141fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/103f44cc-18e6-498d-ba13-ac83797bfb27" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/315ea48b-6a6d-473e-9c36-6a9ead07fde8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "98834909-cbbe-4966-b604-d780e8e2f392" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185400Z:98834909-cbbe-4966-b604-d780e8e2f392" ], + "x-ms-correlation-request-id": [ "5ecbb32f-5a8c-4103-9ba6-4aed95331111" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001859Z:5ecbb32f-5a8c-4103-9ba6-4aed95331111" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1F935A2D0AA458EB9239F834E94BECB Ref B: MWH011020807031 Ref C: 2025-11-17T18:53:59Z" ], - "Date": [ "Mon, 17 Nov 2025 18:53:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86D5EC9B86764C9381A93AA1168F4DCE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:59Z" ], + "Date": [ "Thu, 26 Mar 2026 00:18:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -4475,10 +4340,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-PowerShellTest-z7cj05b1wo?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-PowerShellTest-z7cj05b1wo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -4498,30 +4363,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4c41ccc6-561b-42c9-854c-5e9d8cd90443" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "1240ab00-0559-4762-a2d3-d43ca608b0ff" ], - "x-ms-correlation-request-id": [ "1240ab00-0559-4762-a2d3-d43ca608b0ff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185404Z:1240ab00-0559-4762-a2d3-d43ca608b0ff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/182c3fe2-0d4a-4cc2-b803-8f190c141a01" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "af286bbd-84b4-44af-80fa-14b454443bee" ], + "x-ms-correlation-request-id": [ "af286bbd-84b4-44af-80fa-14b454443bee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001905Z:af286bbd-84b4-44af-80fa-14b454443bee" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80809C2433D8468EBD92BDA83052F492 Ref B: MWH011020807031 Ref C: 2025-11-17T18:54:00Z" ], - "Date": [ "Mon, 17 Nov 2025 18:54:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2872C74D2F3140BD8C2D2C1F763B4ED5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:59Z" ], + "Date": [ "Thu, 26 Mar 2026 00:19:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a2006ba7-0000-0300-0000-691b6f4c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo\",\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"AppId\": \"4b8afc46-2613-4117-a1d2-cf9c8952c58e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"17eaa2a9-ade0-4a03-9a05-67283b841ee2\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"CreationDate\": \"2025-11-17T18:54:00.8044611+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo_4b8afc46-2613-4117-a1d2-cf9c8952c58e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202095e-0000-0300-0000-69c47b790000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"AppId\": \"dd90b389-c106-473f-8d04-dcc13bc70a14\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8492dd6b-bfa8-42e6-9744-d817aec945a5\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"CreationDate\": \"2026-03-26T00:18:59.7875813+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_dd90b389-c106-473f-8d04-dcc13bc70a14_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-z7cj05b1wo\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-d90zp8nj5h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4535,43 +4400,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F38D68D740\"" ], + "ETag": [ "\"1DCBCB62956DAE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "723654fb-fd09-427a-811d-e3507b14f996" ], + "x-ms-request-id": [ "2df76bd2-106c-4e6c-be05-719136a01e21" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d42b5427-8a7d-4677-845f-376057d99de5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/095e1573-50ae-4cd8-a280-32aa0f451b75" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "244cc062-b60f-40cc-b059-1e00faba6643" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185447Z:244cc062-b60f-40cc-b059-1e00faba6643" ], + "x-ms-correlation-request-id": [ "320ce8dd-fe51-4e3c-9918-da4e8d66b15d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T001947Z:320ce8dd-fe51-4e3c-9918-da4e8d66b15d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B15145855B844F5AAE5509E1C48EC73 Ref B: MWH011020807031 Ref C: 2025-11-17T18:54:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:54:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17920633B838455FB9399C754816B23A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:19:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:19:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8846" ], + "Content-Length": [ "8923" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:54:06.82\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:07.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "653" ], - "x-ms-client-request-id": [ "212b4cfc-2ae1-4680-a7c0-0df4a8a2c8f3" ], + "x-ms-unique-id": [ "265" ], + "x-ms-client-request-id": [ "b1b4ec25-e218-46d0-86f0-716b0e2413f5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -4581,42 +4446,1116 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3A4FC3355\"" ], + "ETag": [ "1DCBCB640BE790B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7b252ce-63dd-4c75-bf47-4e3277c1bb89" ], + "x-ms-request-id": [ "ac1b5a15-3659-4444-a2d5-ec88d5a5ddce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "95a23a0e-5052-43ef-92fb-81113cc17019" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185517Z:95a23a0e-5052-43ef-92fb-81113cc17019" ], + "x-ms-correlation-request-id": [ "f721b663-b885-450a-a370-fc1124a2e45f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002017Z:f721b663-b885-450a-a370-fc1124a2e45f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8D8151B4E8D423D89B23B75C893244B Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:17Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B96DDF9713E1443391926E35FE34BF83 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8825" ], + "Content-Length": [ "8719" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:54:47.0933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "654" ], - "x-ms-client-request-id": [ "e274520e-0bc4-421b-9b8a-c5e8e373b4cb" ], + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "f32d8aab-46c1-4b45-a8fd-63225158aa0c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB640BE790B" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "df4d89c5-b62f-4b1d-955e-b6af423fcfb7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1b4e7c15-5c02-4336-9e3c-4a6f29fefbd5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002018Z:1b4e7c15-5c02-4336-9e3c-4a6f29fefbd5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F57C954BEE3B41B88903D41CB4FC9049 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8719" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+14": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "6b7ad003-f10f-4035-b037-cf1878803520" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "4f13c587-c480-4f02-a1db-c03b47d67433" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97700331-4056-4172-9652-1f96dda1f7d4" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d0895f06-4554-4f16-8159-aa6c0fdcbc28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002018Z:d0895f06-4554-4f16-8159-aa6c0fdcbc28" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ECAD4B232F9441CCAA3E8DA281B870ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "0c5cd029-afc3-4859-b380-c0746c738e6d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "825e6938-541b-4fe9-bcd8-752ad73daf17" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feccb480-d735-40ec-a90f-409f30a779f9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "162244d3-e113-4742-9cde-552a2f93a561" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002018Z:162244d3-e113-4742-9cde-552a2f93a561" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D34D63FE6488445AA40C302C12121473 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4192" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88189,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "269" ], + "x-ms-client-request-id": [ "e7733fce-03c4-4a93-93c7-af13b3d249c9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB640BE790B" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3746c53d-373f-4123-a99a-2bdc43b2cbf7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b8692760-0e68-47ff-a45d-e92505aea1fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002019Z:b8692760-0e68-47ff-a45d-e92505aea1fa" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4C75824DFEB8447589EA0F005D0B20E6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8719" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+17": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "3f885545-f44d-469b-a5b0-7312921a8a34" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c27d8616-6ed8-4a95-b14c-b99832c55293" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a182b042-0be3-427b-9960-18d5e0dac9a5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "83e9fcc8-9dd9-42be-92c7-ad8720fdb72f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002019Z:83e9fcc8-9dd9-42be-92c7-ad8720fdb72f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 16255272C74748E4AAA1D852B15B6869 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+18": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "fb08f7f5-38cd-4718-b1bc-da4f9371026e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b6b0e529-c056-4896-a6d6-d5fba855f2e2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af0d3446-eac1-4a23-8478-b32d539c526a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "df730b8f-d8c5-45fa-b2c1-5e6a53198bea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002019Z:df730b8f-d8c5-45fa-b2c1-5e6a53198bea" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E18BFE013C814ADBB53A1066D6E84E77 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4192" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88189,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "ee48425d-3a9b-408e-accc-9cb8963e82ad" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB640BE790B" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1aa1c0db-f6b5-44fa-a596-34746952034b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a93ce4ed-3114-40b0-9f8f-e9e6a2b23981" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002020Z:a93ce4ed-3114-40b0-9f8f-e9e6a2b23981" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7102B295EABF49B48FEE1DAC9D60F36B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8719" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+20": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "a6fa5d6b-942a-43d4-9189-f3ab6c44e87a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f96427c2-a9d0-456f-9766-3af8d31f7ff3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4f7f76b9-50a8-46ba-8b4d-9e1cf21a8669" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c18b21b3-0745-4336-9788-8bda793f7865" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002020Z:c18b21b3-0745-4336-9788-8bda793f7865" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 705DD3439E444BD3A54AE1819691A99B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+21": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "87e4c133-e6d8-42d5-8992-4180c9a78ea9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "648e695a-ef55-4a81-adc7-7930cfdce71f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80bed76e-ecf2-4ce1-8c6e-8dd94e4c7e85" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62ae2db4-3c25-46f9-b92a-feda0c7f0058" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002020Z:62ae2db4-3c25-46f9-b92a-feda0c7f0058" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 090BEE8B249D4839ADEFDEC78FD7978C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4192" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88189,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "99e47510-e561-4133-ae47-6a9a8a651c7b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8f96e47b-5d10-4639-b4c9-dbeb67c8d516" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2aab00e6-993d-4bc1-9bc6-d328f7a55b11" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002021Z:2aab00e6-993d-4bc1-9bc6-d328f7a55b11" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5760295A4430404A85E633349E0C22EA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "c01d70b0-c4cb-4949-b441-4a5c76585e53" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DCBCB640BE790B\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f341a72c-b337-492a-a939-1cbd87dc43cc" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cdb2ea9-a5df-4734-923d-25a75f4ed5ea" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "bd23e392-edbb-41c7-9c5d-efb5fc72bbb6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002029Z:bd23e392-edbb-41c7-9c5d-efb5fc72bbb6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9740F5EEF1CC4299BFC267520AEABBB1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:28 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "96bb7cbd-d413-4939-ba3d-8f388922d848" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/c983526d-7dbf-4521-b7b7-306b0b344bae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9d163838-eb26-4867-b026-dd6db1ea1c19" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T002029Z:9d163838-eb26-4867-b026-dd6db1ea1c19" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 46102B4A019740AF914619EB278861A2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "278" ], + "x-ms-client-request-id": [ "19595cd1-42d7-4165-9aae-c99e2c49ea30" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "a3d02a01-0ab9-4529-8ccb-0f32b503f1ac", "560b4076-b88c-4e51-b778-8a5af4da6a4d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "43eb903d-82fc-4cd8-93ef-0837bc8b39b9" ], + "x-ms-correlation-request-id": [ "43eb903d-82fc-4cd8-93ef-0837bc8b39b9" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T002031Z:43eb903d-82fc-4cd8-93ef-0837bc8b39b9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E3FA1A37DFC149E09C611CFA2F7DF824 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8766" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "279" ], + "x-ms-client-request-id": [ "913a5a0c-d588-4295-a31c-a73b91345ca8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "dc745daa-1fc0-4633-9f94-331fc467800c" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5afa618c-e16a-40d6-a946-bc3e799c5784" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002031Z:5afa618c-e16a-40d6-a946-bc3e799c5784" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4B915F9CB2BF421485065DA5DCAD46A8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1819" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "280" ], + "x-ms-client-request-id": [ "b81232ff-ca13-4e73-8aec-e31a1bcd114c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "474ce282-8118-419c-997f-4a821a149d1a" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "86678242-6c38-424b-89e0-cf028c303fda" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002031Z:86678242-6c38-424b-89e0-cf028c303fda" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B7CC9DF6331842CAA9576AFB39C28284 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1782" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "5ccfc5ef-48cc-4c0d-bf2a-9b29278d48d3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a1a6f942-d854-4e73-944c-74cb69f82019" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6f508c9a-229b-47d2-94e7-f9350a005952" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002031Z:6f508c9a-229b-47d2-94e7-f9350a005952" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 76872D653F2647FEBC8A40B6F4D62465 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1821" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "b10dd437-85dd-4cb6-80fd-37fab89a0a04" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b5a3431b-cc97-4209-be7f-25989fa12b72" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "41a66b42-f201-409d-92ee-806e2999ecd0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002032Z:41a66b42-f201-409d-92ee-806e2999ecd0" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C69CDEA879164AF09D9473246AA7C06D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "7967e3d0-6156-4d96-96c7-aeb777924032" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "c64459ff-5100-42d1-8abe-225fed53389e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b27fc50f-7145-4a72-85c7-ff18b26c35a1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T002032Z:b27fc50f-7145-4a72-85c7-ff18b26c35a1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8D8BF07C68D84C56BBCAB269246102DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "284" ], + "x-ms-client-request-id": [ "5b91b544-516a-4f8e-8710-7e102df39e9f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "76f25c10-45bd-466b-98ba-047eac2e1125", "f89ca6ed-747c-407e-af57-815f5e63231f", "7dc3a205-3d3a-4da7-b20c-e845841769af" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "9533331d-acd6-4775-85a8-11ebd8addf94" ], + "x-ms-correlation-request-id": [ "9533331d-acd6-4775-85a8-11ebd8addf94" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002033Z:9533331d-acd6-4775-85a8-11ebd8addf94" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 69B9AB13D90F4C838D2754728F3A6002 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "285" ], + "x-ms-client-request-id": [ "abefa981-67bd-4754-b4f5-11df38ad406a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "5604ae45-4657-49ad-8e20-a9e4e1676a9a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/328d26b9-0a56-40d6-a754-ec5944bb1bc6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e2981cff-150f-47bb-b788-71c98033a6dd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002033Z:e2981cff-150f-47bb-b788-71c98033a6dd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 36A0198C4F9D4D8A93D3DBA9066E3312 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"SANITIZED-KEY-VALUE\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SANITIZED-KEY-VALUE\",\"permissions\":\"FULL\"}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01+10": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01", + "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "116" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Request-Context": [ "appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331" ], + "Access-Control-Expose-Headers": [ "Request-Context" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5609847d-6098-4966-906c-e09ad5b816e2" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "aa825665-c569-4eaa-92ac-5dd70909e9cf" ], + "x-ms-correlation-request-id": [ "aa825665-c569-4eaa-92ac-5dd70909e9cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002033Z:aa825665-c569-4eaa-92ac-5dd70909e9cf" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7D98248D514F4E8490CE3952B6F79DEE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:20:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1684" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202fe67-0000-0300-0000-69c47bd10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"AppId\": \"dd90b389-c106-473f-8d04-dcc13bc70a14\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8492dd6b-bfa8-42e6-9744-d817aec945a5\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"CreationDate\": \"2026-03-26T00:18:59.7875813+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_dd90b389-c106-473f-8d04-dcc13bc70a14_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+11": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-d90zp8nj5h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1946" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DCBCB65EDA3220\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5b81b486-d90b-426f-a782-7afe8232c5b9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6f785de5-a72e-448b-9560-8ae358738275" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "78bfd46d-2505-4977-a1e4-f482006d373d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002117Z:78bfd46d-2505-4977-a1e4-f482006d373d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 49040F4118E2460C9F3EB9B963CF2C78 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8721" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:20:36.88\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "b2a9aa70-f131-42ac-922b-7bf56bb10d7f" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB6769128CB" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b38b1caa-f4bb-4edb-8e5e-d7dea8135372" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b6d3cae5-98d6-45e2-be11-c9affaea878b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:b6d3cae5-98d6-45e2-be11-c9affaea878b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9A768F98727740E3A3887435A6929B67 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8522" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+13": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "289" ], + "x-ms-client-request-id": [ "dd44e88a-16c4-4db3-acf4-77a7bfab69c3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB6769128CB" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "816cec94-d113-4cde-9a96-90afdc59b758" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3cd8a342-84fe-42ff-ae33-1e8ca17e9c58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:3cd8a342-84fe-42ff-ae33-1e8ca17e9c58" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DDE0959723F74564BA099415DA8C65D8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8522" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+14": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "290" ], + "x-ms-client-request-id": [ "5ae4c18e-f6e4-4912-9cfe-553fe8414a5c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4627,42 +5566,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3A4FC3355\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "871bb44a-765c-46a0-bd48-7c7b5d639d75" ], + "x-ms-request-id": [ "10893dca-03e0-485e-80be-31c12c9f77c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7045d55c-865e-4b02-a324-097d2eee285c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185518Z:7045d55c-865e-4b02-a324-097d2eee285c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac6adaaf-59cf-4816-bd68-703cff410ed7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5a7a4dcb-c3e1-455b-8fd4-708e3a2abf34" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:5a7a4dcb-c3e1-455b-8fd4-708e3a2abf34" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B294E39742D944118E5836A891435AD7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:17Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 842D890D215D48088986D6C4D98AD906 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8825" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:54:47.0933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+15": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "655" ], - "x-ms-client-request-id": [ "3becf0bb-b4a3-4a01-ac5d-00c9d23ad6c0" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "291" ], + "x-ms-client-request-id": [ "75ff03bc-4cb0-4e79-b4b6-6aa49131348d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4674,40 +5612,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "12f4aeb1-8d5a-471d-a64d-078b3b192936" ], + "x-ms-request-id": [ "32d885e6-bea2-4959-89f4-b035f0510773" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b5a8c03-a782-43d3-8216-7efa560edaef" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fe37cbc1-9f5a-4731-addd-37abcfa028b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185518Z:fe37cbc1-9f5a-4731-addd-37abcfa028b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65bb8998-6c68-4ae4-bd79-5e12db8149a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f8d53a5d-f1a0-4aae-abdf-15ca8d651603" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:f8d53a5d-f1a0-4aae-abdf-15ca8d651603" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22C7A81E81824076B4277706A2FAF989 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 036D60CD33CC4E6B8983F16FD48359D5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1182" ], + "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88192,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+16": { "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "656" ], - "x-ms-client-request-id": [ "a7520c12-405f-448b-bf09-ef64d7ced84b" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], - "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "x-ms-unique-id": [ "292" ], + "x-ms-client-request-id": [ "cd7d6ce8-ba1e-495b-a82a-4891d703564b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4719,41 +5658,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ee42ed2-b0ab-4de6-af22-d0967c8c80c8" ], + "x-ms-request-id": [ "a6a91c70-1df4-4d41-bdec-ab86c48bf066" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e92ab324-a567-4b2e-8868-5525314aace1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9bc2762a-aa19-46c8-ae99-261d87a83af5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185518Z:9bc2762a-aa19-46c8-ae99-261d87a83af5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10c82d22-3b7d-4da0-9d77-b41dd8768e77" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9e16af64-9707-4313-bf8b-5d7a8a841056" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002149Z:9e16af64-9707-4313-bf8b-5d7a8a841056" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A285EF3D03D494A8EF28C14E515E025 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A5F954182324C339B9F849094E00153 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4192" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":32296,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "657" ], - "x-ms-client-request-id": [ "d14e7969-ca3b-4639-aa13-37d4cb38a277" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "ce20c0be-2f14-4768-8ceb-521dcea51dc2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4764,42 +5702,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3A4FC3355\"" ], + "ETag": [ "1DCBCB6769128CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f77dd43-0137-466e-bb46-7fcfce2f54bc" ], + "x-ms-request-id": [ "5d9e36e4-ab31-444e-9437-11371332ab3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4c211608-79a3-4fb9-b31e-f57e215dea4d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185518Z:4c211608-79a3-4fb9-b31e-f57e215dea4d" ], + "x-ms-correlation-request-id": [ "2752645f-dc46-44c3-ab27-1b5e68120c9b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002149Z:2752645f-dc46-44c3-ab27-1b5e68120c9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C4E77BA5B854D98846FD6511CE64B8B Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95F7A38B02DD4F1BB192D3ABD25BB99F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8825" ], + "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:54:47.0933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "658" ], - "x-ms-client-request-id": [ "d33b975a-b87d-42ca-a957-0ef932f0051b" ], + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "112988c4-ef5e-46a1-9817-a1e5e3b619bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4811,40 +5749,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d7003782-a82c-4089-8bf4-ce6e58f8ecdf" ], + "x-ms-request-id": [ "192a3681-29ec-4f6a-acdc-7b8e22bda42a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7725f09c-e165-43e9-8c74-f567779cd83d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e55ff0fa-5ef7-481f-9f2f-579febcbb712" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9ed836fa-25ef-454c-950b-a39237906162" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185519Z:9ed836fa-25ef-454c-950b-a39237906162" ], + "x-ms-correlation-request-id": [ "a8df45cd-d2e8-46a4-bba2-64452119c3c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002149Z:a8df45cd-d2e8-46a4-bba2-64452119c3c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 633016EBDBAB4986A652E35E434B15BA Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2B6C66FD3664A8DBC218BCA8114342D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1182" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "659" ], - "x-ms-client-request-id": [ "8c992120-33e3-432a-bd31-12d2c3596a77" ], + "x-ms-unique-id": [ "295" ], + "x-ms-client-request-id": [ "99942a9f-e351-406c-a0f3-15816287b1e7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4856,41 +5794,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fde7dd9-e01f-440a-aedf-0b6b319c4490" ], + "x-ms-request-id": [ "edf235d7-87c2-4957-8cfc-c994a823e777" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3a51354-9670-4887-ae51-a3e154237546" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed8263fb-343b-4a4a-9471-3246163e7a9e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a7737002-a488-4c1f-8efb-38cdbb6d684e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185519Z:a7737002-a488-4c1f-8efb-38cdbb6d684e" ], + "x-ms-correlation-request-id": [ "6a7c1ebb-683c-446f-9751-5a83e078da60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:6a7c1ebb-683c-446f-9751-5a83e078da60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A7656A24D7E4FE8A9953179D6C1937B Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C35FE941C044BA2B2F5FB6FD1F49F18 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":32296,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88192,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "660" ], - "x-ms-client-request-id": [ "c5e10680-18a9-4aec-9c15-a71585ee0cb3" ], + "x-ms-unique-id": [ "296" ], + "x-ms-client-request-id": [ "6d6a1b0e-d645-4c73-b09a-cd7781803a6e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4901,42 +5839,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3A4FC3355\"" ], + "ETag": [ "1DCBCB6769128CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45a9d6b2-ec36-4151-840e-60c349e62d75" ], + "x-ms-request-id": [ "81eed58b-ca92-4bcd-8b73-54f31d2d21eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa11f9f0-3a8d-4247-9ff7-9f51ed34c789" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185519Z:aa11f9f0-3a8d-4247-9ff7-9f51ed34c789" ], + "x-ms-correlation-request-id": [ "06fa381a-cc9c-4700-a3a2-aed48c07c8f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:06fa381a-cc9c-4700-a3a2-aed48c07c8f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9D3B7A9DF9214873B42E5B66E6F1F323 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11AE203150A54A5EBFA7FC3985D0BF0D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8825" ], + "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:54:47.0933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "661" ], - "x-ms-client-request-id": [ "05facbb1-8489-4030-93b6-a6f82135749f" ], + "x-ms-unique-id": [ "297" ], + "x-ms-client-request-id": [ "2601523e-5990-46d7-9e5a-699d434250f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4948,40 +5886,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ceefa19-7942-45c5-a743-aefad3b5bf2a" ], + "x-ms-request-id": [ "4638760d-b6c9-4342-8759-71cdec5ba4d1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/32b45c9a-0dd9-4fc6-a437-81a4f50997c2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7967fcd-d189-418b-82ee-0c130ff2ba60" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9f1e39a5-adb0-45b7-9292-9c78574f2876" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185520Z:9f1e39a5-adb0-45b7-9292-9c78574f2876" ], + "x-ms-correlation-request-id": [ "46b6ff47-29b4-4733-9e60-d2865a6fab79" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:46b6ff47-29b4-4733-9e60-d2865a6fab79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB47F6EF6C4A4C97846513E8C3026AED Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80E6537623DB4A3495C0315F6B320F67 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1182" ], + "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "662" ], - "x-ms-client-request-id": [ "11c79a2e-6a7b-4717-afe7-e0dca2edc645" ], + "x-ms-unique-id": [ "298" ], + "x-ms-client-request-id": [ "67e43065-fe4d-4fd8-b802-4a16c8953d1c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4993,41 +5931,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad4b0d2a-9925-4c73-ad70-4e82a31f510e" ], + "x-ms-request-id": [ "e25fb81a-a8e8-42ba-b16a-b303874b0519" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6a4b9e3e-6425-44e2-b66d-1523ae365e48" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac111af8-2345-4cb8-b8e3-9ad4deb07bf0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "77556522-4601-49af-b0d5-4cc72f8c5004" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185520Z:77556522-4601-49af-b0d5-4cc72f8c5004" ], + "x-ms-correlation-request-id": [ "b35d2940-fb73-4ae1-9bd3-1fcc13ee7d41" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:b35d2940-fb73-4ae1-9bd3-1fcc13ee7d41" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42432DB162214F908CD70793AC554921 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BDF98397CA54568B2D30548ABA0E1C2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":32296,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88192,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "663" ], - "x-ms-client-request-id": [ "10fb1343-76b2-4e4e-b496-65c0847749ea" ], + "x-ms-unique-id": [ "299" ], + "x-ms-client-request-id": [ "23f903a1-6a7b-44f3-9ba4-39fe48538f16" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5039,40 +5977,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d69e7c1a-2f90-4fd8-b9d1-e5d87a9b0cd4" ], + "x-ms-request-id": [ "22699c4f-0c6d-4e08-b040-caeb45659c9f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "73782aa7-ac33-4e34-a782-e048528fb9a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185520Z:73782aa7-ac33-4e34-a782-e048528fb9a2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4be2d448-0682-4a77-b9f5-bda5672266bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002151Z:4be2d448-0682-4a77-b9f5-bda5672266bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA480887EC69459CAE2A27D278395350 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E2A325B2CD24FC4AD75FB9421003C96 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "664" ], - "x-ms-client-request-id": [ "ff02176c-385a-4666-b372-1d36f874dcf2" ], + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "08f4f650-d557-43c9-aa6c-a54869c3eb97" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5083,20 +6021,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3A4FC3355\"" ], + "ETag": [ "\"1DCBCB6769128CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db7eb91b-b998-4625-ad7a-0c94e96d9233" ], + "x-ms-request-id": [ "ed228713-7b98-4a0f-b940-a76a7bc903eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69ca9f51-c956-48ba-9d35-4e7ec11915af" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/536975fc-070b-4e89-8e8b-8d8c8b2fd7d8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "dada211d-43e3-4287-8e63-039ee01a1169" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185531Z:dada211d-43e3-4287-8e63-039ee01a1169" ], + "x-ms-correlation-request-id": [ "f149e80a-4a90-44da-bac0-3521ad0812e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002200Z:f149e80a-4a90-44da-bac0-3521ad0812e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 93C8F16BEB884037B51B5946A330B798 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F671019A5244B7B9CD66C620CC09A3A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:21:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5106,11 +6044,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -5125,18 +6063,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "351e0bfc-5a01-4056-9239-48af30057b70" ], + "x-ms-request-id": [ "b93eb58c-a7d9-49c7-b745-f0170c6686b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/461ab111-0cbe-400b-b47c-92676a34283e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/2ae9ecdd-32f0-417c-917a-baa1e5660579" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "53053864-c11a-4934-9657-4694b8ec3f71" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185531Z:53053864-c11a-4934-9657-4694b8ec3f71" ], + "x-ms-correlation-request-id": [ "09653cc4-98b8-40e9-ad96-4af9066000ed" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T002200Z:09653cc4-98b8-40e9-ad96-4af9066000ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5BD9749227F542918CA2B38CCFCD6FFA Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42FA5FC2DE33400B8409C34A4D9B8A69 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -5147,19 +6085,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "666" ], - "x-ms-client-request-id": [ "241badca-87b5-4c8a-b548-758575e21fb4" ], + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "c88c9326-8559-4da8-8859-a3d0856805b9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5170,40 +6108,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d7e0a575-097b-4780-a776-a1d8a26610aa", "a7afcb25-ad97-4c07-a66a-ee7073a046dd" ], + "x-ms-original-request-ids": [ "0d67051a-3679-462e-bbe2-df888d86a418", "98ecedfd-05d6-4dd8-8d3a-e7922f53d0f5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6b7fa9c7-f82c-4978-a678-f6baab316511" ], - "x-ms-correlation-request-id": [ "6b7fa9c7-f82c-4978-a678-f6baab316511" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185532Z:6b7fa9c7-f82c-4978-a678-f6baab316511" ], + "x-ms-request-id": [ "1335bc33-0ca7-445b-8ab0-37ea619752cb" ], + "x-ms-correlation-request-id": [ "1335bc33-0ca7-445b-8ab0-37ea619752cb" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T002202Z:1335bc33-0ca7-445b-8ab0-37ea619752cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 94613E7EEAB14387876A431D1B39D3FA Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 983A4F0F20684F4BBD6CFE0E70ADF854 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10323" ], + "Content-Length": [ "8766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "667" ], - "x-ms-client-request-id": [ "2de002fd-0543-4fb2-ba82-027a7f681bc7" ], + "x-ms-unique-id": [ "303" ], + "x-ms-client-request-id": [ "9cff2ce2-6756-4757-8140-ea00c84b7fca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5215,40 +6153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "548722bb-c40a-41a0-a759-0014eb7f6435" ], + "x-ms-request-id": [ "a354a52c-5d96-475d-b679-d2654b6b0064" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ccf3528b-a08f-4685-b8e4-46d8679fda34" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185532Z:ccf3528b-a08f-4685-b8e4-46d8679fda34" ], + "x-ms-correlation-request-id": [ "7a5b989d-681c-4f2f-9cbc-3db4d5531fa6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002203Z:7a5b989d-681c-4f2f-9cbc-3db4d5531fa6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E5F197F5C7844BCAB94E1295F6251AC Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7D8C8B0D9334B4EB3833EF5667C31F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "668" ], - "x-ms-client-request-id": [ "120454d6-42d5-4fa6-979d-7e8a1cde54b0" ], + "x-ms-unique-id": [ "304" ], + "x-ms-client-request-id": [ "87804687-4c39-44ad-8220-a3cfbd52b2f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5260,85 +6198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c55de8e-d621-47ea-9a19-7e4b79be8bfa" ], + "x-ms-request-id": [ "1855eb99-b99b-4be3-a573-118719898b7b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cc6e5cb4-a5cb-4b37-9710-a5016f593934" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185533Z:cc6e5cb4-a5cb-4b37-9710-a5016f593934" ], + "x-ms-correlation-request-id": [ "6ef7c5da-6761-4931-9563-f8270915a137" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002203Z:6ef7c5da-6761-4931-9563-f8270915a137" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D371EB7B5E8E4C1F857F9F671BC1B449 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4C4DB9E61804B74A52B6A3125C06CD7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "669" ], - "x-ms-client-request-id": [ "c72148c9-bbcb-4f4e-9c66-c5b594e7353e" ], - "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e00ef49c-f6ec-47f2-a0c1-2f7c064a74dc" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07d17858-8e4a-4ae7-9914-1dfcf991d538" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185533Z:07d17858-8e4a-4ae7-9914-1dfcf991d538" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6BE5A7A7E8A47668812AA53FD6538E9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "1746" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "670" ], - "x-ms-client-request-id": [ "3f2c9273-6ccb-4c7c-af84-fb3aff2ac091" ], + "x-ms-unique-id": [ "305" ], + "x-ms-client-request-id": [ "04f75d14-4eb9-4b7b-84ef-bac45e8707a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5350,40 +6243,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c539517-92b1-49af-af29-4ae66425d44f" ], + "x-ms-request-id": [ "fdbefdd4-0297-4ca1-8ff7-d31ec073b1c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "23135d7b-5c81-4cbe-9803-5416a81ca9f0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185533Z:23135d7b-5c81-4cbe-9803-5416a81ca9f0" ], + "x-ms-correlation-request-id": [ "8eb24946-fe7d-42ff-a892-5c7b91390e7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002204Z:8eb24946-fe7d-42ff-a892-5c7b91390e7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7FCCB18A40DF4E44B78103853EC2851B Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C007DDB8CE84612A84DE07A5FF127EB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "671" ], - "x-ms-client-request-id": [ "741b1195-5d08-49dd-9074-fdefd4ffccda" ], + "x-ms-unique-id": [ "306" ], + "x-ms-client-request-id": [ "77e2913b-b7ed-49a0-b50e-109edb9e6342" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5395,40 +6288,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "036f64b9-6769-4f9e-a51e-f1a103513a1d" ], + "x-ms-request-id": [ "01c25d5e-6089-464d-823f-3d351abfabc0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2d83e3c0-65a3-4073-b2a0-5eef5096663d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185534Z:2d83e3c0-65a3-4073-b2a0-5eef5096663d" ], + "x-ms-correlation-request-id": [ "f9eb5cc8-c4e3-48e0-8d62-79cb501c4552" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002204Z:f9eb5cc8-c4e3-48e0-8d62-79cb501c4552" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB79B0C8253E473A88D5495FB69B69DE Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 868365EF0C4547E594B9F46D1C13FFC7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "672" ], - "x-ms-client-request-id": [ "0ddcf6e0-5d8c-4a09-9b5a-5ccf49e39d65" ], + "x-ms-unique-id": [ "307" ], + "x-ms-client-request-id": [ "6ee555af-6541-4006-9ad2-3430e0c483fb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5440,40 +6333,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c6f1336-a13b-428c-9413-1aedc02568f2" ], + "x-ms-request-id": [ "e4ded364-15a3-4687-87f1-1e58f4e51481" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c76ac01-c20a-42fc-8112-cc05d73e5aa1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185535Z:2c76ac01-c20a-42fc-8112-cc05d73e5aa1" ], + "x-ms-correlation-request-id": [ "f3d20364-240f-4591-b236-f0a25d9b0001" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T002204Z:f3d20364-240f-4591-b236-f0a25d9b0001" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC90A2F598A847459DCE48AE42D45AA2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5079C2EB27BF47DC876A0A72CABAE73E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":10,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "673" ], - "x-ms-client-request-id": [ "b55982e1-a61d-492d-a837-e048d9e864e0" ], + "x-ms-unique-id": [ "308" ], + "x-ms-client-request-id": [ "3da64944-63f8-4ac3-b673-68e5442a91aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5484,40 +6377,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "665f5070-8769-40ee-93ce-b3aa28a516af", "c65d4357-c85e-4c94-a730-d25be9591c7e", "f4991038-c342-49d7-8785-a65a22aae0ab" ], + "x-ms-original-request-ids": [ "683a791c-65b2-4ec1-89dd-674c57377ac0", "b57924ed-1397-44b6-9ec3-a19f2a02470e", "b5145d22-9f95-4d2b-bc21-bd5db899f37d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2e9672c1-ad91-49d4-be7f-c2ca305d3ff7" ], - "x-ms-correlation-request-id": [ "2e9672c1-ad91-49d4-be7f-c2ca305d3ff7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T185536Z:2e9672c1-ad91-49d4-be7f-c2ca305d3ff7" ], + "x-ms-request-id": [ "1524f0fb-5c91-4fcd-89ad-86af9fba2d73" ], + "x-ms-correlation-request-id": [ "1524f0fb-5c91-4fcd-89ad-86af9fba2d73" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002205Z:1524f0fb-5c91-4fcd-89ad-86af9fba2d73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2AF12692C834F7283EB4D7DE6902DFC Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D412EB65062B411E945134607DC6E294 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "674" ], - "x-ms-client-request-id": [ "6287d4e0-902d-411d-be93-a172b06912cb" ], + "x-ms-unique-id": [ "309" ], + "x-ms-client-request-id": [ "c9c3d5d2-e74c-4a38-b795-2f1615d3ccc8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5528,16 +6421,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a2ed6eb3-1ac2-42aa-85aa-2847da956030" ], + "x-ms-request-id": [ "c78c357b-5b96-4ca0-98ae-6c11e5cf98bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8c2cd2ee-be8e-4721-ad4b-b92689706eb2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ac758ff-650a-4fd4-8379-0052b594c956" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "834e2359-f6da-4845-99fa-7be981415257" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185536Z:834e2359-f6da-4845-99fa-7be981415257" ], + "x-ms-correlation-request-id": [ "29e39a33-063e-4aec-a7da-e5d39bd00246" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002205Z:29e39a33-063e-4aec-a7da-e5d39bd00246" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AA2DDC6FF564FB2A611AE80A4CFEED7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7FAAAB353F6E4BC59CABBA6F0A4A3600 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -5548,10 +6441,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-PowerShellTest-z7cj05b1wo?api-version=2015-05-01+11": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-PowerShellTest-z7cj05b1wo?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -5571,36 +6464,36 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac97c992-fbd4-4fc8-9c47-8ddbcfe76f0e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6bdc9af6-e1d0-4f3e-8d66-7798de3c896d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "52cce471-694a-4ec2-891e-87906cfb1df7" ], - "x-ms-correlation-request-id": [ "52cce471-694a-4ec2-891e-87906cfb1df7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185540Z:52cce471-694a-4ec2-891e-87906cfb1df7" ], + "x-ms-request-id": [ "3c8eb8d5-4322-4cf8-bff6-dfce4c57dd72" ], + "x-ms-correlation-request-id": [ "3c8eb8d5-4322-4cf8-bff6-dfce4c57dd72" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002211Z:3c8eb8d5-4322-4cf8-bff6-dfce4c57dd72" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB0D8A0AC3314EE8A8052ED60F95F250 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:55:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC3D9E260B9249BF9B4691300AEA96EE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a20067bd-0000-0300-0000-691b6fa80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo\",\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"AppId\": \"4b8afc46-2613-4117-a1d2-cf9c8952c58e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"17eaa2a9-ade0-4a03-9a05-67283b841ee2\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"CreationDate\": \"2025-11-17T18:54:00.8044611+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo_4b8afc46-2613-4117-a1d2-cf9c8952c58e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c2026774-0000-0300-0000-69c47c330000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"name\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"AppId\": \"c430c8fd-e25f-4b8d-a2a6-8d516500b729\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"95095884-cb83-4553-9e6b-47a8fea3dbb1\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"CreationDate\": \"2026-03-26T00:22:06.0522072+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest6-xpt80akrzv_c430c8fd-e25f-4b8d-a2a6-8d516500b729_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest6-xpt80akrzv-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-z7cj05b1wo\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest6-xpt80akrzv\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1946" ] + "Content-Length": [ "2014" ] } }, "Response": { @@ -5608,43 +6501,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3D24AEA2B\"" ], + "ETag": [ "\"1DCBCB698FF2500\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "afbce5dd-d893-41b4-9484-1b543c448be3" ], + "x-ms-request-id": [ "bcb1299d-faae-4909-8501-bbc58a70d12b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ab54491-2bb3-4717-9508-f7bc2bc1a8c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08c12872-bc96-4604-aaf4-93d736517a7a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "4555ef2a-1385-45ba-a695-af7c4aa9c74a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185624Z:4555ef2a-1385-45ba-a695-af7c4aa9c74a" ], + "x-ms-correlation-request-id": [ "e753df90-467e-4276-a23f-4d40d09b9ad5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002254Z:e753df90-467e-4276-a23f-4d40d09b9ad5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C16BF65C9B945C1B2CA879D27AEEED4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:55:40Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B0B1B37FFA6448999BFDC570E03701A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:22:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8649" ], + "Content-Length": [ "9042" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:55:42.88\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"67e471d1-d166-4fed-97a2-1acc14f5bf32\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:14.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "677" ], - "x-ms-client-request-id": [ "c627e388-6667-43a2-b45b-3a2baeb65764" ], + "x-ms-unique-id": [ "312" ], + "x-ms-client-request-id": [ "d7957b1a-4a1e-4ec8-b8db-a49b980402ee" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -5654,42 +6547,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3DE92BBE0\"" ], + "ETag": [ "1DCBCB6B03F9920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25bc950d-da16-4e0e-b4a7-a5ae6a131b94" ], + "x-ms-request-id": [ "731d5905-65ee-40e3-b76a-aff6bc1f9e76" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bea14726-4992-4b11-b16b-201335cf7def" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185654Z:bea14726-4992-4b11-b16b-201335cf7def" ], + "x-ms-correlation-request-id": [ "e1d910dd-c366-48ce-a392-2c9acfbffec9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:e1d910dd-c366-48ce-a392-2c9acfbffec9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E00327BC0EC4CFFB10156E24C27E995 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 210835B58E8949218C61857C42D6BF5D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8833" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:56:23.71\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"67e471d1-d166-4fed-97a2-1acc14f5bf32\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "678" ], - "x-ms-client-request-id": [ "4bae981b-4e04-4515-80ea-6b0fc1b732bf" ], + "x-ms-unique-id": [ "313" ], + "x-ms-client-request-id": [ "7bd80d9d-32ef-4ad2-9a84-c91bc94f9a9f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5700,42 +6593,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3DE92BBE0\"" ], + "ETag": [ "1DCBCB6B03F9920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "63ead3b5-3b10-4678-a3e8-c296bf40e3cd" ], + "x-ms-request-id": [ "231be386-8bf7-4ec9-b583-9cd1feed45b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3fe21106-df6e-47c8-9261-edc5d09493af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185654Z:3fe21106-df6e-47c8-9261-edc5d09493af" ], + "x-ms-correlation-request-id": [ "b0750913-cc2e-40c7-8e06-713c4d14896c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:b0750913-cc2e-40c7-8e06-713c4d14896c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 958826F1A75A4B5BA0CC5C808513C111 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C9539EE3E534AAE9D63D4CD79C8A70F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8833" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:56:23.71\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"67e471d1-d166-4fed-97a2-1acc14f5bf32\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "679" ], - "x-ms-client-request-id": [ "3076b31d-5e6c-4a39-ace1-c8fa5e9d5bb5" ], + "x-ms-unique-id": [ "314" ], + "x-ms-client-request-id": [ "8fa99392-bf66-40a3-bb4d-b72b1fda3f3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5747,40 +6640,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ecfe36e-7011-4ff1-938d-bc3c26cd02e4" ], + "x-ms-request-id": [ "db90fb06-af14-48be-a054-f30b9d3f0404" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feaf02b9-b318-412a-9de4-349bb486001f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/526d6b34-9524-4eb8-a4eb-6385dbe4a152" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0c828317-c882-4b7d-b135-174a4436851a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185654Z:0c828317-c882-4b7d-b135-174a4436851a" ], + "x-ms-correlation-request-id": [ "716ad87c-f9ff-4273-9f80-c4d3c9170197" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:716ad87c-f9ff-4273-9f80-c4d3c9170197" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC61B7F47EA94DFCACC725121723D33C Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 656BF18EB042434B9C02D6515F473460 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1231" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-xpt80akrzv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "680" ], - "x-ms-client-request-id": [ "dc76427b-f2cf-4935-8edb-ab477025c429" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "d6afd96a-6fbe-4ebd-82a4-85fb7544a900" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5792,86 +6685,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e35bede0-aee6-495e-9d04-f50917a9b21c" ], + "x-ms-request-id": [ "db5952cb-18c7-4d71-9626-38dba31ba23b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc801b8d-c611-4ba2-b811-9cc3fcc33f0b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de9bd95d-451f-4a08-b8ad-1c0116370b94" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5cb036c5-88c1-4eb9-a3db-7b935b199a32" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185655Z:5cb036c5-88c1-4eb9-a3db-7b935b199a32" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AA171017CB5476DB1AA17040724D7F8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:55Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:54 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4192" ], - "Content-Type": [ "application/json" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32297,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", - "isContentBase64": false - } - }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+17": { - "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "681" ], - "x-ms-client-request-id": [ "369ccd5d-534c-4d3a-aa55-145051d09bef" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "196c1560-1029-4eff-aa3d-ba461922ec0c" ], - "X-AspNet-Version": [ "4.0.30319" ], - "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c33680f-c4c6-4322-81e8-251c8f3e412a" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c4f33b5b-91f2-4370-9c00-20f001a84bb7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185655Z:c4f33b5b-91f2-4370-9c00-20f001a84bb7" ], + "x-ms-correlation-request-id": [ "846244a2-72a7-4292-ba18-9cfdb3a2d63f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:846244a2-72a7-4292-ba18-9cfdb3a2d63f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7977417E891D4AF19C3FAB28A222DABA Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:55Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31C4F53C265E4AEA8DDF5D61E71BACAF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1231" ], + "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88193,\"xManagedServiceIdentityId\":88194,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "682" ], - "x-ms-client-request-id": [ "456dd7ce-a1ec-4278-b25f-be69d367c6ec" ], + "x-ms-unique-id": [ "316" ], + "x-ms-client-request-id": [ "9e8cac28-69cb-4010-8e6a-c8c34f32438d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5882,42 +6730,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3DE92BBE0\"" ], + "ETag": [ "1DCBCB6B03F9920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "854fd5a0-2477-4e69-af9b-fb2bc78a3f6c" ], + "x-ms-request-id": [ "600b86e5-73c1-4428-8484-54c6372337f6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e27d144a-70c4-4297-adb1-870502ba58a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185655Z:e27d144a-70c4-4297-adb1-870502ba58a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "6d7fff9f-d21a-4ea1-9ff9-a1d7efd43f31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002326Z:6d7fff9f-d21a-4ea1-9ff9-a1d7efd43f31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF746F69E2EE42B39B90DE7DE4ED04BB Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:55Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D27ECE6A8F3D437C804E49278DEDFA0C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8833" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:56:23.71\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"67e471d1-d166-4fed-97a2-1acc14f5bf32\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "683" ], - "x-ms-client-request-id": [ "8d87ac6a-98a0-4c56-b4bb-295a4934dfe9" ], + "x-ms-unique-id": [ "317" ], + "x-ms-client-request-id": [ "49fcffa7-e7ae-4add-8e0c-37535a2cdeaa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5929,40 +6777,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efa29ba1-f93f-45ac-a07d-9440bda079af" ], + "x-ms-request-id": [ "b9c7f728-b15f-4975-8a68-49241492f8ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a36d65a5-4266-4080-a80d-d282d9ad856b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a66cd93-7893-4549-b5f3-291402f3a131" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6c388b92-52d5-4f2d-a12f-feb4c7a5d9e3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185656Z:6c388b92-52d5-4f2d-a12f-feb4c7a5d9e3" ], + "x-ms-correlation-request-id": [ "f6237a8c-9a1e-4ed2-84a3-05566ce4724c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002326Z:f6237a8c-9a1e-4ed2-84a3-05566ce4724c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EB9D8B96DDC4BA8BFF6F29E0546324F Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3610A08B2C6245439B75EDCD31C43E8F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1231" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-xpt80akrzv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "684" ], - "x-ms-client-request-id": [ "5d293c60-6b7b-4061-a081-5d8a72f0e96b" ], + "x-ms-unique-id": [ "318" ], + "x-ms-client-request-id": [ "f1dc74bf-b4d4-4b8e-89e5-e8e8ee4d4568" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5974,41 +6822,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6aebfe33-06e2-4834-a1fb-ad7850ec842c" ], + "x-ms-request-id": [ "eaf7ec06-67b1-4fff-814d-84a075d5e32a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3e5eb64-8e06-45bf-bcf1-2184ce94327a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "43d8121b-c619-42ad-b54e-a2c43489d687" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185656Z:43d8121b-c619-42ad-b54e-a2c43489d687" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26aedbad-5fd7-45af-b4a3-87d0310b5b07" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7dbc7721-e046-4595-b25d-d2a5c25d52e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002326Z:7dbc7721-e046-4595-b25d-d2a5c25d52e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 591BF7AECD9E4BA896F0A18FDEBF5255 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCF2DD89CD7C418EAD8F889461319224 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4192" ], + "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32297,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88193,\"xManagedServiceIdentityId\":88194,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "685" ], - "x-ms-client-request-id": [ "9d9dee15-a055-42c0-a164-ed9a40694956" ], + "x-ms-unique-id": [ "319" ], + "x-ms-client-request-id": [ "a47a21de-7ec8-40a8-b44a-065223229da5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6019,42 +6867,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3DE92BBE0\"" ], + "ETag": [ "1DCBCB6B03F9920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30a18d39-49c5-4a24-9d60-a5174bfbda5f" ], + "x-ms-request-id": [ "5a1cd107-ce5d-4251-92be-f56f6f129684" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c30f4f9-55cb-4def-8e71-cf0d53012019" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185656Z:2c30f4f9-55cb-4def-8e71-cf0d53012019" ], + "x-ms-correlation-request-id": [ "ce3b995c-f6fe-45c4-b966-4784a0c88313" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002327Z:ce3b995c-f6fe-45c4-b966-4784a0c88313" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB0133F495944087B6F5D97A6B1427E8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80330D7A9CCF46F6ADDD42374C2CC6B5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8833" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:56:23.71\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"67e471d1-d166-4fed-97a2-1acc14f5bf32\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "686" ], - "x-ms-client-request-id": [ "0918ff85-399d-4c7b-833d-8c281568fd03" ], + "x-ms-unique-id": [ "320" ], + "x-ms-client-request-id": [ "9b1fd5c8-b453-49cf-95e0-a8f1af75758a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6066,40 +6914,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f493d488-1dc0-4185-8141-ea53bcc7a0fd" ], + "x-ms-request-id": [ "9ca6007c-cfd7-4171-a52f-50907af72dda" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9bed4c93-7aab-43bf-a863-a7d207fd3c23" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b24cdbb-eecb-4918-9482-f513c260d214" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d6361cb5-1b56-4cf6-bf4a-55ee4a79cb9a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185657Z:d6361cb5-1b56-4cf6-bf4a-55ee4a79cb9a" ], + "x-ms-correlation-request-id": [ "2797dcf2-a9f1-403b-b2c5-12f6fc5d1039" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002327Z:2797dcf2-a9f1-403b-b2c5-12f6fc5d1039" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B05382D7C0D4B2F8E729B11F33EEAD4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7D53DD2DA0D64CE29E086A3E562203F9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1231" ], + "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-xpt80akrzv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "687" ], - "x-ms-client-request-id": [ "8100f1ec-2a24-4b7e-9de2-d8de83880cf9" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "7d31352d-3680-456b-874e-6ea7cdd849be" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6111,41 +6959,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80e78842-60df-4280-93d7-9a0d76d8fcdb" ], + "x-ms-request-id": [ "72c98258-8517-4866-a6f8-4cf8765eec34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d8b0a1b-230b-4f94-a823-5b22f85a2e22" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b4f880b-a883-4628-9f1a-57cbf07d14b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "886dd810-576c-44c4-9a02-2be29cbb6688" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185657Z:886dd810-576c-44c4-9a02-2be29cbb6688" ], + "x-ms-correlation-request-id": [ "6f04eb76-c954-43c8-b10b-e91023305133" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002328Z:6f04eb76-c954-43c8-b10b-e91023305133" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3711CA6EC1C7434B9F247DC7F6D8F765 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A360FE270BB495DB38052B5FF63E663 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4192" ], + "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32297,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88193,\"xManagedServiceIdentityId\":88194,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "688" ], - "x-ms-client-request-id": [ "c11830a0-151d-43a9-abd0-727b81b4b5d3" ], + "x-ms-unique-id": [ "322" ], + "x-ms-client-request-id": [ "83fb7244-4722-423d-a28b-aa5807721847" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6157,40 +7005,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5619ec34-69ef-4476-9a79-c4457e5d1b56" ], + "x-ms-request-id": [ "34026cde-c569-4e10-b772-7e5386888649" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08a795dd-08e3-4ce5-bc68-e55cff56916b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185657Z:08a795dd-08e3-4ce5-bc68-e55cff56916b" ], + "x-ms-correlation-request-id": [ "244dba57-919e-430b-a3b4-9fbd2e56c85e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002328Z:244dba57-919e-430b-a3b4-9fbd2e56c85e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8CFEB6CD1C84484E82C237CF767D32E0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:56:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B66BBC71CD5147AAB4DC111718D8BB8E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "689" ], - "x-ms-client-request-id": [ "509abeba-65df-4f72-9ec8-6e5d2131885d" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "4356a848-26cb-4011-806b-6cd119091e38" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6201,20 +7049,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3DE92BBE0\"" ], + "ETag": [ "\"1DCBCB6B03F9920\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5fe1a70-5c22-4c32-9e7d-0152f9e15e0c" ], + "x-ms-request-id": [ "84dffc7f-58dc-4a9d-854f-69ad38180cce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cea3becf-77fd-4065-935c-d6184fa14eba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80c41b27-0aab-4de3-9d48-35ba4b301622" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "0ecd8013-89cf-4ae3-9102-d3b8ef03cdb5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185705Z:0ecd8013-89cf-4ae3-9102-d3b8ef03cdb5" ], + "x-ms-correlation-request-id": [ "995c0675-3c84-45c2-acee-13a3c655d6f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002340Z:995c0675-3c84-45c2-acee-13a3c655d6f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 222ED1A86AF84D0F934317A1F63EE1AD Ref B: MWH011020807031 Ref C: 2025-11-17T18:56:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB7994CA2589410FB96794B8032D616D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:40 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6228,7 +7076,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -6243,18 +7091,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fd69952-7888-43a3-bb41-56766c4912e9" ], + "x-ms-request-id": [ "4676c064-a706-4ea9-ab96-360a74fbd02f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f264d8fd-645d-45ea-9be8-023907ca8bec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/eddb3d23-1941-454d-a6ba-dc385cf629dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "935a24c3-7d1e-4d2f-9cab-55b6a7c6dc75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185706Z:935a24c3-7d1e-4d2f-9cab-55b6a7c6dc75" ], + "x-ms-correlation-request-id": [ "6ec8cb1e-c363-42ed-bdea-af13eee28d78" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002341Z:6ec8cb1e-c363-42ed-bdea-af13eee28d78" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CA84902EC664AA9A1687A62A9F46CD3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:57:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 342353BAB698417C9F66A0BDE31BC66A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6269,7 +7117,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-DotNet-kam4d5gjzf\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-27pudsgrfk\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -6284,18 +7132,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4dc5f070-53d2-4584-a918-3c1beb786bff" ], + "x-ms-request-id": [ "5a15e27e-3d6a-4c99-b2e6-ab7a29743d7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b925dfa1-44a5-4319-9df5-81efaed54061" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5249abff-18f0-4df7-a92f-54948b03a53d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "686adfd0-37e1-4f58-bff6-a650292b131f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185706Z:686adfd0-37e1-4f58-bff6-a650292b131f" ], + "x-ms-correlation-request-id": [ "32d9c892-3b68-4d90-ad5f-b9490d64ae23" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002341Z:32d9c892-3b68-4d90-ad5f-b9490d64ae23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 384AD11ABAFA48BC82E8C9007EEC1B98 Ref B: MWH011020807031 Ref C: 2025-11-17T18:57:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92074E59B666425E823AFC740583A798 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6313,12 +7161,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "692" ], - "x-ms-client-request-id": [ "fa2840ff-ea1f-4d4e-8fc9-65c7bfe3ad81" ], + "x-ms-unique-id": [ "326" ], + "x-ms-client-request-id": [ "5621303e-713a-4ecd-b811-10f3efb9898a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6330,25 +7178,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d1ff145-76e4-4581-9221-35ec37228c5a" ], + "x-ms-request-id": [ "98e7eadc-6846-4848-8b19-cb97f03c8b03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/423ccae0-0834-4fc7-b54f-36e940b5fc08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/328f63e2-4f7d-45cf-9d71-e5bd36b99446" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a2bdb78f-e707-40b9-9592-4cd2dd24f67b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185706Z:a2bdb78f-e707-40b9-9592-4cd2dd24f67b" ], + "x-ms-correlation-request-id": [ "e4501ecd-753d-4116-b6f4-27defc2a9513" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002342Z:e4501ecd-753d-4116-b6f4-27defc2a9513" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1072A4E07ADA40D7A5BACCA96DFBC69E Ref B: MWH011020807031 Ref C: 2025-11-17T18:57:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6683554AAB974A4082D03BAD8E715540 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37716" ], + "Content-Length": [ "38561" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -6359,12 +7207,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "693" ], - "x-ms-client-request-id": [ "f8eac267-a09e-4ba5-bf89-790cf1ab42e2" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "9eb45557-e0ae-4eb5-9d52-14301973abfb" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6375,40 +7223,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1618b232-347c-41b5-abf0-32e23d4ee75c", "2a12b360-61b9-4136-b825-9475a5b50d5f", "4c8cbce3-c0ef-4c9c-93cb-6131c8171aca" ], + "x-ms-original-request-ids": [ "acdd7e83-6b47-44d2-af33-f8a221dd7e53", "d185cbc2-e8c9-45c5-ad5a-b08db8c01d86", "a76134ae-6ba5-4437-958e-c4c5593a948f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "a6133668-5b00-4c4b-8d15-ea6aa86c0629" ], - "x-ms-correlation-request-id": [ "a6133668-5b00-4c4b-8d15-ea6aa86c0629" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185707Z:a6133668-5b00-4c4b-8d15-ea6aa86c0629" ], + "x-ms-request-id": [ "9500a1a4-d033-45b9-ac6b-17d4efad9283" ], + "x-ms-correlation-request-id": [ "9500a1a4-d033-45b9-ac6b-17d4efad9283" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002343Z:9500a1a4-d033-45b9-ac6b-17d4efad9283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DACDAB40C05D47288B1B8E0BA9FDBD3C Ref B: MWH011020807031 Ref C: 2025-11-17T18:57:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4507E905C0914EA684CA88AEF7433B5C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "694" ], - "x-ms-client-request-id": [ "fd4de565-22f5-434a-b449-e01a78236df9" ], + "x-ms-unique-id": [ "328" ], + "x-ms-client-request-id": [ "f3d3c171-cb5e-4b31-ad1d-3a46a90d3a13" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6419,16 +7267,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "222419bb-0103-4354-931b-9e60269fe667" ], + "x-ms-request-id": [ "b252c4ac-390c-46f3-a701-b4bb9bde42ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9821553c-8855-4a3b-9641-e24a4882090e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ecb99ff-2186-4a06-9156-92e84ae3444c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "90d53103-6bff-4fba-b099-f9179d98dc1e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185707Z:90d53103-6bff-4fba-b099-f9179d98dc1e" ], + "x-ms-correlation-request-id": [ "51dadb0f-5166-4b96-b433-059d5ae0de24" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002343Z:51dadb0f-5166-4b96-b433-059d5ae0de24" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 367F2BF2B4764AA685A3E7E975137FEF Ref B: MWH011020807031 Ref C: 2025-11-17T18:57:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3488B7EE441843ABB8506FC1F74473FD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -6439,10 +7287,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Insights/components/Functions-DotNet-kam4d5gjzf?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-DotNet-27pudsgrfk?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Insights/components/Functions-DotNet-kam4d5gjzf?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-DotNet-27pudsgrfk?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -6462,30 +7310,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c288da6f-cc5c-4c16-8989-e381f17a7d6d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf094034-b1be-40ac-9dd5-9d88136b957a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "a9b4019d-619e-4987-85dd-71ff46cff126" ], - "x-ms-correlation-request-id": [ "a9b4019d-619e-4987-85dd-71ff46cff126" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185712Z:a9b4019d-619e-4987-85dd-71ff46cff126" ], + "x-ms-request-id": [ "29d9369d-e79a-4dc3-bf03-4a2ae472f201" ], + "x-ms-correlation-request-id": [ "29d9369d-e79a-4dc3-bf03-4a2ae472f201" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002348Z:29d9369d-e79a-4dc3-bf03-4a2ae472f201" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41D077A0F6F74239918598296F99DEAD Ref B: MWH011020807031 Ref C: 2025-11-17T18:57:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14E3B4C631C34EAAAC2EE79F669878D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:23:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a20085d5-0000-0300-0000-691b70080000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-DotNet-kam4d5gjzf\",\r\n \"name\": \"Functions-DotNet-kam4d5gjzf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-kam4d5gjzf\",\r\n \"AppId\": \"e2a19dd3-1225-4147-9c9d-ce72faab1c04\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"28e08ccf-e423-4759-83bf-e23e7995c26f\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-kam4d5gjzf\",\r\n \"CreationDate\": \"2025-11-17T18:57:07.9158679+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-kam4d5gjzf_e2a19dd3-1225-4147-9c9d-ce72faab1c04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-kam4d5gjzf-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c2027480-0000-0300-0000-69c47c940000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-DotNet-27pudsgrfk\",\r\n \"name\": \"Functions-DotNet-27pudsgrfk\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-27pudsgrfk\",\r\n \"AppId\": \"d83ad2cf-84f9-46f5-8927-48a571699a1a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"40de7d95-8f37-43cc-ac8f-176fff0c5701\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-27pudsgrfk\",\r\n \"CreationDate\": \"2026-03-26T00:23:43.9914139+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-27pudsgrfk_d83ad2cf-84f9-46f5-8927-48a571699a1a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-27pudsgrfk-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-kam4d5gjzf\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-27pudsgrfk\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6499,43 +7347,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F3FD20E5D5\"" ], + "ETag": [ "\"1DCBCB6D204B82B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a1652a6-9362-4107-97b5-e7dd3892cec6" ], + "x-ms-request-id": [ "f57f2305-88c8-4299-a8b1-5b1adaa89650" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb59c2a5-c856-42de-a85a-7ac3b71606e9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c60d6fa-2949-45a2-b7dc-b387dc83fc88" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "fa98eaa6-594d-41a7-928c-cf26858df979" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185734Z:fa98eaa6-594d-41a7-928c-cf26858df979" ], + "x-ms-correlation-request-id": [ "7fcf4ff3-1d74-4b31-b594-ff70cea7543c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002409Z:7fcf4ff3-1d74-4b31-b594-ff70cea7543c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72F4E9E2103F4F21852B7507BCDF6580 Ref B: MWH011020807031 Ref C: 2025-11-17T18:57:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:57:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76A06B293F174CA5BE959CCC5D4D9298 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8300" ], + "Content-Length": [ "8418" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-kam4d5gjzf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-DotNet-kam4d5gjzf\",\"repositorySiteName\":\"Functions-DotNet-kam4d5gjzf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:57:14.3366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-kam4d5gjzf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-kam4d5gjzf\\\\$Functions-DotNet-kam4d5gjzf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:23:50.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "697" ], - "x-ms-client-request-id": [ "faf38b6f-5d9a-4414-a5a3-085eaa5c2954" ], + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "f4998062-eeda-4118-8d75-bdcd13fa954a" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -6545,42 +7393,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F40864CF15\"" ], + "ETag": [ "1DCBCB6DD2A9F20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8e5bfe6-4165-43aa-88c5-4c40a7f816c9" ], + "x-ms-request-id": [ "1f244b0c-0128-4458-b7ba-1c534ac80a51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "02571796-b906-4f7d-9910-76afc156832c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185804Z:02571796-b906-4f7d-9910-76afc156832c" ], + "x-ms-correlation-request-id": [ "804728db-5169-4c3c-bcd8-538f6fddd9a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002440Z:804728db-5169-4c3c-bcd8-538f6fddd9a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E2AB2B675D241DAB683EA307DAE7D91 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E14855C4736B46C5AD1B1E95BA57B442 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8286" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-kam4d5gjzf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-DotNet-kam4d5gjzf\",\"repositorySiteName\":\"Functions-DotNet-kam4d5gjzf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:57:33.8733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-kam4d5gjzf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-kam4d5gjzf\\\\$Functions-DotNet-kam4d5gjzf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "698" ], - "x-ms-client-request-id": [ "2e3defe1-a4e2-4663-bb0f-962525d754e8" ], + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "d87c3ef9-d608-46b3-8f11-a83e6c41e97c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6591,42 +7439,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F40864CF15\"" ], + "ETag": [ "1DCBCB6DD2A9F20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cabb76e6-bc2d-4dbf-9bf4-37cc9921a4bf" ], + "x-ms-request-id": [ "1eb75bbb-6ce7-40d8-b0ad-342701f8cd32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e4af6746-c624-46a6-b7a2-acaba117e579" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185805Z:e4af6746-c624-46a6-b7a2-acaba117e579" ], + "x-ms-correlation-request-id": [ "a1849f26-131e-41f0-bee4-e6a010d7a79c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002440Z:a1849f26-131e-41f0-bee4-e6a010d7a79c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 205333EB0D2F4A3A84601BE11B19D1DD Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09E897B932BC4EFAB211061611087B90 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8286" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-kam4d5gjzf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-DotNet-kam4d5gjzf\",\"repositorySiteName\":\"Functions-DotNet-kam4d5gjzf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:57:33.8733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-kam4d5gjzf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-kam4d5gjzf\\\\$Functions-DotNet-kam4d5gjzf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "699" ], - "x-ms-client-request-id": [ "4fcc9eba-5aee-48eb-b604-533b8c3b402b" ], + "x-ms-unique-id": [ "333" ], + "x-ms-client-request-id": [ "66d3b649-3221-4c58-ab17-ae61852dcccf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6638,40 +7486,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7bbad3a1-1e81-4be7-9a14-feaff910aaa5" ], + "x-ms-request-id": [ "4de66934-b55e-4aff-b9a0-69c2771ee9e4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d2a9326-1920-4598-94c9-83f8acca675a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ae59b4c-755b-4d96-8efc-023dfeceed0a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e4893d26-ad64-4b74-8f1b-c6cb6c8357e3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185805Z:e4893d26-ad64-4b74-8f1b-c6cb6c8357e3" ], + "x-ms-correlation-request-id": [ "7b159bd8-6e1c-4214-9d84-4f5173863093" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002440Z:7b159bd8-6e1c-4214-9d84-4f5173863093" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4BC5AA65A6EE4A45BA0C9032563FFF66 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 122FCDE6EA7C4F02BDE9AFF5C14E2DA8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-kam4d5gjzf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-27pudsgrfk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "700" ], - "x-ms-client-request-id": [ "cb5ed6be-d493-4f58-ba4f-7b8cf226fad0" ], + "x-ms-unique-id": [ "334" ], + "x-ms-client-request-id": [ "216ef410-6d00-46fa-accf-63f6a7ff4f5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6683,41 +7531,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ac2b586-2e68-4779-b6da-8f4c577c8e08" ], + "x-ms-request-id": [ "fe18bdd2-c1a8-47de-b5cb-e25a5a30f07f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b227cfa8-d8ea-467a-ae46-6823bdc6e6b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be039e14-5e6f-4738-90e4-fd211617cfcb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a4037045-23ce-430a-96b9-f5274225bedd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185805Z:a4037045-23ce-430a-96b9-f5274225bedd" ], + "x-ms-correlation-request-id": [ "3ee79ebc-0bfe-496b-a7a5-8fe0e7c27339" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002441Z:3ee79ebc-0bfe-496b-a7a5-8fe0e7c27339" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C55F1357AD3F4220888005E6EF18A52E Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89808FE06B674CE39F242074114F3418 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "701" ], - "x-ms-client-request-id": [ "dad894e2-22c0-4309-83f1-f037176af243" ], + "x-ms-unique-id": [ "335" ], + "x-ms-client-request-id": [ "55ff97bf-b7d9-4100-be50-f51ee48fd711" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6728,42 +7576,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F40864CF15\"" ], + "ETag": [ "1DCBCB6DD2A9F20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fc49cc4-7712-4af2-b6a6-b1dfb8b9573a" ], + "x-ms-request-id": [ "0c956e8c-3512-4833-9c05-bccb44d61a47" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "9a9213c6-fab1-41c3-85c5-30f26bc4e427" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185805Z:9a9213c6-fab1-41c3-85c5-30f26bc4e427" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0fa6e7be-927a-4a60-81fe-46a62652b719" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002441Z:0fa6e7be-927a-4a60-81fe-46a62652b719" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99C6BA782EB94D36977E16006C7B9082 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A7D63ECB0DD40D981B69908E1206261 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8286" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-kam4d5gjzf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-DotNet-kam4d5gjzf\",\"repositorySiteName\":\"Functions-DotNet-kam4d5gjzf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:57:33.8733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-kam4d5gjzf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-kam4d5gjzf\\\\$Functions-DotNet-kam4d5gjzf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings/list?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "702" ], - "x-ms-client-request-id": [ "80a2e6db-3e56-43a9-b48c-27e144011419" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "f50299b9-b4b1-45ee-8b6a-bd8dda06bc76" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6775,40 +7623,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53048d06-5b3f-4293-92fd-b87024e76947" ], + "x-ms-request-id": [ "ee4c34e2-b1c7-4ec9-b195-8df470e27bea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/671f8dd8-e6c6-440e-9d08-195f497433ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3d8826c-3091-4f88-9325-76afda5fc053" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c62ad47f-2734-4e5d-bea6-6a0e338c2435" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185806Z:c62ad47f-2734-4e5d-bea6-6a0e338c2435" ], + "x-ms-correlation-request-id": [ "1f63722f-3bf6-4a3b-a3cf-d4d3bfdc2504" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002442Z:1f63722f-3bf6-4a3b-a3cf-d4d3bfdc2504" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48BD1E54468949708C12FE56B028164A Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 642178A7C6D5418991EF9F84BE9E2595 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-kam4d5gjzf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-27pudsgrfk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "703" ], - "x-ms-client-request-id": [ "4438e449-f178-4ca2-bbfa-3fbf5dba43dd" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "73564ad6-1817-4176-a9a9-8dc1a171ae41" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6820,41 +7668,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c01af5df-dda9-47b6-a9d3-87736db61496" ], + "x-ms-request-id": [ "41a8f0e4-137d-41bf-9802-c3f73da0cacf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da4e6955-8328-49df-bc53-bc853b2aa84a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee8e1ee1-b2af-41f1-841e-3b14a069d877" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49e1d6e6-76dc-432d-9755-ccbc293d46f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185806Z:49e1d6e6-76dc-432d-9755-ccbc293d46f2" ], + "x-ms-correlation-request-id": [ "e0e57e47-8e0e-4208-a36b-500a9c44d345" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002442Z:e0e57e47-8e0e-4208-a36b-500a9c44d345" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B3C860B88C84977929087594DFA7006 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B790271B914343E69FDEBFE234B49BE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "704" ], - "x-ms-client-request-id": [ "ba6d6ce4-9422-4446-8484-29c65b98aeec" ], + "x-ms-unique-id": [ "338" ], + "x-ms-client-request-id": [ "7d59efc6-23d5-47fc-9aa2-9c857307e067" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6865,42 +7713,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F40864CF15\"" ], + "ETag": [ "1DCBCB6DD2A9F20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0291025e-9900-406f-bc0c-acbf5317ab2b" ], + "x-ms-request-id": [ "6c252549-1df2-4d90-b4fb-e742437c9203" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "869f3346-7114-4310-bdec-83f4ae1a8310" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185806Z:869f3346-7114-4310-bdec-83f4ae1a8310" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "bcff18a0-5ce2-444a-bcf3-7a6e52356279" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002443Z:bcff18a0-5ce2-444a-bcf3-7a6e52356279" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C239FA08A6504944B515A060A4102E67 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 771FAF7C79324586902B302B64302B88 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8286" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-kam4d5gjzf\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-DotNet-kam4d5gjzf\",\"repositorySiteName\":\"Functions-DotNet-kam4d5gjzf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-kam4d5gjzf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:57:33.8733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-kam4d5gjzf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-kam4d5gjzf\\\\$Functions-DotNet-kam4d5gjzf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-dotnet-kam4d5gjzf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01+15": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "705" ], - "x-ms-client-request-id": [ "cb6c5343-0663-4290-8f39-95127894cb95" ], + "x-ms-unique-id": [ "339" ], + "x-ms-client-request-id": [ "22c77254-3984-4e8f-8a26-b3c9b8d18562" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6912,40 +7760,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "455aa375-bd75-4d77-b4d3-25f497883c78" ], + "x-ms-request-id": [ "74066263-cc75-4cd6-9c58-b391a5dc9c11" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0e43d3f-9981-49c2-8131-f94704790764" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "8f0f6e8d-67cb-4cf6-92c7-ee62ea13b311" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185807Z:8f0f6e8d-67cb-4cf6-92c7-ee62ea13b311" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34388f6b-0292-4c41-8c29-16db1e27047b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "838a0d03-0688-4dc4-ab6e-e368b99d1537" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002443Z:838a0d03-0688-4dc4-ab6e-e368b99d1537" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98C0874D020546618F5A13AC5D12F03D Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FE633FD1F4045898C223013A9FBB134 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-kam4d5gjzf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-27pudsgrfk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "706" ], - "x-ms-client-request-id": [ "a6db1b1e-29a4-4b5b-a002-1a70748742bd" ], + "x-ms-unique-id": [ "340" ], + "x-ms-client-request-id": [ "be32f76f-b670-4036-9f48-cf70adf76eaf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6957,41 +7805,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43625ae1-7574-484d-9230-84c9128a424d" ], + "x-ms-request-id": [ "4b2a3b8c-1084-443f-b048-a2987ec06020" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a82ebf80-c853-4b8b-8e9a-aad9012e5d76" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d547c7e6-ae5c-430f-820d-92556dc74324" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "79fee38f-c98a-41f3-b15b-84a5f8fefa35" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185807Z:79fee38f-c98a-41f3-b15b-84a5f8fefa35" ], + "x-ms-correlation-request-id": [ "e60c5571-f447-4806-a7de-2b6cc016d235" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002444Z:e60c5571-f447-4806-a7de-2b6cc016d235" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3B224BEB30E4944A6C82ECFDA42B9E5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62BADCD7C0E3473D97B2958A11E55D4A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf/config/web\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "707" ], - "x-ms-client-request-id": [ "5100fa50-33de-468a-9b85-060ac89a85b2" ], + "x-ms-unique-id": [ "341" ], + "x-ms-client-request-id": [ "fd9c1808-cb24-474b-9266-2f5f196aeb20" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7003,40 +7851,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3bb5be66-af7f-4c02-b1a5-15f6361ea647" ], + "x-ms-request-id": [ "b24a4786-b710-4564-8eaa-d628ed6702df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "db9e8718-b72e-4314-9525-ff47404fdfbc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185807Z:db9e8718-b72e-4314-9525-ff47404fdfbc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e2fa73a7-3a42-423f-8f53-5e3a82992cbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002444Z:e2fa73a7-3a42-423f-8f53-5e3a82992cbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B950034E28B4F4B9EC895C072AC9A16 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19E3BF32B6F7471DADB5B10283559021 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-DotNet-kam4d5gjzf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "708" ], - "x-ms-client-request-id": [ "b854b552-b695-46c6-800f-23e5243b0458" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "f3e1b568-ffc4-43c0-813b-34abc4f76f55" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7047,20 +7895,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F40864CF15\"" ], + "ETag": [ "\"1DCBCB6DD2A9F20\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "49850508-3a1d-478d-b0a9-37391034603a" ], + "x-ms-request-id": [ "638e09c5-6a93-485e-b26a-399b35d9247a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d241d808-b702-4b26-a579-04b35b1b1d0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06bb9df3-05d7-49c1-bb88-05009984c90a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "e14ff93f-3209-4874-b64c-a0a448e434a3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185817Z:e14ff93f-3209-4874-b64c-a0a448e434a3" ], + "x-ms-correlation-request-id": [ "85d9795e-008d-452f-84f6-5830bacffc65" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002451Z:85d9795e-008d-452f-84f6-5830bacffc65" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F5277BA98924B59AE5D721E87AF9C3C Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26ADAF32E8574DE692F53A617B8B488B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:50 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7074,7 +7922,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-z7cj05b1wo\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest8-w6t25049gs\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7089,18 +7937,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4230dbe2-5829-43fc-b6d4-f3876f1549f7" ], + "x-ms-request-id": [ "7b15db05-3bef-4460-a37d-f37ba803b8ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10d180f9-c002-4c32-a1a2-17b20d7e75ba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f3c2a179-e28d-445c-8846-71aabafff215" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6f8f487-6d5f-40a4-a214-8b4803e20c99" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185817Z:c6f8f487-6d5f-40a4-a214-8b4803e20c99" ], + "x-ms-correlation-request-id": [ "93c694e1-bac4-43d7-8c03-9ae1ce5fa7f7" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002451Z:93c694e1-bac4-43d7-8c03-9ae1ce5fa7f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66AD8E6F78D647EF9C11AB40176A09E8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:17Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D8FD9CB472A34C1285C611683C72B76C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7118,12 +7966,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "710" ], - "x-ms-client-request-id": [ "ba3c60d7-5b0c-4dbc-a696-143b62c5828f" ], + "x-ms-unique-id": [ "344" ], + "x-ms-client-request-id": [ "90b224fc-a211-489b-8d5f-78b195514933" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7134,40 +7982,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "618abb46-da06-41c5-82e4-8fe57b6d51fc", "2f3d7e93-776f-44ab-8ff3-3bf892864511" ], + "x-ms-original-request-ids": [ "fb5198cf-634d-450c-8a79-b175d37fcd44", "22399ead-024a-4440-bbc3-7020ce098329" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "10c4aa0b-a155-4a85-8998-2eb9f32d8840" ], - "x-ms-correlation-request-id": [ "10c4aa0b-a155-4a85-8998-2eb9f32d8840" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185819Z:10c4aa0b-a155-4a85-8998-2eb9f32d8840" ], + "x-ms-request-id": [ "7dfa7f8b-2ecf-4208-9621-1a6d8947ec0e" ], + "x-ms-correlation-request-id": [ "7dfa7f8b-2ecf-4208-9621-1a6d8947ec0e" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002452Z:7dfa7f8b-2ecf-4208-9621-1a6d8947ec0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC32DFE8F23C469B875253303942BECF Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:17Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19C672EC7D9C4D91A0BF248CB0131635 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10323" ], + "Content-Length": [ "10446" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "711" ], - "x-ms-client-request-id": [ "2ffbfeac-0302-4595-be61-999dedc64e4d" ], + "x-ms-unique-id": [ "345" ], + "x-ms-client-request-id": [ "644567aa-d0c6-40fa-89cb-2590712b589a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7179,40 +8027,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2dcece41-f6ff-4640-98a8-d31c7eadd7db" ], + "x-ms-request-id": [ "1a93ae49-c849-4d21-bb51-3427e5c7c49f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5fceb2a6-7ffe-489e-a623-2668f150ed9b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185819Z:5fceb2a6-7ffe-489e-a623-2668f150ed9b" ], + "x-ms-correlation-request-id": [ "01b96d8f-fd13-4bcb-a13c-770ce43faa67" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:01b96d8f-fd13-4bcb-a13c-770ce43faa67" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E863BCDE4E8E491C9D9F762EEC0EC7A6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78C04F6C421246C69FB8803774FC0200 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "712" ], - "x-ms-client-request-id": [ "53b7a567-e1bc-4c9d-9ff2-94cbf3756779" ], + "x-ms-unique-id": [ "346" ], + "x-ms-client-request-id": [ "f20444b4-bc85-4d15-a753-378cedd6da1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7224,40 +8072,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "409d99e8-3309-42a2-8780-e5bf1dfd055a" ], + "x-ms-request-id": [ "79338220-1a29-42bf-91c5-f15a0c4b9d9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "528a4e90-b8e3-462e-9317-436c552a6143" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185819Z:528a4e90-b8e3-462e-9317-436c552a6143" ], + "x-ms-correlation-request-id": [ "fdbeef4c-2a2a-486c-a1be-c758a4d484aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:fdbeef4c-2a2a-486c-a1be-c758a4d484aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C460342E47DB41A685610C3BACB01F44 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 387013E62FB84270B53106E40225CC2E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "713" ], - "x-ms-client-request-id": [ "66590f4a-6365-4d7d-8ba0-bb52cef802c5" ], + "x-ms-unique-id": [ "347" ], + "x-ms-client-request-id": [ "fb532617-8927-4b8e-bac7-90141fd02bbc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7269,40 +8117,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "620fa5d8-7000-4ca4-a33b-160145ae1d8b" ], + "x-ms-request-id": [ "b6b707a4-88e4-4f60-aaa9-540b59115c06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "626cc5d7-3cb7-4ba5-8f3c-9d40ab936906" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185820Z:626cc5d7-3cb7-4ba5-8f3c-9d40ab936906" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e2e59abb-185d-4d75-8417-43f839006969" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:e2e59abb-185d-4d75-8417-43f839006969" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 215E7EE1F8764BCFBA6AE27CD5DF186A Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9F86ECD43D2439687DFB8784D9FC58A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "714" ], - "x-ms-client-request-id": [ "79f19eac-c756-45e6-8c06-dc5fd382374c" ], + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "f94e4c39-941f-41a1-b0f8-c953c96ee5dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7314,40 +8162,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0b21e854-13de-4e59-b21e-835010a043e8" ], + "x-ms-request-id": [ "8f9a57e6-5651-44d0-ae80-186d4e07af24" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b997776f-c18a-4236-acf2-1a8dbe5e585c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185820Z:b997776f-c18a-4236-acf2-1a8dbe5e585c" ], + "x-ms-correlation-request-id": [ "8a5d4155-8482-4b67-b012-fd86dfca3fd4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:8a5d4155-8482-4b67-b012-fd86dfca3fd4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75DBD9834D054F61AAACAC99C9618A9F Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 929F5BDB247444DCB70C617D7A23ADDB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "715" ], - "x-ms-client-request-id": [ "7311f03d-3ab7-46ed-aeda-f8e617b82bcc" ], + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "a7703d6d-c84b-4d21-9f82-f1640dfd5841" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7359,40 +8207,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70c59a25-a18b-4cbc-8712-176205a8459b" ], + "x-ms-request-id": [ "42f93b16-3503-480f-980b-0cf7ee42c702" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "226651d0-48ef-4ff1-a3f1-2356d71a5f0e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185820Z:226651d0-48ef-4ff1-a3f1-2356d71a5f0e" ], + "x-ms-correlation-request-id": [ "aa1f5c2f-af70-493e-8a33-612ad955b85c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002454Z:aa1f5c2f-af70-493e-8a33-612ad955b85c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E2E71CBEAE643FCA284286166E6AFC3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26FF59E7C3D443B58E89F8AED2F43CF5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "716" ], - "x-ms-client-request-id": [ "4cf02fd6-ac63-46e5-8e12-0b17623b93fd" ], + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "5f368a52-7e8f-4d62-a44c-5c558abc7dcb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7404,24 +8252,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a5b76d5-7c9c-49b7-be61-e2073caee9f4" ], + "x-ms-request-id": [ "42b3bf80-f7b8-40d2-bb3b-d96d6c0db80a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "079afb52-e1d8-4b64-b3f2-6b3be1833c5c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185821Z:079afb52-e1d8-4b64-b3f2-6b3be1833c5c" ], + "x-ms-correlation-request-id": [ "63b377f1-499f-40ed-b249-10b598963ab8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T002454Z:63b377f1-499f-40ed-b249-10b598963ab8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65CEEEAA37684E8DAB2EB182877DDE86 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 15F24ECDF2294466A83619C9A56F8A71 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -7432,12 +8280,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "717" ], - "x-ms-client-request-id": [ "fb96bdbf-0d74-4de8-9a17-a0d10cc2a805" ], + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "694f078b-0b52-4f9d-8b16-7e13952756e7" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7448,40 +8296,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c1616619-1319-4022-914d-eae14b9fdce1", "c688a06a-3954-4f41-9f1a-7536203427e8", "a172a21b-3716-4095-9210-8b990c7a6c61" ], + "x-ms-original-request-ids": [ "52dd4870-9063-4731-8a3a-0ac641e66758", "48153cd8-41f6-4763-9795-21d6969d27eb", "d198a7d3-457a-4f83-9741-29de68543602" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f7db56e0-9099-4726-ab31-797068d8606e" ], - "x-ms-correlation-request-id": [ "f7db56e0-9099-4726-ab31-797068d8606e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T185822Z:f7db56e0-9099-4726-ab31-797068d8606e" ], + "x-ms-request-id": [ "fcebf720-7677-4859-9998-d91faa20ca10" ], + "x-ms-correlation-request-id": [ "fcebf720-7677-4859-9998-d91faa20ca10" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002455Z:fcebf720-7677-4859-9998-d91faa20ca10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED277863BD5B41459B823CDF1C23AA5A Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44E3830E7A5D437F97A784BB813AD62B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+10": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "718" ], - "x-ms-client-request-id": [ "0bdfd56e-7c63-4778-b65f-c1aff2b1d317" ], + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "650b7a55-9b98-459e-9fa6-976596a5e98e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7492,16 +8340,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0b3c4ab0-7d9f-4aff-b4af-176925ca6946" ], + "x-ms-request-id": [ "e604e92e-153d-4709-b76f-020bdea74677" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/89ef7aed-4d32-4297-b465-a6933ea923b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/056da3bb-c0f6-4cdc-a5bc-6ef6b0e8c192" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "78d8e4c8-78f0-46e0-a1f1-c501651aa3b2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185823Z:78d8e4c8-78f0-46e0-a1f1-c501651aa3b2" ], + "x-ms-correlation-request-id": [ "de0fef24-e99b-4612-b909-1384868cb0e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002455Z:de0fef24-e99b-4612-b909-1384868cb0e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E02F0BB9BDA4450AA28065D8AF8122B3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:58:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C54FC1342AC748578D11A13D1AD5D57F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:55Z" ], + "Date": [ "Thu, 26 Mar 2026 00:24:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -7512,11 +8360,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-z7cj05b1wo\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest8-w6t25049gs\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7530,43 +8378,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F426EEE760\"" ], + "ETag": [ "\"1DCBCB6F9D514F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86827578-5ee0-4731-8805-a2ae9ffc328a" ], + "x-ms-request-id": [ "056001cb-f0a0-4b96-b585-170e303efe6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5295d1b-605b-4736-a165-6fc59fd5574b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14a42c76-895c-404b-ae69-899fed7ea9e9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "351a60de-d696-432a-b30a-6d4e01cbd12a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185905Z:351a60de-d696-432a-b30a-6d4e01cbd12a" ], + "x-ms-correlation-request-id": [ "697104b4-6fa4-42e3-9831-0d4373d3866f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002537Z:697104b4-6fa4-42e3-9831-0d4373d3866f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5E0C754D8C4428A9D8A8B00DCEF7B7C Ref B: MWH011020807031 Ref C: 2025-11-17T18:58:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD1C6C2D3D8C49BC85981A29C101E5F7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:55Z" ], + "Date": [ "Thu, 26 Mar 2026 00:25:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8581" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:58:24.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:56.92\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "720" ], - "x-ms-client-request-id": [ "fd67634e-5741-4ed2-abcc-e3975dd4aa55" ], + "x-ms-unique-id": [ "354" ], + "x-ms-client-request-id": [ "1825a1a9-2cc3-487b-8bb0-bba00719b32c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -7576,42 +8424,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F43EBA3660\"" ], + "ETag": [ "1DCBCB71182E3E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5b7024b-783d-40af-812c-d92ef5d1c824" ], + "x-ms-request-id": [ "2d30cb10-a926-4585-b289-4d3ce8bfa129" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "88616faa-b5bb-4ad7-af0b-392dfe5a1ddf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185935Z:88616faa-b5bb-4ad7-af0b-392dfe5a1ddf" ], + "x-ms-correlation-request-id": [ "b28b9ced-3c7c-4b0a-8176-d6d4b2be84d5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002608Z:b28b9ced-3c7c-4b0a-8176-d6d4b2be84d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 697A5C23C2BE4CF7ACADD4AB740D6EBD Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82E9DB04A6DF4388B8120060D1C17ED7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:59:05.03\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "721" ], - "x-ms-client-request-id": [ "de34a740-bdb7-4872-828d-1d16648ca359" ], + "x-ms-unique-id": [ "355" ], + "x-ms-client-request-id": [ "c4ac8dfb-1ffb-4241-bb5c-eba60b133616" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7622,42 +8470,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F43EBA3660\"" ], + "ETag": [ "1DCBCB71182E3E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16036846-39b7-495f-a02b-af32e5b271d6" ], + "x-ms-request-id": [ "c1a3811c-648c-4311-838a-b42fb7470528" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ec779b9c-6020-45dd-b5af-3f8274e8eefa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185935Z:ec779b9c-6020-45dd-b5af-3f8274e8eefa" ], + "x-ms-correlation-request-id": [ "09fdd903-96e1-4269-bd92-07c527c774af" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002608Z:09fdd903-96e1-4269-bd92-07c527c774af" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5A07D67645C4C9683715178C658E0EA Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F730BEBF4B349209AF7051C5F6D90E6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:59:05.03\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "722" ], - "x-ms-client-request-id": [ "181aef3d-2aec-4b6d-b09c-19a8ee60fbd6" ], + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "7a235054-c73f-485c-a795-00da862f2d09" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7669,40 +8517,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "17125cc1-820f-49c9-9c8c-337cd4bcccd8" ], + "x-ms-request-id": [ "ba3370c9-9a6f-43ca-b721-97d52b0a9767" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db433256-4501-487d-ad82-de6faab12353" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ad5dea0-daa3-499f-afd7-afbea37e7bbf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "68b31635-5151-4d09-9c3f-d25c3a8a434b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185936Z:68b31635-5151-4d09-9c3f-d25c3a8a434b" ], + "x-ms-correlation-request-id": [ "eec141e9-7beb-41d8-ab93-9ffd86a4c348" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002608Z:eec141e9-7beb-41d8-ab93-9ffd86a4c348" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74862AE983B34040A9D4DF23F39B53ED Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 354B63F4A62C41D49CAE3C76E18F03A5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "48aadd69-0db1-4f42-a895-f52f3a96c49f" ], + "x-ms-unique-id": [ "357" ], + "x-ms-client-request-id": [ "7d17e4b5-fc2f-420f-8308-f596dcec7023" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7714,41 +8562,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a089e69e-4c36-4262-8295-3621b2b6f3c8" ], + "x-ms-request-id": [ "327b4fa9-ced8-4f6e-9402-7f4bb51f5c60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ab3554e-437e-4583-86c9-fb5abd709c35" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "6cbb775d-0c5a-4201-8b9f-4173be44f0e3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185936Z:6cbb775d-0c5a-4201-8b9f-4173be44f0e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21c7bd0f-986f-4714-ae4c-7e1e1de24f8b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "51b45070-531a-4a47-9831-3e1dc4aea376" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:51b45070-531a-4a47-9831-3e1dc4aea376" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E4D3DFCB1E64A4597DC44A0283A3D47 Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63715ABA9D9D4B8CBE84FAEC5F9EBC58 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "724" ], - "x-ms-client-request-id": [ "389b8859-5b25-4398-b5d1-cd2eb3f497a4" ], + "x-ms-unique-id": [ "358" ], + "x-ms-client-request-id": [ "23112e12-be5e-43eb-93bd-7f3422ae51c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7760,40 +8608,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e232bb5c-7d85-482b-9cbf-a960b96ca4f9" ], + "x-ms-request-id": [ "b255f051-7f7c-4c8c-961c-007fd436a524" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e841341-2ae6-47a3-9d8c-fd9223a50653" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/972c1f63-dc15-466c-bdb0-a05aa48593b7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a3dba9a5-fc43-457d-ae8f-7d07dc01037f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185937Z:a3dba9a5-fc43-457d-ae8f-7d07dc01037f" ], + "x-ms-correlation-request-id": [ "e809a159-fbbd-4326-9f70-e6534cf746bc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:e809a159-fbbd-4326-9f70-e6534cf746bc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA287BCBD4F2487D91F01CD72D13D1AD Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6CAF19601B24E8991ED2F0D9430D4D0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "725" ], - "x-ms-client-request-id": [ "8db90a7d-22c5-4531-8fc8-3a72e5575bb4" ], + "x-ms-unique-id": [ "359" ], + "x-ms-client-request-id": [ "0660aca6-4074-4320-9d04-eb36c4bb77bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7804,42 +8652,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F43EBA3660\"" ], + "ETag": [ "1DCBCB71182E3E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2986044a-30c0-401b-be17-25862187e1df" ], + "x-ms-request-id": [ "7d7c87bb-01f0-4e4d-89dc-7650c820c48c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b349cbe0-1d19-4bab-b20c-e1baa8a35c38" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185937Z:b349cbe0-1d19-4bab-b20c-e1baa8a35c38" ], + "x-ms-correlation-request-id": [ "bb843fb2-def2-4d6e-a348-4e98fd57419f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:bb843fb2-def2-4d6e-a348-4e98fd57419f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EC434FEA5F3476E80EB4DB793D9D88D Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:37Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A7DA29D3DC046988D3CE300EE149AFD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:59:05.03\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "726" ], - "x-ms-client-request-id": [ "58ccd561-0b74-49f4-a5ee-d4b59631875b" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "6d2ed136-49f5-46f3-b5ec-0588429eb01a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7851,40 +8699,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77730826-41ec-40ae-8b8c-b69401b6a60d" ], + "x-ms-request-id": [ "a43f38f9-c94a-4e99-9342-092f2f68b26c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f6137a9-bf6b-40c2-a521-bf6693efc2f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9eaaaf66-e251-42e1-bc1c-6c8a56651e34" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "26a83f9e-d338-4027-bb48-05fe86e0c85a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185938Z:26a83f9e-d338-4027-bb48-05fe86e0c85a" ], + "x-ms-correlation-request-id": [ "b8ae6610-46b3-4b6f-b46d-82a2490d15e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:b8ae6610-46b3-4b6f-b46d-82a2490d15e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF136C36EF204B6E99C548A2D118D7C0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:37Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 045CB2B0B17F4FE0A122F9E7D72D8A06 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "727" ], - "x-ms-client-request-id": [ "a26d3a2b-58b0-49e7-9d29-571b20e501a0" ], + "x-ms-unique-id": [ "361" ], + "x-ms-client-request-id": [ "1d33d78e-91a3-4c08-a85a-c4508194735d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7896,41 +8744,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e339c85-d238-4dad-ae1d-eb517a4d14b8" ], + "x-ms-request-id": [ "3540db47-fcb0-4834-aa8f-3ac105ca0864" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/11190667-f8a4-4f8b-899f-35b02a06c4d6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feffa73f-5e57-47da-be18-64ade95fe436" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9172488e-772c-4bd6-ab19-50549b5048f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185938Z:9172488e-772c-4bd6-ab19-50549b5048f1" ], + "x-ms-correlation-request-id": [ "b2d96015-0c59-4905-8511-2d57681f6bbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002610Z:b2d96015-0c59-4905-8511-2d57681f6bbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 12BC143196DE4AADA2FD16872F4BD29D Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:38Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82E1D5FF726845348D6A58FABF3DA330 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "728" ], - "x-ms-client-request-id": [ "8cc0f382-2510-4134-85d2-bc36f7bbcf50" ], + "x-ms-unique-id": [ "362" ], + "x-ms-client-request-id": [ "77df2e31-be07-4115-9884-f6ad60dc8ab3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7941,42 +8789,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F43EBA3660\"" ], + "ETag": [ "1DCBCB71182E3E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87b9c335-90d8-4b1a-971f-bfff31d7d3fb" ], + "x-ms-request-id": [ "7590dfd4-7cf7-4b15-8af2-775ab78fe485" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc49678a-4894-44f6-9760-5fc302b85e05" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185938Z:dc49678a-4894-44f6-9760-5fc302b85e05" ], + "x-ms-correlation-request-id": [ "8cabe901-ef71-4b50-8c6c-a8402d74136c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002610Z:8cabe901-ef71-4b50-8c6c-a8402d74136c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DFC83F49C4246BEA9A046CF56D41E3B Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:38Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 872DB7A717A84365B2CF495F3EE9BDAE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShellTest-z7cj05b1wo\",\"repositorySiteName\":\"Functions-PowerShellTest-z7cj05b1wo\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-z7cj05b1wo.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:59:05.03\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShellTest-z7cj05b1wo\\\\$Functions-PowerShellTest-z7cj05b1wo\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershelltest-z7cj05b1wo.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "729" ], - "x-ms-client-request-id": [ "277db126-a484-4802-ba47-8b96a97c6851" ], + "x-ms-unique-id": [ "363" ], + "x-ms-client-request-id": [ "11e733c7-e6bd-42e3-a68a-94fda46d0418" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7988,40 +8836,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9263e221-c0e7-4994-8e88-39c47c14e1db" ], + "x-ms-request-id": [ "d3f9aca7-eed0-4bd2-8599-d53cdd4ead40" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3179ae60-16a0-43c8-b57b-3d5bcc56ae7d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c863ba19-47de-48d9-94d6-3e42dd90ea40" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a1d1b41b-9b6f-4585-bbc2-7535d08eb9ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185939Z:a1d1b41b-9b6f-4585-bbc2-7535d08eb9ec" ], + "x-ms-correlation-request-id": [ "537548b9-acff-4f5b-9253-92ffdc8ff044" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002610Z:537548b9-acff-4f5b-9253-92ffdc8ff044" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E42AA0D23F8043FCAC99B438DB8ADE7A Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:38Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D85111AA2EE4EFAAEFC3E49B02BE01F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-z7cj05b1wo\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "730" ], - "x-ms-client-request-id": [ "4e062376-5476-4764-8e87-719d86d78604" ], + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "379e20d7-8619-4c44-9a18-1d21e7dd74bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8033,41 +8881,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "edd9a377-e7fc-4427-b542-6d4d0e623ae7" ], + "x-ms-request-id": [ "79c57044-040a-402b-8fda-15acc32ea240" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ef972e3-9be3-44b7-9de0-5e5664ed7bbd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6659c99f-b134-49cb-b59d-798e18af9dd1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d3a4368-dc0d-4760-8e17-3cd614c75b47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185939Z:0d3a4368-dc0d-4760-8e17-3cd614c75b47" ], + "x-ms-correlation-request-id": [ "26db7681-8d40-46a4-9474-cf10630f9383" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002611Z:26db7681-8d40-46a4-9474-cf10630f9383" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C911BDCB32A4D1899B178B06471064C Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3EDB13B049CB496DAFB1412D3CE5A153 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo/config/web\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "731" ], - "x-ms-client-request-id": [ "a2e60b85-8322-475a-a2f6-445fcf347903" ], + "x-ms-unique-id": [ "365" ], + "x-ms-client-request-id": [ "fe840195-29a5-4a9b-8c6c-6e4e1d722a51" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8079,40 +8927,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e818690-7c48-428a-bd2e-95bd1009fe8e" ], + "x-ms-request-id": [ "0d3ef5ef-4b60-4387-b4d3-8b8f9b95077a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "70602e9a-8000-42c1-96f0-a1b89221e364" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185939Z:70602e9a-8000-42c1-96f0-a1b89221e364" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6202607a-4975-4a65-9279-af10f8c434a3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002611Z:6202607a-4975-4a65-9279-af10f8c434a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD7F785DA24F4C4E9CFFCD5CC884FA6B Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F00BAB18406429B80B134B712A3B662 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShellTest-z7cj05b1wo?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "732" ], - "x-ms-client-request-id": [ "ed40e237-faef-4f3b-bfb3-8184cd784189" ], + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "d45d5eb1-17e3-4989-9103-708c4a7f62aa" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8123,20 +8971,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F43EBA3660\"" ], + "ETag": [ "\"1DCBCB71182E3E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98f16009-db31-41b3-a7b0-111f8460fa6d" ], + "x-ms-request-id": [ "2a1c6b5a-08c5-4feb-b0ce-f860abf8b407" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3c212df-af32-4a49-8fc7-2673bc8da330" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0f5fe7c-429f-4fd9-933c-2a7ed3a564f8" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "faf1609a-7cf9-4305-84ba-2741645b589a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185948Z:faf1609a-7cf9-4305-84ba-2741645b589a" ], + "x-ms-correlation-request-id": [ "9d169686-ca57-457f-9b32-e4c490a41b6a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002621Z:9d169686-ca57-457f-9b32-e4c490a41b6a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5628935842B1447E9221A8D2B74C8D9E Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4B86C8CD9FF4B659F740A94E9DCCCE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:21 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8150,7 +8998,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Java-45u8yx19h0\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-0ehb98v3n4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -8165,18 +9013,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fec7afc4-514c-4eab-8b8c-8e942ab52d4a" ], + "x-ms-request-id": [ "a9cca4b1-6b7d-4216-8738-eccb415faa41" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/79d26ad0-765c-4635-9ddb-fb676d2e05e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c1b8ae13-733f-4388-9a64-cdeb66123226" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a601768e-c07c-4c02-b2d8-6a849fac3de4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185948Z:a601768e-c07c-4c02-b2d8-6a849fac3de4" ], + "x-ms-correlation-request-id": [ "c036e9a3-6aa4-4d45-b3b2-329fe1816e0b" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T002622Z:c036e9a3-6aa4-4d45-b3b2-329fe1816e0b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E736FE2DA4044348B137E7800877B343 Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75872C7C4C434B6AA6DA7DF04EB2F12C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -8194,12 +9042,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "734" ], - "x-ms-client-request-id": [ "917cd44d-25c5-4488-8441-7462c5a59193" ], + "x-ms-unique-id": [ "368" ], + "x-ms-client-request-id": [ "042cf8c6-3ce8-4c2d-ac33-694d6aeb07ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8211,25 +9059,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7976586b-cf1c-402f-a13d-6355a70919e7" ], + "x-ms-request-id": [ "7d061e8d-a381-44b7-8b6f-e01b85d25758" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9d3e5fde-c97b-49ec-b3d5-c8453acabc4c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/7ca8e52b-87a4-436f-b518-5b03c70d10da" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "048f9636-2fb7-409b-82f1-4a6ceacbc649" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185949Z:048f9636-2fb7-409b-82f1-4a6ceacbc649" ], + "x-ms-correlation-request-id": [ "3baa7ec9-3048-442a-8f7e-5836436d1f70" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T002622Z:3baa7ec9-3048-442a-8f7e-5836436d1f70" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2B1B36D612B43C7AC9ACBE74DFB1B59 Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00E80F72ADAA4E83BF887D3F07E8EE57 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37716" ], + "Content-Length": [ "38561" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -8240,12 +9088,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "735" ], - "x-ms-client-request-id": [ "a0b500c7-b315-47e6-92d0-79814de60221" ], + "x-ms-unique-id": [ "369" ], + "x-ms-client-request-id": [ "c03ec5c3-29e0-454b-8062-96236ddf8378" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8256,40 +9104,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c0cfc886-a99f-4032-ae1a-9b66b1739553", "130824ca-5c6f-47e3-bbbb-ca67ae943073", "444b7d9c-b801-4410-913a-b9f2c586ee8f" ], + "x-ms-original-request-ids": [ "aa423480-6ec1-4b58-96d0-6b80448e4a4d", "655453c2-d9c0-40c1-a51d-97c03e6c44b9", "74eced49-7eca-45ef-8f2c-ae69c60017ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "96a57172-646a-418c-ba17-3e8f708acc74" ], - "x-ms-correlation-request-id": [ "96a57172-646a-418c-ba17-3e8f708acc74" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185949Z:96a57172-646a-418c-ba17-3e8f708acc74" ], + "x-ms-request-id": [ "0bda0d75-4bb4-422d-9088-d735cc8e8804" ], + "x-ms-correlation-request-id": [ "0bda0d75-4bb4-422d-9088-d735cc8e8804" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002623Z:0bda0d75-4bb4-422d-9088-d735cc8e8804" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD6F3C527ED9452E82E0F95D9508E0D9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D499551147146A3910785BCC68951E4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "736" ], - "x-ms-client-request-id": [ "84e2a3af-bb74-4d19-befc-63adf1bed08f" ], + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "a0c2579f-d753-4276-8aad-7fbb0ce10f27" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8300,16 +9148,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "91524c90-48b3-4bf1-b457-c9e8bd812dd0" ], + "x-ms-request-id": [ "5db0c8bf-3787-4a37-b959-4dd0e0769dfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b5c2ef63-633e-4bc4-ab5c-188599031cc7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/503ebcdc-cbac-4445-ad5d-c6b50fc7a87f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cc533c9e-c78b-46aa-bc18-984f8a335947" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T185949Z:cc533c9e-c78b-46aa-bc18-984f8a335947" ], + "x-ms-correlation-request-id": [ "17e156c3-2b5d-4d00-b8f3-f30dcffddbd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002623Z:17e156c3-2b5d-4d00-b8f3-f30dcffddbd3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AAD772FB597847369EDC64CBD5FD9A68 Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC7BDF7BC9AF442989AFE52E63CC69EA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -8320,10 +9168,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Insights/components/Functions-Java-45u8yx19h0?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Java-0ehb98v3n4?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Insights/components/Functions-Java-45u8yx19h0?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Java-0ehb98v3n4?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -8343,30 +9191,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9b2bc3c-02e4-4a39-a46f-e0f31c5d4550" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c14cb83d-86ba-4573-bfee-0f28fe9f5c43" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "76672730-e9d4-4b21-a9a1-277c7f2342db" ], - "x-ms-correlation-request-id": [ "76672730-e9d4-4b21-a9a1-277c7f2342db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T185954Z:76672730-e9d4-4b21-a9a1-277c7f2342db" ], + "x-ms-request-id": [ "2d01294f-ca42-4745-9508-9ee01d686e7d" ], + "x-ms-correlation-request-id": [ "2d01294f-ca42-4745-9508-9ee01d686e7d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002628Z:2d01294f-ca42-4745-9508-9ee01d686e7d" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 269AAD020CCE452EAD1A98DAB17976CA Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:59:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DFCEC11F50A433A950DC5EBF644ADD3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1625" ], + "Content-Length": [ "1626" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a2009aff-0000-0300-0000-691b70aa0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-Java-45u8yx19h0\",\r\n \"name\": \"Functions-Java-45u8yx19h0\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-45u8yx19h0\",\r\n \"AppId\": \"12a70cd2-4fe5-480f-87b1-1d883af8f57e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"4ec93e5d-fd01-4b5e-b400-a70af83aa4e8\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Java-45u8yx19h0\",\r\n \"CreationDate\": \"2025-11-17T18:59:50.400688+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-45u8yx19h0_12a70cd2-4fe5-480f-87b1-1d883af8f57e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-45u8yx19h0-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c2025b94-0000-0300-0000-69c47d340000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Java-0ehb98v3n4\",\r\n \"name\": \"Functions-Java-0ehb98v3n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-0ehb98v3n4\",\r\n \"AppId\": \"5e6a4135-3c4e-4226-8637-1225684a12ad\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"311d7fd0-0184-4a35-92aa-3a6c064497e9\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Java-0ehb98v3n4\",\r\n \"CreationDate\": \"2026-03-26T00:26:24.4752228+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-0ehb98v3n4_5e6a4135-3c4e-4226-8637-1225684a12ad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-0ehb98v3n4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Java|21\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"java\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-45u8yx19h0\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Java|21\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"java\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-0ehb98v3n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8380,43 +9228,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F45D9C4CB5\"" ], + "ETag": [ "\"1DCBCB731A2DE6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff474238-4aac-4e76-a09a-d373e8aeb455" ], + "x-ms-request-id": [ "b544a2f0-d0dd-4726-8767-23448ad648b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1d722402-3acb-44a9-8b44-7b3b51b1a428" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45dfc217-ce93-43f8-a402-eaaefd86f22b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "7d650aa7-30ba-41d1-b95f-7a71c16b7eb3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190016Z:7d650aa7-30ba-41d1-b95f-7a71c16b7eb3" ], + "x-ms-correlation-request-id": [ "083662ca-42e1-4824-96a6-f3d8d0dd3014" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002651Z:083662ca-42e1-4824-96a6-f3d8d0dd3014" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2AA3BAF55D7741FAB23756DD8D3E24F1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:59:54Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49C7078F71DD4A3482442F9859AAD84D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:26:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8269" ], + "Content-Length": [ "8387" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-45u8yx19h0\",\"state\":\"Running\",\"hostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Java-45u8yx19h0\",\"repositorySiteName\":\"Functions-Java-45u8yx19h0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\",\"functions-java-45u8yx19h0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-45u8yx19h0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:59:56.2033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-45u8yx19h0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-45u8yx19h0\\\\$Functions-Java-45u8yx19h0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:30.3066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "739" ], - "x-ms-client-request-id": [ "92983b6f-67d5-41b5-8a40-658eb8d7f263" ], + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "e5927813-6831-4695-834a-ff4a9c890110" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -8426,42 +9274,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F468D812A0\"" ], + "ETag": [ "1DCBCB73D80E4CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dff800ac-7a4a-4975-9da6-a13f69e18dca" ], + "x-ms-request-id": [ "48f401ec-4846-405e-86a8-97be6899c11b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7d8d6bdf-f3c3-4530-851e-89745183e28b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190046Z:7d8d6bdf-f3c3-4530-851e-89745183e28b" ], + "x-ms-correlation-request-id": [ "d631d971-359c-4f50-8960-fd7ad9715fbe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002722Z:d631d971-359c-4f50-8960-fd7ad9715fbe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 336F2560B75B4FB68EFC4657DBE4A6B9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:46Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCBA82B3123C4B15AB93A7478CF885F4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-45u8yx19h0\",\"state\":\"Running\",\"hostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Java-45u8yx19h0\",\"repositorySiteName\":\"Functions-Java-45u8yx19h0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\",\"functions-java-45u8yx19h0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-45u8yx19h0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:00:15.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-45u8yx19h0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-45u8yx19h0\\\\$Functions-Java-45u8yx19h0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "740" ], - "x-ms-client-request-id": [ "f59bf2dc-c930-4142-a421-114f0b0c0b82" ], + "x-ms-unique-id": [ "374" ], + "x-ms-client-request-id": [ "859ee378-1b48-42ee-9dfd-271c1a5c466d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8472,42 +9320,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F468D812A0\"" ], + "ETag": [ "1DCBCB73D80E4CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d5fcce4-422e-41ef-9128-6115bf2bb060" ], + "x-ms-request-id": [ "96a898f7-8137-4f92-b4fc-b275f1724baa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d5a59a37-3e2d-47a8-b29b-497a9a698da6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190046Z:d5a59a37-3e2d-47a8-b29b-497a9a698da6" ], + "x-ms-correlation-request-id": [ "c66a104d-fe84-4a17-a109-33571bcf9095" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002722Z:c66a104d-fe84-4a17-a109-33571bcf9095" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 33159CEE06434FEB93E3BC3761ACE8F0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:46Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9CFC927F07E4DC38152EC91906903A7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-45u8yx19h0\",\"state\":\"Running\",\"hostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Java-45u8yx19h0\",\"repositorySiteName\":\"Functions-Java-45u8yx19h0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\",\"functions-java-45u8yx19h0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-45u8yx19h0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:00:15.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-45u8yx19h0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-45u8yx19h0\\\\$Functions-Java-45u8yx19h0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "741" ], - "x-ms-client-request-id": [ "81b6077b-6889-41b5-a84f-a27e608f6880" ], + "x-ms-unique-id": [ "375" ], + "x-ms-client-request-id": [ "5fd4fc16-56a1-459d-93cd-0e273aba9b37" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8519,40 +9367,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c4a353dd-2c52-4a54-a8a1-22b07b1e627d" ], + "x-ms-request-id": [ "4248965a-15b0-4322-b1ff-9e4a46f5fba7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2b32a56f-3aec-4cf3-9648-90ee1a339c4e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20236da5-e26d-442a-856f-583b01dd6e30" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e9bff885-db9b-4936-be43-43489cec7b45" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190047Z:e9bff885-db9b-4936-be43-43489cec7b45" ], + "x-ms-correlation-request-id": [ "56253ff8-1557-4e3b-8d94-17cf94bb9726" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002722Z:56253ff8-1557-4e3b-8d94-17cf94bb9726" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B4542288E8E4BD38BC1D9B41EF88D27 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:46Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C335387B8334CB38AFC68923680C780 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-45u8yx19h0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "742" ], - "x-ms-client-request-id": [ "d19b1033-529e-4567-a0ab-a4b414a2977d" ], + "x-ms-unique-id": [ "376" ], + "x-ms-client-request-id": [ "40b03f90-9b69-411c-a600-c85afdc1f4ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8564,41 +9412,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "415a1f2a-de68-4e6b-8613-3f31d168712b" ], + "x-ms-request-id": [ "918fb7a0-13d3-40f7-8372-2b473a287e00" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f50fe1b-6d30-4873-b637-98a0c3f3fbbe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36f13ce9-e77a-4196-8558-eeabca665985" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4108f020-4294-471c-b2f8-7c19dfce7dca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190047Z:4108f020-4294-471c-b2f8-7c19dfce7dca" ], + "x-ms-correlation-request-id": [ "72ded56a-4461-4f8c-a8ff-9b396b958afa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002723Z:72ded56a-4461-4f8c-a8ff-9b396b958afa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19B351CFF3B3400398787D03D671D50B Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:47Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 043B37659A48400D978C0A7AE5A2E2DE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "743" ], - "x-ms-client-request-id": [ "dc449bf3-0703-4e7f-bcaf-b11c70c18320" ], + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "a63e6e34-292d-400f-b833-b216b01cb4b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8610,40 +9458,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aea457a5-4a01-45b6-be44-7d1efa212467" ], + "x-ms-request-id": [ "2403426e-7dec-41f8-a2af-4f145c5d5698" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae705e93-5db2-4ee9-bbbd-947ca6ccba10" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7cdb6d52-5307-441c-84f9-b0506c20da43" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "33042c29-cf34-4055-9d6a-aed431182ddf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190047Z:33042c29-cf34-4055-9d6a-aed431182ddf" ], + "x-ms-correlation-request-id": [ "8f7ad245-f951-4cb5-9b27-a28de4667ca4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002723Z:8f7ad245-f951-4cb5-9b27-a28de4667ca4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D30585795F294454AFFCD3B1921FA101 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:47Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45148B2E87A04C59A827D685D352E835 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-45u8yx19h0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "744" ], - "x-ms-client-request-id": [ "8280dc8d-2ee1-4704-8424-ff8cf2f17681" ], + "x-ms-unique-id": [ "378" ], + "x-ms-client-request-id": [ "4c095a37-edbb-43f1-bde3-f347dc69a615" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8654,42 +9502,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F468D812A0\"" ], + "ETag": [ "1DCBCB73D80E4CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "760c0367-52a6-42b9-924e-eacd7a75d90c" ], + "x-ms-request-id": [ "d1ce9d1c-1d6c-488a-ad89-5fd00f22655c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1c407862-1dad-4ca6-a968-a85a77db72f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190048Z:1c407862-1dad-4ca6-a968-a85a77db72f9" ], + "x-ms-correlation-request-id": [ "f8d185a7-ac0d-4f55-a61f-58b448bf8a83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002723Z:f8d185a7-ac0d-4f55-a61f-58b448bf8a83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EB761A5B144482D8FAB0AEE572BB70B Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:47Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1BA6AEC2D3B94D1297468608D2303225 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-45u8yx19h0\",\"state\":\"Running\",\"hostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Java-45u8yx19h0\",\"repositorySiteName\":\"Functions-Java-45u8yx19h0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\",\"functions-java-45u8yx19h0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-45u8yx19h0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:00:15.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-45u8yx19h0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-45u8yx19h0\\\\$Functions-Java-45u8yx19h0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "745" ], - "x-ms-client-request-id": [ "0657b160-3bcf-404c-9bad-5ddfc4d1b82f" ], + "x-ms-unique-id": [ "379" ], + "x-ms-client-request-id": [ "330bfa37-79b9-49c7-9ec3-4055276fc3c2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8701,40 +9549,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "025f3f61-efb1-43d1-995f-1839cb8ec696" ], + "x-ms-request-id": [ "0dd34791-929d-4ff4-a130-39e29e5b753c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47b9ffde-2ace-4a7c-afc1-6cbd523b0a68" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3786551-0024-4a48-89ce-0d2dc5d31344" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f858fae8-45c7-498f-9ed4-247127455f44" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190048Z:f858fae8-45c7-498f-9ed4-247127455f44" ], + "x-ms-correlation-request-id": [ "ef6c3b9a-7fd6-497e-87ea-938bf7dd037f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002724Z:ef6c3b9a-7fd6-497e-87ea-938bf7dd037f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87B82C179313428A84CF44C38E877DD4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:48Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 182DDB27567F46FB83244255F1AEFB1C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-45u8yx19h0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "746" ], - "x-ms-client-request-id": [ "8a994017-0202-45c8-a83e-3a5848044aa9" ], + "x-ms-unique-id": [ "380" ], + "x-ms-client-request-id": [ "794e501c-51d8-459f-b96c-e965643f50ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8746,41 +9594,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77fb7d87-4c87-457b-b8fa-dd655f570d9a" ], + "x-ms-request-id": [ "8ec79e40-242e-4788-8fb8-82515aca8020" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3f04bfdd-446f-4002-87f4-2efbef7aac86" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/66b27820-fa6f-4101-b68d-4df6a060eac8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7cf507c9-32db-4783-a2c7-bf9833c35667" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190048Z:7cf507c9-32db-4783-a2c7-bf9833c35667" ], + "x-ms-correlation-request-id": [ "f6284b43-53fd-41b5-bdab-fdac7f5d4241" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002724Z:f6284b43-53fd-41b5-bdab-fdac7f5d4241" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA516871C91A40EC853E3844FE33A1AF Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:48Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6499B70AC5BA461DA6ECC48E881D3ED8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "747" ], - "x-ms-client-request-id": [ "3802c6ec-b364-4bf7-9ad4-2b1276114a5c" ], + "x-ms-unique-id": [ "381" ], + "x-ms-client-request-id": [ "f8ede7e7-a415-455f-9f1d-ff9d09fb3e9e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8791,42 +9639,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F468D812A0\"" ], + "ETag": [ "1DCBCB73D80E4CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a340570-7b92-44b1-82c8-c6d1ed969c91" ], + "x-ms-request-id": [ "1aaa2b4b-72d2-4525-8900-e8af38815f5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b6098db-9ff2-498a-a28e-cb11941e1f54" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190048Z:1b6098db-9ff2-498a-a28e-cb11941e1f54" ], + "x-ms-correlation-request-id": [ "4025026f-a5e8-4909-b9e1-35a8bbfa5467" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002724Z:4025026f-a5e8-4909-b9e1-35a8bbfa5467" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE8685D26E4D47E09F4E4A2CB3BC19DE Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:48Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D600B93F42544EB96D0173EF0287328 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-45u8yx19h0\",\"state\":\"Running\",\"hostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Java-45u8yx19h0\",\"repositorySiteName\":\"Functions-Java-45u8yx19h0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-45u8yx19h0.azurewebsites.net\",\"functions-java-45u8yx19h0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-45u8yx19h0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:00:15.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-45u8yx19h0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-45u8yx19h0\\\\$Functions-Java-45u8yx19h0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-java-45u8yx19h0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "748" ], - "x-ms-client-request-id": [ "90a6457a-673c-45e4-8402-aeb429a83615" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "de790e2f-c9cb-44ac-a02f-750c1e345fa0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8838,40 +9686,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbb0917f-d754-470d-88fb-cda312631497" ], + "x-ms-request-id": [ "dc631c09-0b01-47fa-9084-6e7c77d62935" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2b00fda6-8547-4394-b6ab-b3523e7a26f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb8fa594-68e0-4c4a-b4be-f7c08981acd3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b87e34c3-412f-4179-ad1c-4e339973bef8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190049Z:b87e34c3-412f-4179-ad1c-4e339973bef8" ], + "x-ms-correlation-request-id": [ "c615d68c-4123-45b9-9040-bbff594af796" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002725Z:c615d68c-4123-45b9-9040-bbff594af796" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D7403D702CF40C192429FD47F1945DF Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:49Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2443E0713ECC48E2A98942E52B2FA7F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-45u8yx19h0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "749" ], - "x-ms-client-request-id": [ "87860070-ec71-4d7d-bdad-6c9cf3aa1a9a" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "acab7e42-b220-473a-b199-8166fa1bf113" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8883,41 +9731,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5ffe5c6-2bf2-4ca2-afe6-1edb2b272d2c" ], + "x-ms-request-id": [ "a6845851-9e3e-40b8-af91-e1e2ca18678a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ab35b8c-6f40-4435-87f1-cf97eda515cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd41a3b9-d325-48b9-a426-6b553da2f375" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "65e4dd5a-2e2c-4a77-925f-f798ac13bd67" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190049Z:65e4dd5a-2e2c-4a77-925f-f798ac13bd67" ], + "x-ms-correlation-request-id": [ "84a15d83-48b1-4cd4-bb30-e3a17977fc4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002725Z:84a15d83-48b1-4cd4-bb30-e3a17977fc4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA3EB9FFA83C4242926FD6A286FD3B81 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:49Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 793E2D7C7780473D9287E071D2EEDFD6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0/config/web\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "750" ], - "x-ms-client-request-id": [ "80cf6ab1-52ac-4e33-a1ae-a31593530cea" ], + "x-ms-unique-id": [ "384" ], + "x-ms-client-request-id": [ "ff97a57c-b625-4122-82f1-2ae05363707c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8929,40 +9777,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f1b1182e-d1c4-4aad-a597-d7973d711112" ], + "x-ms-request-id": [ "293f8bc7-7473-4774-880d-2c7dc2f6a775" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62a315bb-d7dd-434f-b084-a410b54844de" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190049Z:62a315bb-d7dd-434f-b084-a410b54844de" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "04d968cb-9c15-4a62-8093-cc4de91a9245" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002725Z:04d968cb-9c15-4a62-8093-cc4de91a9245" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76F46622BF1345258C980582CC70C33C Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:49Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A506D91D2304FF38A12DC22FECEA031 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Java-45u8yx19h0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "751" ], - "x-ms-client-request-id": [ "62469cda-3cb8-45e7-8ac0-ca061e7a5f10" ], + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "4a912f63-22dd-44d0-8b1c-27b1d37ce251" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8973,20 +9821,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F468D812A0\"" ], + "ETag": [ "\"1DCBCB73D80E4CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb794009-20d0-4263-881d-3a7290c57256" ], + "x-ms-request-id": [ "1f701681-fa0e-49c3-a5f6-a64615bf237f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7a939c2-413a-4b95-90e8-92cb65146397" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "51893091-f05b-46ec-a0da-37d38037b4f5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190057Z:51893091-f05b-46ec-a0da-37d38037b4f5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ee8c4b3-162d-467d-8db1-3ddd73399c1c" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "7afe7647-ea14-4f43-a39e-7a1e98eba3f0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002734Z:7afe7647-ea14-4f43-a39e-7a1e98eba3f0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E801E448A95142AE97D69B92ADCE858C Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:50Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF50315722BC4821921557E046731A24 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9000,7 +9848,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Node-hwu6yrk3xi\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-ulmzgn9t6x\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9015,18 +9863,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dca6916a-5713-404e-83fc-a48244a392e5" ], + "x-ms-request-id": [ "836ad2d6-fde3-467f-aafb-0047b2c08e56" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08e5d27a-61ea-4d53-9fee-9283ae5dd18b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1b57afca-14a4-4135-9158-8f006f5009a3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "323c2558-72ba-42b2-baef-a7cfed540358" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190058Z:323c2558-72ba-42b2-baef-a7cfed540358" ], + "x-ms-correlation-request-id": [ "a04699b8-e752-45d2-b526-1afa9cdf4a8c" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T002734Z:a04699b8-e752-45d2-b526-1afa9cdf4a8c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F9C8E47F115464497822BE983E54D39 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C2304D1EB664891B9D8DA1B8EC96CE2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9044,12 +9892,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "753" ], - "x-ms-client-request-id": [ "95a0cfef-b068-41ea-a169-fdae0c851b62" ], + "x-ms-unique-id": [ "387" ], + "x-ms-client-request-id": [ "6ef0b14a-c0dd-43ef-8752-41968cda51bb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9061,25 +9909,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b861826c-e982-4022-96b7-cf52915c8553" ], + "x-ms-request-id": [ "890a05df-aa06-482b-94d0-e9d5388a3252" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/708e9928-e928-4749-b788-2992c9e0ccdf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/35133b5a-39aa-4706-b522-c6b84666bc4a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "10f9f784-77e2-4c00-8f59-ce5624024829" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T190058Z:10f9f784-77e2-4c00-8f59-ce5624024829" ], + "x-ms-correlation-request-id": [ "1c7fa30b-54ed-4243-9b2e-e3a6b6d8391e" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T002735Z:1c7fa30b-54ed-4243-9b2e-e3a6b6d8391e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A057CFD4E8504B69A557DD0FF247244D Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4582AF8BB874945B67CB03776847E5B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "37716" ], + "Content-Length": [ "38561" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinc-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE,,;LINUXFREE,,\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -9090,12 +9938,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "754" ], - "x-ms-client-request-id": [ "de5bea0f-f094-404a-9fda-7968db888433" ], + "x-ms-unique-id": [ "388" ], + "x-ms-client-request-id": [ "8bc3fdf3-6274-4369-907f-554d9abd6f9d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9106,40 +9954,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3d93926d-0203-4636-bfd8-49cef21a9b7d", "640cecf8-48b2-446e-b57c-c5bbfe1b4b0e", "65b9f06c-1435-4e75-a296-5257d799b81a" ], + "x-ms-original-request-ids": [ "67dab7b9-5f0e-46d3-9e00-0e12ba89b1e9", "b4ce4a61-fe80-45ab-b71c-088ab32eb86f", "502e33b7-ee1c-452d-ac61-a2f6207dfe35" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "639ded94-95ce-4d14-abed-b9e3eb39be52" ], - "x-ms-correlation-request-id": [ "639ded94-95ce-4d14-abed-b9e3eb39be52" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T190058Z:639ded94-95ce-4d14-abed-b9e3eb39be52" ], + "x-ms-request-id": [ "0a09019c-41e8-486d-a3af-1ca838edb84a" ], + "x-ms-correlation-request-id": [ "0a09019c-41e8-486d-a3af-1ca838edb84a" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002735Z:0a09019c-41e8-486d-a3af-1ca838edb84a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ACCB6DFBFE8C47FFAFC5FF960C2D051B Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8EA5AE4FA7EA460D8DAB84F96EE4817F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "755" ], - "x-ms-client-request-id": [ "3afd4e91-cb85-46e3-b497-13c9f32c94b6" ], + "x-ms-unique-id": [ "389" ], + "x-ms-client-request-id": [ "bbf67406-f442-4abd-a293-111d98e0ad3d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9150,16 +9998,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2c4941bc-a1c4-49aa-b129-1a2ff40b0286" ], + "x-ms-request-id": [ "a82bb1a2-187c-40e9-bf65-6dbc7781e7fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/46d68a59-8396-4d1e-902d-d0f9782f4dd6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/112c2c91-f0e1-4a41-a46a-c816da9be069" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "987423ee-3342-4847-bf1a-58a9fac7e089" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T190059Z:987423ee-3342-4847-bf1a-58a9fac7e089" ], + "x-ms-correlation-request-id": [ "c9d9a71f-b56a-417e-b8ad-a5ce08aa62d5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002735Z:c9d9a71f-b56a-417e-b8ad-a5ce08aa62d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB17B05201E94C299D216C88D2653678 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:00:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3542C509339B4A5F864452AF8C0ADC73 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -9170,10 +10018,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Insights/components/Functions-Node-hwu6yrk3xi?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Node-ulmzgn9t6x?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Insights/components/Functions-Node-hwu6yrk3xi?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Node-ulmzgn9t6x?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -9193,30 +10041,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dced8659-e7ed-4adf-a163-4f73bb0fe1fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a78f54d8-29f9-4319-85ae-a48ff4aac8f7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "2355aeb2-cc16-48f1-96c6-d0d0b023cf8b" ], - "x-ms-correlation-request-id": [ "2355aeb2-cc16-48f1-96c6-d0d0b023cf8b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190104Z:2355aeb2-cc16-48f1-96c6-d0d0b023cf8b" ], + "x-ms-request-id": [ "7aa0cd4b-3288-4f6c-b7bf-0e41a287f507" ], + "x-ms-correlation-request-id": [ "7aa0cd4b-3288-4f6c-b7bf-0e41a287f507" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002740Z:7aa0cd4b-3288-4f6c-b7bf-0e41a287f507" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4F8A4D4487E422BAFA2DFB1323C3D08 Ref B: MWH011020807031 Ref C: 2025-11-17T19:00:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC15383EA7D74C088CFDD851B4590E9F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:27:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1626" ], + "Content-Length": [ "1625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a300d712-0000-0300-0000-691b70f00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-Node-hwu6yrk3xi\",\r\n \"name\": \"Functions-Node-hwu6yrk3xi\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-hwu6yrk3xi\",\r\n \"AppId\": \"6dff4d2e-5273-454f-b31d-10bb789eff8e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b927f92e-6770-4572-b0d6-4bfe3f322e08\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-hwu6yrk3xi\",\r\n \"CreationDate\": \"2025-11-17T19:00:59.7869101+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-hwu6yrk3xi_6dff4d2e-5273-454f-b31d-10bb789eff8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-hwu6yrk3xi-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202879c-0000-0300-0000-69c47d7c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Node-ulmzgn9t6x\",\r\n \"name\": \"Functions-Node-ulmzgn9t6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-ulmzgn9t6x\",\r\n \"AppId\": \"bd1bdd37-258b-403c-a3bc-b5c76b3ef239\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c8eaf0a1-f9dd-4e62-b1ce-11225f20dd09\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-ulmzgn9t6x\",\r\n \"CreationDate\": \"2026-03-26T00:27:36.505767+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-ulmzgn9t6x_bd1bdd37-258b-403c-a3bc-b5c76b3ef239_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-ulmzgn9t6x-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Node|22\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"node\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-hwu6yrk3xi\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Node|22\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"node\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-ulmzgn9t6x\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -9230,43 +10078,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F48760A44B\"" ], + "ETag": [ "\"1DCBCB75C1DCECB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8fbbc89-ebdd-4a3e-a37a-c63a403cf253" ], + "x-ms-request-id": [ "c30dddd1-207d-4d68-9abc-5ca840a0b3bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/920a58d2-9545-45f3-848e-95b5f247decc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3c2599b-719f-40f3-96e2-3f00fa86f071" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "65bfb614-2071-461c-ab84-1d80faa8d252" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190126Z:65bfb614-2071-461c-ab84-1d80faa8d252" ], + "x-ms-correlation-request-id": [ "6c0674c1-0977-47ca-a693-669ce8cbf96f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002804Z:6c0674c1-0977-47ca-a693-669ce8cbf96f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 546B069E4E394E4E8B75D5140E067B9E Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:04Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A580DE34AA94229913450FDA11C56AA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8269" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-hwu6yrk3xi\",\"state\":\"Running\",\"hostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Node-hwu6yrk3xi\",\"repositorySiteName\":\"Functions-Node-hwu6yrk3xi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:01:06.2366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-hwu6yrk3xi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-hwu6yrk3xi\\\\$Functions-Node-hwu6yrk3xi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:27:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "758" ], - "x-ms-client-request-id": [ "e3f24ada-b673-4296-8d90-281df2c8e6aa" ], + "x-ms-unique-id": [ "392" ], + "x-ms-client-request-id": [ "ed8d602d-52e4-4889-b718-f0fc8811760f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -9276,42 +10124,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F492ACB0E0\"" ], + "ETag": [ "1DCBCB768D81160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72f18034-e949-46e5-bd6d-c2743f083806" ], + "x-ms-request-id": [ "48024925-a70e-47f4-aad5-a91259eb82e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3c44a860-c9ef-4dc9-ac86-4a1006f496a9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190156Z:3c44a860-c9ef-4dc9-ac86-4a1006f496a9" ], + "x-ms-correlation-request-id": [ "160b4336-72e2-45f3-a793-169863828497" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002834Z:160b4336-72e2-45f3-a793-169863828497" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 164F9CD40FB44308B510AE6513432CA4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:56Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 699444BB02384F34A8083EF40C81CCEE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-hwu6yrk3xi\",\"state\":\"Running\",\"hostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Node-hwu6yrk3xi\",\"repositorySiteName\":\"Functions-Node-hwu6yrk3xi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:01:25.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-hwu6yrk3xi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-hwu6yrk3xi\\\\$Functions-Node-hwu6yrk3xi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "759" ], - "x-ms-client-request-id": [ "33ae31b4-d39d-4ade-a69d-c45b45e7dcdf" ], + "x-ms-unique-id": [ "393" ], + "x-ms-client-request-id": [ "79b417ef-a926-439c-8073-1fcaf9188e2c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9322,42 +10170,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F492ACB0E0\"" ], + "ETag": [ "1DCBCB768D81160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "332467fe-6847-48e6-aa62-1a23e11d7fdf" ], + "x-ms-request-id": [ "d71f326d-d808-45a6-a524-abea576bf320" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fbd66549-cd88-4300-b951-7c4e3fe27501" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190156Z:fbd66549-cd88-4300-b951-7c4e3fe27501" ], + "x-ms-correlation-request-id": [ "8100c5ba-56c2-4405-895e-90e1cfea3530" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002835Z:8100c5ba-56c2-4405-895e-90e1cfea3530" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 916BA507C623474B869DDE086338F7ED Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:56Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF849DCD09FB46E9892E0B187920925B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-hwu6yrk3xi\",\"state\":\"Running\",\"hostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Node-hwu6yrk3xi\",\"repositorySiteName\":\"Functions-Node-hwu6yrk3xi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:01:25.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-hwu6yrk3xi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-hwu6yrk3xi\\\\$Functions-Node-hwu6yrk3xi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "760" ], - "x-ms-client-request-id": [ "b41f0ed2-97a2-4fed-af00-50a155e7cd24" ], + "x-ms-unique-id": [ "394" ], + "x-ms-client-request-id": [ "03920cee-617a-46f1-b0e2-66ca6312d067" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9369,40 +10217,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7a34acf-f1d1-4b5f-9053-5a44a64c3384" ], + "x-ms-request-id": [ "c35daf97-8d73-41f1-bbae-ef71ed2cc8ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c6aa13a-cd59-4e41-b211-d6e2e74bf85e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2c3493e-779e-404f-9c41-aea0a0c4883a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0d2db10a-5da6-4be7-98d9-f169bc6972f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190157Z:0d2db10a-5da6-4be7-98d9-f169bc6972f7" ], + "x-ms-correlation-request-id": [ "8e13f745-587d-4357-aa10-593271dc5958" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002835Z:8e13f745-587d-4357-aa10-593271dc5958" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE563D8BF0D74C899B0FDD1292724B5D Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA5822C4491B4A2F860CDFBF26C0DA40 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-hwu6yrk3xi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "761" ], - "x-ms-client-request-id": [ "c15e696d-441d-4902-baf6-ffdca40f217e" ], + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "1bd8e56f-e116-450f-b4cb-3f1cc9f44916" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9414,41 +10262,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "56a63903-932f-4e35-b51d-517649f155cb" ], + "x-ms-request-id": [ "f862fad5-a70d-4cd8-b40f-28c58964bb5d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f634d096-a444-4210-af4b-36838649de15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "15e4109c-6906-4716-b2ed-1bd6ff3a4e24" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190157Z:15e4109c-6906-4716-b2ed-1bd6ff3a4e24" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16691b2e-9d0f-4c3b-b907-40a741e21a0e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0c46e115-772b-4a86-b7d0-5d9f390458f4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002835Z:0c46e115-772b-4a86-b7d0-5d9f390458f4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58E9C97BEE784C1A937F0DB3061F1857 Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D89A2A411231425688F625686B5F82A3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "762" ], - "x-ms-client-request-id": [ "85e58e30-4127-4575-b44f-db43dbc99e4f" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "ba894d6d-b261-471f-b763-2ba8d932c82a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9460,40 +10308,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51a5bf00-20c0-4e10-8c52-53e486b0c89e" ], + "x-ms-request-id": [ "5604b7ca-0aa8-4eb2-ab24-12127499f6bc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/524eec80-7971-4963-8852-d5cb47fd0e7c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "bee4c9dd-11c7-4d18-9ba5-d6cb48b643a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190157Z:bee4c9dd-11c7-4d18-9ba5-d6cb48b643a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/038168b3-eabe-4ff6-a993-9b269b5e91ba" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7fd7a21b-fec4-49d5-9317-52f39cd532d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002836Z:7fd7a21b-fec4-49d5-9317-52f39cd532d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78BDD1A2A1B246CCAFA656A85A337909 Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FB3BABE5A5144B2BE24D866202783E4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-hwu6yrk3xi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "763" ], - "x-ms-client-request-id": [ "7ca51d5b-d4a0-43d6-a2e8-bc9cf79ddc60" ], + "x-ms-unique-id": [ "397" ], + "x-ms-client-request-id": [ "36c109ce-09ea-42b7-b0a9-aa6aa3f16c62" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9504,42 +10352,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F492ACB0E0\"" ], + "ETag": [ "1DCBCB768D81160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c72477bf-05c4-415c-a2f5-476c58fff021" ], + "x-ms-request-id": [ "6d948416-1369-405a-a813-348ed80ecee9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e9cabb2-6e20-43c4-9846-59f2f70a1e24" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190158Z:9e9cabb2-6e20-43c4-9846-59f2f70a1e24" ], + "x-ms-correlation-request-id": [ "80c5e3b1-fd19-4836-a38b-a897f750e834" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002836Z:80c5e3b1-fd19-4836-a38b-a897f750e834" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 806B102232EF4D198BD7879581F68B26 Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3078F9610474436EBA81BCB0AFF9924C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-hwu6yrk3xi\",\"state\":\"Running\",\"hostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Node-hwu6yrk3xi\",\"repositorySiteName\":\"Functions-Node-hwu6yrk3xi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:01:25.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-hwu6yrk3xi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-hwu6yrk3xi\\\\$Functions-Node-hwu6yrk3xi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "764" ], - "x-ms-client-request-id": [ "a2b0fdce-2ff0-4b4e-9a5e-92c0cfaa2c94" ], + "x-ms-unique-id": [ "398" ], + "x-ms-client-request-id": [ "fe9d7347-a0cc-40e1-8b55-52f132a6ea8f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9551,40 +10399,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "103a3e65-31f0-435a-ad45-b69d43e2c8e2" ], + "x-ms-request-id": [ "41d9223a-026f-4076-b9ac-07328a134aa2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c16e200-374a-4178-bec5-5955c827cc71" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0af06aaa-875a-479e-a266-32a97e9d003b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "93bc2fbe-17c0-400e-96a6-4231cee06cf2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190158Z:93bc2fbe-17c0-400e-96a6-4231cee06cf2" ], + "x-ms-correlation-request-id": [ "2095b6d4-ba73-4560-843e-98dfcde9a2f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002836Z:2095b6d4-ba73-4560-843e-98dfcde9a2f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4618AFC3423744D49F6EB1431248AF85 Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A717AA4E4634AF2B3EABBC92F82F4DC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-hwu6yrk3xi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "765" ], - "x-ms-client-request-id": [ "96244ab9-8a20-484b-ad53-0c5c3e5ee78c" ], + "x-ms-unique-id": [ "399" ], + "x-ms-client-request-id": [ "b8fd2901-8c05-4aff-864f-cf9a994924ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9596,41 +10444,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7c1c7f61-5e4c-46e6-89aa-638796ab96e6" ], + "x-ms-request-id": [ "d8312523-dcac-49d6-af35-e3658f55df0d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/03fe5173-2968-49e5-8f5a-58defb859cb3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47b736e7-51be-4813-a760-4b655d4ecd02" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1fb187e1-ece4-4bce-ba92-ac93b9ea2fc3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190158Z:1fb187e1-ece4-4bce-ba92-ac93b9ea2fc3" ], + "x-ms-correlation-request-id": [ "534979a4-46f0-42fc-aa11-804bc6bfb573" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002837Z:534979a4-46f0-42fc-aa11-804bc6bfb573" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90634FE8DFB24546A705FF3E86B0E50A Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B449D5BA68DE4FEA8991D4A0C551FB07 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "766" ], - "x-ms-client-request-id": [ "49ee37bc-131d-4351-b2d7-2f249ecfb9ae" ], + "x-ms-unique-id": [ "400" ], + "x-ms-client-request-id": [ "6d6f3967-e795-4130-b692-8880b676636f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9641,42 +10489,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F492ACB0E0\"" ], + "ETag": [ "1DCBCB768D81160" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4e1ece4-78e7-4370-abe0-972b32b03362" ], + "x-ms-request-id": [ "b75742e2-7237-4567-80d5-4f028e109f7f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1afb28bc-2bbe-4749-8ca4-fcfcc559dafa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190159Z:1afb28bc-2bbe-4749-8ca4-fcfcc559dafa" ], + "x-ms-correlation-request-id": [ "aaac38f1-cf48-4a31-a988-a5ebc15e6e1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002837Z:aaac38f1-cf48-4a31-a988-a5ebc15e6e1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE4516272AA34D46AB9869EF4A731CC8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D21AF8F4BB2247778B17ABE627E2E843 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8247" ], + "Content-Length": [ "8187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-hwu6yrk3xi\",\"state\":\"Running\",\"hostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Node-hwu6yrk3xi\",\"repositorySiteName\":\"Functions-Node-hwu6yrk3xi\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-hwu6yrk3xi.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:01:25.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-hwu6yrk3xi\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-hwu6yrk3xi\\\\$Functions-Node-hwu6yrk3xi\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-node-hwu6yrk3xi.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "767" ], - "x-ms-client-request-id": [ "35200c71-c85e-483f-a0d1-88cd6213b584" ], + "x-ms-unique-id": [ "401" ], + "x-ms-client-request-id": [ "0f2a654e-2942-4d9e-87f1-f5e4ee323c6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9688,40 +10536,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d921be3-8c2c-4484-a913-f592a38ec60a" ], + "x-ms-request-id": [ "996963ee-6bf9-4f66-8296-f22e527e2550" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/037169ea-a2d7-422c-9087-bd3c6572e96b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f6992786-a82d-4de2-8e7d-431e2e3e7421" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3801d777-6ce5-438c-aad7-2d6474fae5dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190159Z:3801d777-6ce5-438c-aad7-2d6474fae5dd" ], + "x-ms-correlation-request-id": [ "d7393454-b72e-4f6c-b9d2-948da4286937" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002837Z:d7393454-b72e-4f6c-b9d2-948da4286937" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FA7BD16C2054C76967615CBA532EACE Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6AB119EB86245068AC06F94B02AE87C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-hwu6yrk3xi\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "768" ], - "x-ms-client-request-id": [ "89bb9b23-571a-4f25-bd68-e5c7c7814de7" ], + "x-ms-unique-id": [ "402" ], + "x-ms-client-request-id": [ "876c2faf-e804-4c77-93f5-ca34b73cf384" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9733,41 +10581,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d05341e8-87a1-4b55-85cd-3f406e287a9d" ], + "x-ms-request-id": [ "f8638a46-75d5-424f-804d-93196277fdc8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20f36524-1912-436d-87cb-574584a1923c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "c1f9cecc-2b22-4144-b977-a5d16c1dfaac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190200Z:c1f9cecc-2b22-4144-b977-a5d16c1dfaac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1327b70a-346f-4067-8d19-d4f2e567b4e5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "539db2cd-5875-4cc6-98db-2ca6972f5c3a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002838Z:539db2cd-5875-4cc6-98db-2ca6972f5c3a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1258BC1214C545CEACACACA9BEFFF59E Ref B: MWH011020807031 Ref C: 2025-11-17T19:01:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 793FB8DFF88E473AB9E66E5008345EB1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi/config/web\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "769" ], - "x-ms-client-request-id": [ "c82a4c13-d2ca-4feb-82da-7f4d291af935" ], + "x-ms-unique-id": [ "403" ], + "x-ms-client-request-id": [ "c41da042-4419-4d80-bef9-58a8edf52fb7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9779,40 +10627,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e44d8090-b15e-45cd-afd5-a31464a3213d" ], + "x-ms-request-id": [ "55978cc8-fcc9-4da9-bba9-702da68ddea2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "16cce6d5-c372-41d1-b0eb-f4e3851bf1ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190200Z:16cce6d5-c372-41d1-b0eb-f4e3851bf1ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8bc23b0a-d2b1-4630-bc78-345bc671a52e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002838Z:8bc23b0a-d2b1-4630-bc78-345bc671a52e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A646CB32B6147018F9B842CC39D03CE Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:00Z" ], - "Date": [ "Mon, 17 Nov 2025 19:01:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF911D2B89C94C59A03EB0FEF51F313D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Node-hwu6yrk3xi?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "770" ], - "x-ms-client-request-id": [ "27727be5-bc40-4a89-93bc-d4e181e38eee" ], + "x-ms-unique-id": [ "404" ], + "x-ms-client-request-id": [ "65530b7c-6ab1-4bf0-9475-1fcdf16f321c" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9823,20 +10671,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F492ACB0E0\"" ], + "ETag": [ "\"1DCBCB768D81160\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83215277-dc6c-4f07-97e1-e3cf0709d4e6" ], + "x-ms-request-id": [ "8194fe7c-0254-4a73-ada5-e7fbb431b772" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54f4e559-fe50-45d8-bc77-de97bf161915" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "9e950fc8-1270-4d62-88ab-5439d3d03086" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190208Z:9e950fc8-1270-4d62-88ab-5439d3d03086" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/84e5439e-47a3-4774-a1c9-e0f7709f29c4" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "ff8601aa-32f9-4ee2-96e9-dccbe84c2a9b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002846Z:ff8601aa-32f9-4ee2-96e9-dccbe84c2a9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9C002E01F6F40B5A77099F82B3F6EF4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:00Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A0D2A5454BD40F2934D08BB3EC3E31E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9850,7 +10698,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-DotNet-Isolateddmnvqoj6w4\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9865,18 +10713,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "de829a7a-8a59-40f2-b041-97b259d64634" ], + "x-ms-request-id": [ "af8e2f98-df3c-47b3-b5aa-64ab0e3623cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21589aea-34e1-456d-8d32-ac8588fd57f1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/50a8898a-b7f5-460c-b1d1-979802320fdb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b6982f4e-d75f-44e4-86d4-8204a93d2d76" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190209Z:b6982f4e-d75f-44e4-86d4-8204a93d2d76" ], + "x-ms-correlation-request-id": [ "d8e7fcc0-5669-465a-ad63-675445d1db93" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002846Z:d8e7fcc0-5669-465a-ad63-675445d1db93" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00E098963A4D4E748B86B314A647A876 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:08Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17E8BBEF32BF44E68AAA3705434621A4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9894,12 +10742,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "772" ], - "x-ms-client-request-id": [ "ea886819-d9b5-49bd-ac8d-73d1d6bc384f" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "85197891-dd66-4a52-9782-db585ad1e551" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9910,40 +10758,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "84fba13e-0065-4496-8cfa-4b0595661ecf", "63dd26ae-1f7e-4f18-a65a-3f70834a9e92" ], + "x-ms-original-request-ids": [ "ad27ee26-3381-4d97-907c-9d4e7a0b55ca", "6163a6c2-a651-464e-95ef-db342994c8e1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "82aa29d8-5f8c-4ca1-91c3-c6263338dd8f" ], - "x-ms-correlation-request-id": [ "82aa29d8-5f8c-4ca1-91c3-c6263338dd8f" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T190210Z:82aa29d8-5f8c-4ca1-91c3-c6263338dd8f" ], + "x-ms-request-id": [ "02592833-67be-4906-97a0-abc9dc117bc0" ], + "x-ms-correlation-request-id": [ "02592833-67be-4906-97a0-abc9dc117bc0" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T002847Z:02592833-67be-4906-97a0-abc9dc117bc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6E3A21B123740F3B8FEF84DBA567BE1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:09Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 176D01EF48314742B68530332A46406F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11997" ], + "Content-Length": [ "12120" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511732,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "773" ], - "x-ms-client-request-id": [ "b61a1b7a-5093-4549-9b04-a5e7587296c4" ], + "x-ms-unique-id": [ "407" ], + "x-ms-client-request-id": [ "3b0b563c-f982-4a8b-ae3f-e72c56039acf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9955,40 +10803,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "09f63f10-13bb-43ee-9c24-177023c1064e" ], + "x-ms-request-id": [ "2379633e-d21f-4333-8f22-73439df1110f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49d8ce4f-b228-4038-be54-21dd415bc32e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T190211Z:49d8ce4f-b228-4038-be54-21dd415bc32e" ], + "x-ms-correlation-request-id": [ "f8cb6a1b-d6a1-4d72-8fd8-3d1a20bf3edb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002848Z:f8cb6a1b-d6a1-4d72-8fd8-3d1a20bf3edb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6712B0AC722C4B6B90A92038A5C44BB5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:10Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 81B5845721DE49AAA67B672C78C74A82 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "774" ], - "x-ms-client-request-id": [ "25c0318c-1e62-441c-b23d-2ced470ea441" ], + "x-ms-unique-id": [ "408" ], + "x-ms-client-request-id": [ "cd443a22-15d2-4bbd-836a-2499ccc89649" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10000,40 +10848,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45bae926-6bc4-4a96-ac11-ff878978e5c8" ], + "x-ms-request-id": [ "b6d6ade8-d9c2-476d-a6d0-435337db7acb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cbe6730c-7720-455b-a4ad-007cfee48c20" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190211Z:cbe6730c-7720-455b-a4ad-007cfee48c20" ], + "x-ms-correlation-request-id": [ "333551d2-f6fe-400e-9d41-9e1883d94483" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002848Z:333551d2-f6fe-400e-9d41-9e1883d94483" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4815926FA2634C6CAD86B5615E683928 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:11Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF16967833964371B5E4B22A42AD18A9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "775" ], - "x-ms-client-request-id": [ "b6633e6e-5fc1-4ac2-abfb-def6c9289fb9" ], + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "b6621f37-e137-4b60-a382-166795101e60" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10045,40 +10893,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f8184f7-6a98-4a5c-a175-2ad7972fe353" ], + "x-ms-request-id": [ "f5d96467-1ed0-4819-9b1f-1a0d4754522c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fc42bb5a-aee4-4df6-93c3-9d0f836f23be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190211Z:fc42bb5a-aee4-4df6-93c3-9d0f836f23be" ], + "x-ms-correlation-request-id": [ "bccf69e3-00a6-4a1a-bd63-f216b36eb410" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:bccf69e3-00a6-4a1a-bd63-f216b36eb410" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F812D6DA60EC49A3BABD41C7633E4EA8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:11Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98B64589FF8241F3BDF822D619F34B8A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "776" ], - "x-ms-client-request-id": [ "2a327b6e-d2f8-44ff-979e-c054804ecf8d" ], + "x-ms-unique-id": [ "410" ], + "x-ms-client-request-id": [ "5620e28d-49ed-4bdc-9ea6-f21ceae37eac" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10090,40 +10938,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "682df22b-6446-4f70-ad55-45862b58eebc" ], + "x-ms-request-id": [ "1d610abf-9083-408a-8cfb-d5233df2bc04" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "72720a5b-2ac4-4aed-a292-cd70300dd8ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190211Z:72720a5b-2ac4-4aed-a292-cd70300dd8ab" ], + "x-ms-correlation-request-id": [ "dc4cea57-08a0-46d3-bfd1-22ea35a8e197" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:dc4cea57-08a0-46d3-bfd1-22ea35a8e197" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08E93487880443198A9539AE907D9A90 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:11Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E3C58CA04DF04D77994112E57E75662A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":92318,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-223_92318\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:00:23.2133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "777" ], - "x-ms-client-request-id": [ "121d52ba-5e9c-4139-9794-42ff3249ee08" ], + "x-ms-unique-id": [ "411" ], + "x-ms-client-request-id": [ "a67d5dec-9e6b-487c-a2d1-6595b700a044" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10135,40 +10983,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6af506f0-bc8a-4849-8679-b4b72c4369ff" ], + "x-ms-request-id": [ "e0fdd656-f6ea-4fbb-b562-f578619455e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c0117a34-98a3-4208-83f1-59fd779e23cb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190212Z:c0117a34-98a3-4208-83f1-59fd779e23cb" ], + "x-ms-correlation-request-id": [ "f6e04a3c-4bc2-45e7-a512-379ded15b294" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:f6e04a3c-4bc2-45e7-a512-379ded15b294" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E91964B22B394E31A2BA3BE0F27114DB Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1FC29C3EF61D49E4BC5A5AFE215D99DC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "778" ], - "x-ms-client-request-id": [ "d9291e7d-2559-4c3a-9e74-92f479fc3ebb" ], + "x-ms-unique-id": [ "412" ], + "x-ms-client-request-id": [ "fab9b95a-f4a0-4db5-9a7b-90b09596deb3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10180,40 +11028,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "424ccf8b-7a5a-4e23-8147-d27e03fd7833" ], + "x-ms-request-id": [ "68c6310b-2d31-4270-8fcd-8a60374f7cac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37e1015b-3fb2-468b-8fb6-18b59e6e9059" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190212Z:37e1015b-3fb2-468b-8fb6-18b59e6e9059" ], + "x-ms-correlation-request-id": [ "ac39c6e5-00dc-445b-9dd0-63880e744ff9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:ac39c6e5-00dc-445b-9dd0-63880e744ff9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03F37BCBB325419BAE11886CD7F889FA Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7034657DC00B4016BD5F4F42FCC5232E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "779" ], - "x-ms-client-request-id": [ "166d9aea-2393-41f8-a871-eb7562896617" ], + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "b3605815-6b81-4090-b81e-063c34b5ca57" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10225,24 +11073,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c61ba2f-b71d-4e19-9141-58e2d140bd95" ], + "x-ms-request-id": [ "426def17-1f9d-43c6-a296-35cfba85a6c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9e831fc6-353c-4afd-bc8c-a5a3c99d6e13" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190213Z:9e831fc6-353c-4afd-bc8c-a5a3c99d6e13" ], + "x-ms-correlation-request-id": [ "eafbec69-6b22-4353-8dc7-be7bc3f56ce3" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T002850Z:eafbec69-6b22-4353-8dc7-be7bc3f56ce3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 542C790320E442DF89FAC986BD190A8C Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 261E7967B100440493FF74BB89A754A3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -10253,12 +11101,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "780" ], - "x-ms-client-request-id": [ "305a2e91-f9c5-437d-b85e-50fcce1f6025" ], + "x-ms-unique-id": [ "414" ], + "x-ms-client-request-id": [ "8d7a02f8-3f35-4f07-a09b-f6081a59c81a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10269,40 +11117,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b507ba78-0628-490b-905f-f5d6d9fa5ef7", "eeaec8ec-3820-4c34-a03a-e03ee6a4d084", "ebebe65c-0b59-4021-8e09-8485ab87369b" ], + "x-ms-original-request-ids": [ "8a37999b-9a04-4168-9e83-d4faa2ab26b0", "e34fa219-4ead-442f-b05f-e7d0cb3b0113", "007f92bc-41dd-4260-a052-5205ac3b01c6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b70a9b11-df17-4c10-935d-e0e6cb08ab1c" ], - "x-ms-correlation-request-id": [ "b70a9b11-df17-4c10-935d-e0e6cb08ab1c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T190214Z:b70a9b11-df17-4c10-935d-e0e6cb08ab1c" ], + "x-ms-request-id": [ "b25a19f8-f469-4ac5-970a-8881a68284b7" ], + "x-ms-correlation-request-id": [ "b25a19f8-f469-4ac5-970a-8881a68284b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002851Z:b25a19f8-f469-4ac5-970a-8881a68284b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03FBDEC70E8E42DA87C31E7F2353D301 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:13Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24C296B0F8294BD0943C914FEEAA2189 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "781" ], - "x-ms-client-request-id": [ "566e325f-bc3e-443c-8bd2-d00b699b69d6" ], + "x-ms-unique-id": [ "415" ], + "x-ms-client-request-id": [ "016e2a4c-d63d-4d4b-a43a-95ae71ad82da" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10313,16 +11161,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e5add311-62e2-4a1e-aa46-b93408ee13a6" ], + "x-ms-request-id": [ "38c6013b-c59f-47b8-b25e-4bd49d6bfa5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/b55c044e-9cbc-4f85-9bd7-2482234a085d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4bb8cb0-24b5-40f2-beb9-50c748a76c60" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1bad97d2-ff39-47a5-854f-1b8b113ac170" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T190215Z:1bad97d2-ff39-47a5-854f-1b8b113ac170" ], + "x-ms-correlation-request-id": [ "09bc4cbf-fb9d-4985-82f2-0613e94119b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002851Z:09bc4cbf-fb9d-4985-82f2-0613e94119b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD909D0E443B4E09B9E098CDD4A74248 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5BCA541EC6642D185A3351902CD359F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -10333,10 +11181,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-DotNet-Isolated0f543v96sw?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-DotNet-Isolated0f543v96sw?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -10356,30 +11204,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54e4074a-ec4a-43fa-9d07-fa81f5d10a5d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed1762c6-783c-46bd-a625-a6e874dddb99" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "e2ddd7f1-5767-4dc9-b1b5-f78890d61ed0" ], - "x-ms-correlation-request-id": [ "e2ddd7f1-5767-4dc9-b1b5-f78890d61ed0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190219Z:e2ddd7f1-5767-4dc9-b1b5-f78890d61ed0" ], + "x-ms-request-id": [ "94d06c49-0eef-49cb-9c5f-d0208bd345f8" ], + "x-ms-correlation-request-id": [ "94d06c49-0eef-49cb-9c5f-d0208bd345f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002857Z:94d06c49-0eef-49cb-9c5f-d0208bd345f8" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE746AB8341949E189B698DEE66BA470 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:02:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D03AE3B11C7F4507A269D08700A721F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:28:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a300d026-0000-0300-0000-691b713b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-DotNet-Isolateddmnvqoj6w4\",\r\n \"name\": \"Functions-DotNet-Isolateddmnvqoj6w4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolateddmnvqoj6w4\",\r\n \"AppId\": \"3fbbb697-ffbc-4cae-ac8c-2c459754abc0\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"14320ec3-6866-4391-9f22-017ae7397c86\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-Isolateddmnvqoj6w4\",\r\n \"CreationDate\": \"2025-11-17T19:02:15.7532622+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolateddmnvqoj6w4_3fbbb697-ffbc-4cae-ac8c-2c459754abc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolateddmnvqoj6w4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202baa5-0000-0300-0000-69c47dc90000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-DotNet-Isolated0f543v96sw\",\r\n \"name\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"AppId\": \"88160b62-e69f-434b-aa4d-52159dc48477\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"98042a34-f79f-4fea-8e95-cec96b18f814\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"CreationDate\": \"2026-03-26T00:28:52.3573559+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolated0f543v96sw_88160b62-e69f-434b-aa4d-52159dc48477_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated0f543v96sw-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolateddmnvqoj6w4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated0f543v96sw\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -10393,43 +11241,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F4B421F535\"" ], + "ETag": [ "\"1DCBCB78A5F2300\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a6db1f3-d836-40db-868c-3961c6c8d8ff" ], + "x-ms-request-id": [ "72332905-4c04-4dbf-a811-7d84f64ff4ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d0e05157-7794-4bd7-9144-25c55c9528b4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0be55408-2a71-4591-9997-5f5f6711c7d1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "8382f070-7840-423c-8358-c524f1c8ebea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190303Z:8382f070-7840-423c-8358-c524f1c8ebea" ], + "x-ms-correlation-request-id": [ "afeb6170-b2eb-4b14-8444-818a617d8b88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T002939Z:afeb6170-b2eb-4b14-8444-818a617d8b88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B4405828FF64D42AE3982F1C5C31229 Ref B: MWH011020807031 Ref C: 2025-11-17T19:02:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FA5CCFA0E634E78883A637B6D5BF171 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:29:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8514" ], + "Content-Length": [ "8586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"repositorySiteName\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:02:21.2066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolateddmnvqoj6w4\\\\$Functions-DotNet-Isolateddmnvqoj6w4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:59.2633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "784" ], - "x-ms-client-request-id": [ "bad57d10-8383-4790-9dae-18cbe4c00da0" ], + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "2a7214a6-acf6-4fea-8775-2d6cd8b3a8a0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -10439,42 +11287,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F4CCCC8DAB\"" ], + "ETag": [ "1DCBCB7A1F17AAB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc8d0f07-8227-4817-acac-6ba4e9b18345" ], + "x-ms-request-id": [ "e935f615-6259-4c2b-bea2-6a08a9f62b25" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dfe15256-9ea7-4301-9ba3-25816b85e9e9" ], - "x-ms-routing-request-id": [ "EASTUS2:20251117T190336Z:dfe15256-9ea7-4301-9ba3-25816b85e9e9" ], + "x-ms-correlation-request-id": [ "6f1a5ac8-d978-4200-8157-74c7b037071e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003015Z:6f1a5ac8-d978-4200-8157-74c7b037071e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D3991612F82443699BCC8E6CCFF8FFCF Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6377F5589F1439595ECDA99DB3D2A60 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"repositorySiteName\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:03:03.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolateddmnvqoj6w4\\\\$Functions-DotNet-Isolateddmnvqoj6w4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "785" ], - "x-ms-client-request-id": [ "7e54b81f-e9a8-4ed2-8739-c4c476aeb6fd" ], + "x-ms-unique-id": [ "419" ], + "x-ms-client-request-id": [ "d2aa912c-49a1-4fcc-8afe-e2deda0cdc71" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10485,42 +11333,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F4CCCC8DAB\"" ], + "ETag": [ "1DCBCB7A1F17AAB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03f1523c-52f6-4fcd-a6fb-4964f08912b9" ], + "x-ms-request-id": [ "b7878992-3a32-4ffd-bf19-37b23d60bd59" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49724b96-de1e-43d4-a37e-26481377c3d0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190336Z:49724b96-de1e-43d4-a37e-26481377c3d0" ], + "x-ms-correlation-request-id": [ "b428527d-f3f7-445c-8913-5e84e41f6cfb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003017Z:b428527d-f3f7-445c-8913-5e84e41f6cfb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBBFB9FC1F0442CA81DCF76741B0B28A Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 587A2F13FE61459BB11B60C0DDD40A0E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"repositorySiteName\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:03:03.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolateddmnvqoj6w4\\\\$Functions-DotNet-Isolateddmnvqoj6w4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "786" ], - "x-ms-client-request-id": [ "76155f3a-d407-4ca9-b93d-cbb47e58da74" ], + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "2d93ed4f-590e-4836-ae60-b5f1b9995eb5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10532,40 +11380,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d00670c-de0e-48fa-af51-7cbafe6951a6" ], + "x-ms-request-id": [ "10461b7f-84dd-4d8f-b836-09944b38d2e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14ca630f-3d1f-46e9-b2d6-97dad59b1fff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d5c492ac-09ed-4f3c-a98d-ae05b3885e64" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bc61859d-9f42-4e00-a24b-e1a9bc44d2dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190337Z:bc61859d-9f42-4e00-a24b-e1a9bc44d2dd" ], + "x-ms-correlation-request-id": [ "04660226-20af-4807-8950-5b74322f5f61" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003018Z:04660226-20af-4807-8950-5b74322f5f61" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B175B08FD71A43ECB279F97EB9B8BCB1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72CC305565D84D0C80D1643D7EA2E288 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateddmnvqoj6w4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "787" ], - "x-ms-client-request-id": [ "0c9098c0-b3aa-4d18-8747-5c1ce7de1cb1" ], + "x-ms-unique-id": [ "421" ], + "x-ms-client-request-id": [ "b94dd73e-13d1-453a-980f-e3698a9006f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10577,41 +11425,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24d3ebf2-a6c3-429a-88d4-38b6b0dcf944" ], + "x-ms-request-id": [ "4dda715a-693c-4e55-9a6d-b3038c57ce6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1cb89433-a944-4c14-85da-23e705e8c91f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2d77b1f-b325-45bc-bbf4-26294ef5f788" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "898abc70-55ef-4eb6-af75-37452f393359" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190337Z:898abc70-55ef-4eb6-af75-37452f393359" ], + "x-ms-correlation-request-id": [ "9a7604c0-4e8e-47f4-957d-8b06a51f57e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003020Z:9a7604c0-4e8e-47f4-957d-8b06a51f57e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 18B9B8C4FA0C41958C8C34078477571E Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 922DA60A91EA433C803AA3E26CFA18CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "788" ], - "x-ms-client-request-id": [ "56128d05-2de4-44d3-ae4b-7ccee644c4ec" ], + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "1c773a9e-4fff-4688-9698-27f4d1652c06" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10623,40 +11471,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "655de611-0c58-4741-b05d-38bc6dcdeadb" ], + "x-ms-request-id": [ "e34cc5de-e4d7-4244-a2a6-b82b27b4f72d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fbac3ec-9348-493c-8626-80230037868e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17062511-9faa-4c35-a59b-d8621c4ad369" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "103d81a3-845c-4692-81b2-df2041a10fd7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190337Z:103d81a3-845c-4692-81b2-df2041a10fd7" ], + "x-ms-correlation-request-id": [ "2b7ce260-af87-4b5c-98d8-459f241563c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003022Z:2b7ce260-af87-4b5c-98d8-459f241563c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44671D7D730340AB9298606BA5F6C2A8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32DD2A13199843DB923C5BF66CF79373 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateddmnvqoj6w4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "789" ], - "x-ms-client-request-id": [ "838954a8-4829-4bc2-8889-4474f057eaf9" ], + "x-ms-unique-id": [ "423" ], + "x-ms-client-request-id": [ "d2cda7e6-9819-42df-82af-bf95954799ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10667,42 +11515,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F4CCCC8DAB\"" ], + "ETag": [ "1DCBCB7A1F17AAB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ddb8c514-c7c3-4af8-85f5-1b920e76866d" ], + "x-ms-request-id": [ "69a7028d-7c35-42b4-8cf3-3469fd5b674b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a8d4ba64-6a1b-4165-8881-e975eb1eb340" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190338Z:a8d4ba64-6a1b-4165-8881-e975eb1eb340" ], + "x-ms-correlation-request-id": [ "8e97dd0b-6aec-4d63-8505-4aeeac2b0e36" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003023Z:8e97dd0b-6aec-4d63-8505-4aeeac2b0e36" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 408C7BB70E434A0C92A64366F9CCA360 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 999437B9B930479A8336892187A12D30 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"repositorySiteName\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:03:03.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolateddmnvqoj6w4\\\\$Functions-DotNet-Isolateddmnvqoj6w4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "790" ], - "x-ms-client-request-id": [ "7511912d-6446-4247-800c-abedaee0ae74" ], + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "95ff1dd4-7fb7-4148-80da-4724f1fa9da2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10714,40 +11562,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f43dcf0-618a-4438-be3c-2fc136dab533" ], + "x-ms-request-id": [ "8efc3593-e0b0-41c6-8a03-d2561ad2d79d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/32398139-d590-4ed5-bd52-c6578be8b2d8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/493d2e22-5050-46c1-a794-c490ea7fe26e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3a52b521-aef8-40e3-8a45-0825e7cb265f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190338Z:3a52b521-aef8-40e3-8a45-0825e7cb265f" ], + "x-ms-correlation-request-id": [ "4d1eff17-2e75-4bb7-923b-91c88982a814" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003023Z:4d1eff17-2e75-4bb7-923b-91c88982a814" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F5ABA0C5AE5471DAD87022659FD2DE9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:38Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF9EA965738F4A02AEA7A8D1787361A3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateddmnvqoj6w4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "791" ], - "x-ms-client-request-id": [ "aa64330b-7e2b-4f21-ae89-751232419268" ], + "x-ms-unique-id": [ "425" ], + "x-ms-client-request-id": [ "01875c7c-e0f8-44b8-8453-67007caf2b84" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10759,41 +11607,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bded1b64-d53a-4d7b-8764-5f528e4086b6" ], + "x-ms-request-id": [ "3fbf20e4-1308-45f0-8e9c-891895652897" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5dfba9b7-0fe7-494e-9b29-337ca79370ea" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/00908202-69ab-4a97-b06b-341844105258" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6b970220-cd7a-4a92-ae82-2e315a91bcad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190338Z:6b970220-cd7a-4a92-ae82-2e315a91bcad" ], + "x-ms-correlation-request-id": [ "a4e09ca1-5349-40c8-9768-d00825c16752" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003024Z:a4e09ca1-5349-40c8-9768-d00825c16752" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B804AC76ADB448FB124C2A750968A53 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:38Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07888DAB0F394454B022A089971C3B9D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "792" ], - "x-ms-client-request-id": [ "29da2906-3653-4af0-8d1f-01518a0fc625" ], + "x-ms-unique-id": [ "426" ], + "x-ms-client-request-id": [ "8e284e85-337e-4619-819b-1061a64a888c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10804,42 +11652,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F4CCCC8DAB\"" ], + "ETag": [ "1DCBCB7A1F17AAB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "737d9aa0-ab8f-4b83-b281-d0a9710d9657" ], + "x-ms-request-id": [ "adaa5a40-d17b-46a8-ae89-ef45d6d6f623" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8964b7de-c9c0-479b-8b16-8dc3f2b54a84" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190339Z:8964b7de-c9c0-479b-8b16-8dc3f2b54a84" ], + "x-ms-correlation-request-id": [ "694763b4-b679-44fa-ad3f-9f009b17a9f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003024Z:694763b4-b679-44fa-ad3f-9f009b17a9f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55FCE069492646D7A2BEC7D8E204BEFC Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:39Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 962D289BFDAA4580B4B2FCC8E32A82A2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-DotNet-Isolateddmnvqoj6w4\",\"repositorySiteName\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolateddmnvqoj6w4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:03:03.3866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-DotNet-Isolateddmnvqoj6w4\\\\$Functions-DotNet-Isolateddmnvqoj6w4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-dotnet-isolateddmnvqoj6w4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "793" ], - "x-ms-client-request-id": [ "cb0b1b29-1cfc-49f2-8d75-372e57a28266" ], + "x-ms-unique-id": [ "427" ], + "x-ms-client-request-id": [ "0de661f1-fedb-4df7-aeae-030e163dabde" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10851,40 +11699,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "846b1db3-83fe-472e-b392-33caf1a2a778" ], + "x-ms-request-id": [ "49aa1d00-73fc-41d8-8edb-e95ea09214fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6c4d187e-b443-4079-a5e2-dc992bd2191d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12a1bcf7-6edd-446c-968d-ddbce4bf5e26" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4db6350c-b34a-46d0-bf00-7c44079eaac2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190339Z:4db6350c-b34a-46d0-bf00-7c44079eaac2" ], + "x-ms-correlation-request-id": [ "0ce18c6a-022f-4077-a151-65812df12bb8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003024Z:0ce18c6a-022f-4077-a151-65812df12bb8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2EF000EB62B74AAFAD34AA19722838F4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:39Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C5C764BF07C5401EA84618C5B1935001 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolateddmnvqoj6w4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "794" ], - "x-ms-client-request-id": [ "9ee13e41-fb03-4fa0-ad25-5c02d819ed94" ], + "x-ms-unique-id": [ "428" ], + "x-ms-client-request-id": [ "a5636ea0-c021-4531-b53e-2281f0df5a1f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10896,41 +11744,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0a3b8771-274e-4329-86c7-62f1b151a0b9" ], + "x-ms-request-id": [ "edf77332-ea87-472e-93a7-144bf65406e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/273cd61b-2bdc-41a6-af51-cae491cc0362" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16760e15-a3d4-4c7f-8386-56797c0816ad" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "30a12846-9e5e-47f9-bede-dc2e94372854" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190339Z:30a12846-9e5e-47f9-bede-dc2e94372854" ], + "x-ms-correlation-request-id": [ "24606cb5-94dc-4d00-85ec-026c00122cfa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003025Z:24606cb5-94dc-4d00-85ec-026c00122cfa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5CC585BA02744A592A2CB28F4987252 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:39Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 391007EDB89D4F6282C92FE6A0DDEA6F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4/config/web\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "795" ], - "x-ms-client-request-id": [ "763e6621-aee0-4523-990c-c499a51235c2" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "b626a354-5aa3-4a3f-a84a-8aed9b9a7615" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10942,40 +11790,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a301315-bc80-4f4d-9f55-8fdb2b3ecfb3" ], + "x-ms-request-id": [ "242869f1-7246-4b30-a158-3c9c6358161f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08b24f73-f9ad-4ac1-a2cf-27f0a75b109e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190340Z:08b24f73-f9ad-4ac1-a2cf-27f0a75b109e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f962ed9d-ea28-42b9-a642-2caa9f7d3201" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003025Z:f962ed9d-ea28-42b9-a642-2caa9f7d3201" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B008C2DA8D5F435AB23D3EED598AEDFD Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:40Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D62E22913B148B7B285E1D479973603 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-DotNet-Isolateddmnvqoj6w4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "796" ], - "x-ms-client-request-id": [ "4a1255cb-bfc8-46f2-a652-941bf16c70c8" ], + "x-ms-unique-id": [ "430" ], + "x-ms-client-request-id": [ "ddb87b94-d8e4-48b1-a231-4c76e8a1a15f" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10986,20 +11834,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F4CCCC8DAB\"" ], + "ETag": [ "\"1DCBCB7A1F17AAB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b37b7c47-f2c0-46c0-bb51-1860a2b46418" ], + "x-ms-request-id": [ "d2482394-c54e-4dc6-b299-de799b39f02e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/88edd443-b293-4c5f-8f9d-12b9e9061309" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a47db9c-e2d2-459c-a244-6b3a29f6c66c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "ac682afc-a910-49e6-88a6-96b8df8023e9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190348Z:ac682afc-a910-49e6-88a6-96b8df8023e9" ], + "x-ms-correlation-request-id": [ "aaab68e8-24f2-4de3-b351-4663d7b847b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003034Z:aaab68e8-24f2-4de3-b351-4663d7b847b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EE826A553A548828C14CEB5D22E8927 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:40Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D6481D415735430EA7AD75E7A5ECE54C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11013,7 +11861,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-CustomHandlergcma72synf\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -11028,18 +11876,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "85aa08d1-bb4a-4b94-bcb0-9b5ba5f6809f" ], + "x-ms-request-id": [ "1e27c87a-63d1-4d88-bcd3-e742e6d34bd3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18da7270-eeda-43e4-b6b2-212707e29d28" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/80828a73-dd3f-4ab7-b1d7-c79a18aa5a93" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c7d5b376-afec-4482-9c22-7819cee0a85e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190349Z:c7d5b376-afec-4482-9c22-7819cee0a85e" ], + "x-ms-correlation-request-id": [ "d9b474da-4c9e-4250-9586-7f3464a94af2" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T003035Z:d9b474da-4c9e-4250-9586-7f3464a94af2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EAE2E72A1584157953E317A18B98760 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:48Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6DD899B5F6A47F4B5B96021FAB0C20E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11057,12 +11905,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "798" ], - "x-ms-client-request-id": [ "eeefd9c9-cddb-4f04-9d6b-c016127a4e0a" ], + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "5d261550-cbb2-4bed-8aac-63bc4bca5c98" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11073,40 +11921,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f1ed25ca-9db9-49fc-a2fe-32bfa290d70f", "3c06ca7b-00d2-4b64-bfce-d1351169151e" ], + "x-ms-original-request-ids": [ "79caa75e-371b-4a56-9416-26cc24520d45", "f7284d49-e2a7-40d3-8973-4d06624e910f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "721e7a16-3bf6-4e8c-8c81-b679d4b5656a" ], - "x-ms-correlation-request-id": [ "721e7a16-3bf6-4e8c-8c81-b679d4b5656a" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T190350Z:721e7a16-3bf6-4e8c-8c81-b679d4b5656a" ], + "x-ms-request-id": [ "b278924d-891e-4099-82be-555f05e03a9b" ], + "x-ms-correlation-request-id": [ "b278924d-891e-4099-82be-555f05e03a9b" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T003036Z:b278924d-891e-4099-82be-555f05e03a9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D8680902A6A34299A8A18900E00A031D Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:49Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B10364AACF344E896F9B699F24D2DED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "11997" ], + "Content-Length": [ "13812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511732,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "799" ], - "x-ms-client-request-id": [ "487943de-58a6-46e6-8113-21d094ccd874" ], + "x-ms-unique-id": [ "433" ], + "x-ms-client-request-id": [ "cf779ad5-d22c-492f-9372-2fc186f2aeb3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11118,40 +11966,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4d3e339c-e97a-4ec7-a032-1100356f25d5" ], + "x-ms-request-id": [ "2f1f0997-c226-4729-a401-bc7e51c7335d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a4e1f479-c940-4dfa-9b98-15ff59941aaa" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190351Z:a4e1f479-c940-4dfa-9b98-15ff59941aaa" ], + "x-ms-correlation-request-id": [ "e3f8e911-51a5-4836-9809-8c394da449c2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003036Z:e3f8e911-51a5-4836-9809-8c394da449c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C0A4B6FC4CD54106888A2483BBFBE9F3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:50Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D3630FF5AF645B4AE015C529C614057 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "800" ], - "x-ms-client-request-id": [ "d1db3920-31cb-434b-a0c0-54a4d0a95f65" ], + "x-ms-unique-id": [ "434" ], + "x-ms-client-request-id": [ "0b4f1be8-79d7-494a-948b-0813c9c5ddfd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11163,40 +12011,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "64a7f07f-0449-4697-9be2-a95b037b90a5" ], + "x-ms-request-id": [ "221eeb48-68ba-4760-b47a-cf7e3f59fd1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8d3c6bc-3545-4a98-8735-16636abfe3ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190351Z:c8d3c6bc-3545-4a98-8735-16636abfe3ca" ], + "x-ms-correlation-request-id": [ "538440e4-3ce5-4ac4-a5f9-7720ecd3a866" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003036Z:538440e4-3ce5-4ac4-a5f9-7720ecd3a866" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC6BB5E61E584BA6B864936BF35323CC Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:51Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E349C26DED2C422D812E0BB404953A29 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "801" ], - "x-ms-client-request-id": [ "5f339537-099c-4e74-a51c-0d482b1f16c2" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "b8bf3a86-1254-4460-928b-8e02814b605c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11208,40 +12056,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6bb6d946-dee2-4ac2-86d5-2275663d2613" ], + "x-ms-request-id": [ "49a8c7bb-159c-4fb7-a57c-36660e38fd5b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "fab36059-b049-46c9-9575-8f70eddc439c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190351Z:fab36059-b049-46c9-9575-8f70eddc439c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "007fffb0-e418-4c7e-ac7e-f1b6c0698028" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003037Z:007fffb0-e418-4c7e-ac7e-f1b6c0698028" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64900DE1137D424DAF70E1F0764F5C97 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:51Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 721CE7FC4D4E4C5DB9BE9E5E82DAA53B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "802" ], - "x-ms-client-request-id": [ "54446f46-2bcd-48fe-bd7b-f113f931035f" ], + "x-ms-unique-id": [ "436" ], + "x-ms-client-request-id": [ "520a2395-586a-4a24-89a5-de0cd75ad0fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11253,40 +12101,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f8db2fd-7a39-4c31-932c-e02ffbdb4d4a" ], + "x-ms-request-id": [ "7f64d442-71d9-48c6-9849-cd6cf3ba228d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "448e3e03-69d1-4124-9d41-ffd5eb256fd7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190352Z:448e3e03-69d1-4124-9d41-ffd5eb256fd7" ], + "x-ms-correlation-request-id": [ "9a97b114-61a6-44fa-8e87-dc50b0dccd0a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003037Z:9a97b114-61a6-44fa-8e87-dc50b0dccd0a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06F4767877B7458697FFECDCD1FD1361 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 02933B20680946118D0717B47FC5496B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":92318,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-223_92318\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:00:23.2133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "803" ], - "x-ms-client-request-id": [ "4f757f61-ed9f-4c7b-bcbd-4be139b1d90b" ], + "x-ms-unique-id": [ "437" ], + "x-ms-client-request-id": [ "fd59759d-67ec-42e9-937e-04263d2f9ab5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11298,40 +12146,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "088323bd-2402-4d1d-b395-c5479826c780" ], + "x-ms-request-id": [ "465c1bc1-ca96-4b22-ac98-edafc54e22e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8178f46b-cdbc-4d3a-9d7e-cc61b0a8f0e2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190352Z:8178f46b-cdbc-4d3a-9d7e-cc61b0a8f0e2" ], + "x-ms-correlation-request-id": [ "8e5607fc-b7dc-4918-882c-e0a45518da51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003037Z:8e5607fc-b7dc-4918-882c-e0a45518da51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3D1BECEBF2047A5BEA97BD2527100AD Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1BB901DFC734CC08FE063050A240103 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "804" ], - "x-ms-client-request-id": [ "7b800b14-a559-4be3-9819-86898e0115da" ], + "x-ms-unique-id": [ "438" ], + "x-ms-client-request-id": [ "ac5910d2-c010-4c26-82fb-704b415beaf3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11343,40 +12191,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2b28aa1-c3a3-4991-ba1e-20c665e492ac" ], + "x-ms-request-id": [ "4f4d1b2f-8824-4ba2-8051-464d6f26782e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f86a0f5-64d0-4cfb-8f97-b119765c1797" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190352Z:6f86a0f5-64d0-4cfb-8f97-b119765c1797" ], + "x-ms-correlation-request-id": [ "79c61990-d676-446e-a66c-9ecb2d8fd567" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003038Z:79c61990-d676-446e-a66c-9ecb2d8fd567" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D401F317039467AAEE3E0D2F54D181C Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0FC17BEAB8E46B4AFE88644CC64F5EF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:37Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "439" ], + "x-ms-client-request-id": [ "645590f9-2385-4124-a65e-6fc4886654ce" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "9a3e4a6e-5dc2-4195-b99e-40105db4818b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "028f6402-a3c8-4db2-a45f-318d0beff47c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003038Z:028f6402-a3c8-4db2-a45f-318d0beff47c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3DA83FACC41444A887D27C841132604F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "805" ], - "x-ms-client-request-id": [ "c25fd86a-a63d-43d7-a32f-fee5da169db5" ], + "x-ms-unique-id": [ "440" ], + "x-ms-client-request-id": [ "edd9ef55-6a6c-43ba-9028-689f100ee017" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11388,40 +12281,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9b568e45-8204-4ff8-8137-4651efe60276" ], + "x-ms-request-id": [ "ed6537dd-8156-4be9-a124-2cf9d7e1206f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "898db30f-6407-4559-917c-cba584a11d2b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190354Z:898db30f-6407-4559-917c-cba584a11d2b" ], + "x-ms-correlation-request-id": [ "af2cfa87-9b0e-45fd-868a-2f9273096c97" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T003038Z:af2cfa87-9b0e-45fd-868a-2f9273096c97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B93754D57064F849627A1FEB0A4FDF9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:53Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4A148599EC84A238D6112B585ACE4FD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "806" ], - "x-ms-client-request-id": [ "61274bcb-4410-4369-99a1-9135d6906c98" ], + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "aa0cac3a-a58a-4fc3-8061-7212da5b4b24" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11432,40 +12325,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2cbba1c8-117a-4c68-aa32-0f91092cd6a4", "1a028902-1475-4ba0-98ad-85416807cead", "1d986e7f-c2c3-4ca7-b5dc-a263214ad644" ], + "x-ms-original-request-ids": [ "72df9f0b-108f-4f16-a2ab-059a87d13928", "1b33cb28-5f7f-4448-a80a-f1ea7d4cd659", "0fe61f94-8f38-481b-abe4-f188b86a6e5f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "293c54c6-6c45-49f9-aa37-c7aebe056338" ], - "x-ms-correlation-request-id": [ "293c54c6-6c45-49f9-aa37-c7aebe056338" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T190355Z:293c54c6-6c45-49f9-aa37-c7aebe056338" ], + "x-ms-request-id": [ "d4bd17fc-5280-4cfc-8ba3-1a6ea22068d9" ], + "x-ms-correlation-request-id": [ "d4bd17fc-5280-4cfc-8ba3-1a6ea22068d9" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T003039Z:d4bd17fc-5280-4cfc-8ba3-1a6ea22068d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4A41378EE914742AB2BD831A9CEBA20 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:54Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40983E9D71ED443DB74ED77051A658FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "807" ], - "x-ms-client-request-id": [ "c148fd64-7945-4286-a8e4-5238a3e73805" ], + "x-ms-unique-id": [ "442" ], + "x-ms-client-request-id": [ "ab841386-591a-41b2-84ab-247806c19b6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11476,16 +12369,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "829e2ca9-4427-4e72-a74a-f01389af30b2" ], + "x-ms-request-id": [ "8bc779df-60b3-436f-a488-a28d5c5d46d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/32cb2795-16d5-4cbe-8e0f-4a9bdb6eb350" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7bfb1137-6284-4863-9d10-11cc576abd60" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dc1e5656-48e6-4ec8-8921-9abd929e0e3c" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T190355Z:dc1e5656-48e6-4ec8-8921-9abd929e0e3c" ], + "x-ms-correlation-request-id": [ "5c42283d-ff75-4009-81b2-b722494daabb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003040Z:5c42283d-ff75-4009-81b2-b722494daabb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 882A06E868F547208AEA480B8C282AC3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:55Z" ], - "Date": [ "Mon, 17 Nov 2025 19:03:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD4EAC5354EF435D8AAE67009B3E321D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -11496,10 +12389,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-CustomHandlergcma72synf?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-CustomHandlernb8m23gkpj?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Functions-CustomHandlergcma72synf?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-CustomHandlernb8m23gkpj?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -11519,30 +12412,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/62b46428-e016-48ab-9843-65faa7133225" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/453b7acd-5694-4dcc-99ba-da7520c6a97b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "07dd61ae-c7dc-4376-8f2c-f0fba3e5f1f1" ], - "x-ms-correlation-request-id": [ "07dd61ae-c7dc-4376-8f2c-f0fba3e5f1f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190400Z:07dd61ae-c7dc-4376-8f2c-f0fba3e5f1f1" ], + "x-ms-request-id": [ "54e2bc90-3930-4fa8-9c77-e901f7b3a0f5" ], + "x-ms-correlation-request-id": [ "54e2bc90-3930-4fa8-9c77-e901f7b3a0f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003045Z:54e2bc90-3930-4fa8-9c77-e901f7b3a0f5" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02237E82E1374BAFBB8B6B0AB5023ABA Ref B: MWH011020807031 Ref C: 2025-11-17T19:03:56Z" ], - "Date": [ "Mon, 17 Nov 2025 19:04:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA678E04AEE944739AE01EBEA357E073 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:30:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1672" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a3006f41-0000-0300-0000-691b71a00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-CustomHandlergcma72synf\",\r\n \"name\": \"Functions-CustomHandlergcma72synf\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlergcma72synf\",\r\n \"AppId\": \"4c70f3c5-16c4-4d1c-ad66-5bb024a65820\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"01b0269b-2baf-4ec2-9407-558acd9de709\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomHandlergcma72synf\",\r\n \"CreationDate\": \"2025-11-17T19:03:56.5723216+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlergcma72synf_4c70f3c5-16c4-4d1c-ad66-5bb024a65820_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlergcma72synf-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20293b2-0000-0300-0000-69c47e350000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-CustomHandlernb8m23gkpj\",\r\n \"name\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"AppId\": \"2264a028-f396-4544-abff-dd4df0c16231\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7cbb0c18-f337-42dd-8699-ae2bd9f70f55\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"CreationDate\": \"2026-03-26T00:30:40.8042322+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlernb8m23gkpj_2264a028-f396-4544-abff-dd4df0c16231_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlernb8m23gkpj-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"custom\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlergcma72synf\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"custom\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlernb8m23gkpj\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -11556,43 +12449,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F4F0C43720\"" ], + "ETag": [ "\"1DCBCB7CAA329C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa0773b4-e079-4f74-9b70-c853299d2b59" ], + "x-ms-request-id": [ "dd7cb668-c871-4835-99f6-a7f916955805" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1e6c866-201f-4e09-bb83-018645a8501d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad42bad9-f5e8-4ce9-abf2-0840fe48a8a9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "bb0d7d72-aeec-4c09-8842-2fd1e590699b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190445Z:bb0d7d72-aeec-4c09-8842-2fd1e590699b" ], + "x-ms-correlation-request-id": [ "8f3b5e06-b04a-4740-a6bc-3d5bfbf083b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003127Z:8f3b5e06-b04a-4740-a6bc-3d5bfbf083b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3BD7AB297DBF4CCE89A26995B92B6373 Ref B: MWH011020807031 Ref C: 2025-11-17T19:04:01Z" ], - "Date": [ "Mon, 17 Nov 2025 19:04:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 384D277321954E0A9A2CB75485CF4C58 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:31:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8486" ], + "Content-Length": [ "8558" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlergcma72synf\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-CustomHandlergcma72synf\",\"repositorySiteName\":\"Functions-CustomHandlergcma72synf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\",\"functions-customhandlergcma72synf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlergcma72synf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:04:03.0866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlergcma72synf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlergcma72synf\\\\$Functions-CustomHandlergcma72synf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:30:47.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "810" ], - "x-ms-client-request-id": [ "97032a53-8e4c-449a-be8e-5be4978cdff2" ], + "x-ms-unique-id": [ "445" ], + "x-ms-client-request-id": [ "6f3c7d5d-6315-43f5-b4fc-733aaafe876b" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -11602,42 +12495,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F509545CC0\"" ], + "ETag": [ "1DCBCB7E2253AC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3745bd00-eaea-4d98-8d6f-bb63337a1d98" ], + "x-ms-request-id": [ "f2758de8-0b31-4511-9660-aeba0314be57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e4e0e863-31af-43d8-9907-4019b79ed04c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190515Z:e4e0e863-31af-43d8-9907-4019b79ed04c" ], + "x-ms-correlation-request-id": [ "3eb71597-ced7-432c-b855-f4f7f0684665" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003158Z:3eb71597-ced7-432c-b855-f4f7f0684665" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E260CAE96C4445B93DD7B087E3CF493 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EECD98665E444E47AB722BD535983AFC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:31:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8455" ], + "Content-Length": [ "8349" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlergcma72synf\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-CustomHandlergcma72synf\",\"repositorySiteName\":\"Functions-CustomHandlergcma72synf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\",\"functions-customhandlergcma72synf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlergcma72synf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:04:44.94\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlergcma72synf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlergcma72synf\\\\$Functions-CustomHandlergcma72synf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "811" ], - "x-ms-client-request-id": [ "09767cc4-8831-412b-bfd6-6a83d2fccd93" ], + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "f995e810-638d-4efe-95df-00d0ec1a32fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11648,42 +12541,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F509545CC0\"" ], + "ETag": [ "1DCBCB7E2253AC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c28e567-20cf-40f4-9fc1-66182259d9f9" ], + "x-ms-request-id": [ "5db4e751-4e54-4050-a7e6-65dad3c49d2f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b8353d8-3be4-42fa-9095-db4a9e2657a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190516Z:5b8353d8-3be4-42fa-9095-db4a9e2657a5" ], + "x-ms-correlation-request-id": [ "01bef579-1b29-4568-ae3e-184645fc7437" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003158Z:01bef579-1b29-4568-ae3e-184645fc7437" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 611EC15134E2478083C523CDAD7842AF Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B47B30EFB256420A81E675B9FA2AA7E0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:31:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8455" ], + "Content-Length": [ "8349" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlergcma72synf\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-CustomHandlergcma72synf\",\"repositorySiteName\":\"Functions-CustomHandlergcma72synf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\",\"functions-customhandlergcma72synf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlergcma72synf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:04:44.94\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlergcma72synf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlergcma72synf\\\\$Functions-CustomHandlergcma72synf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "812" ], - "x-ms-client-request-id": [ "7010a688-a613-4ca9-a4c0-a2040c6b2d8a" ], + "x-ms-unique-id": [ "447" ], + "x-ms-client-request-id": [ "6937fa74-35b1-42fa-bae7-9eebcd76a244" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11695,40 +12588,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "63ccba42-3e70-4c2e-950e-428d1052a532" ], + "x-ms-request-id": [ "a35d2bab-7b6b-4518-9cae-e18482d7a1f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3abcfcbc-0e9b-4a4b-bc3a-94b497bbf20c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29d6b924-1929-49e1-a217-fd1831a3bdd1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fe002ebe-b47f-40a1-a0c9-1fdb9a380145" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190516Z:fe002ebe-b47f-40a1-a0c9-1fdb9a380145" ], + "x-ms-correlation-request-id": [ "62874e70-e4a3-4aad-acb0-5a0b2416f1a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003158Z:62874e70-e4a3-4aad-acb0-5a0b2416f1a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D244B00CADA40B3B8163E56AA13145D Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46335A6A7E034817B6A427BDB4177104 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:31:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlergcma72synf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "813" ], - "x-ms-client-request-id": [ "081221d0-ab47-4f0f-ba9e-da687eef8ea0" ], + "x-ms-unique-id": [ "448" ], + "x-ms-client-request-id": [ "9d3b987a-4884-468e-ad79-7ec4f94529b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11740,41 +12633,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "539df4e3-06a7-4e02-b750-5cbdc1895c46" ], + "x-ms-request-id": [ "32eaf4b4-50a2-4658-845d-9f84de94ca75" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b350a50e-da9e-4daf-a4e4-1a9062d59721" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cea4d411-c310-4985-a6eb-27f50782e715" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "658999f3-b17b-40f8-94a4-e08c1a768b12" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190517Z:658999f3-b17b-40f8-94a4-e08c1a768b12" ], + "x-ms-correlation-request-id": [ "e2a85663-b124-4e04-8784-9514f56c7c82" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003159Z:e2a85663-b124-4e04-8784-9514f56c7c82" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 03A53A2515B14ACCBA3BFD2382E0C943 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2BD8DA8784FC4D1C84B937ED83F3807B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:59Z" ], + "Date": [ "Thu, 26 Mar 2026 00:31:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "814" ], - "x-ms-client-request-id": [ "dc40a52d-c2a5-4f83-8776-4896016f0d25" ], + "x-ms-unique-id": [ "449" ], + "x-ms-client-request-id": [ "697c4acc-3d28-4139-adde-1187cb24ad04" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11786,40 +12679,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "89e62692-b434-4894-b2fe-0ba74b844c84" ], + "x-ms-request-id": [ "e92c6708-ad18-45e5-aa85-90dd212e7ad7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c7ac363-8b7e-4593-bfcb-2f4a202c38cf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/715c48d1-5932-4a60-ac13-580a4e084d76" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b86b3ebf-90e3-447a-b963-d7c66226693c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190517Z:b86b3ebf-90e3-447a-b963-d7c66226693c" ], + "x-ms-correlation-request-id": [ "a3d2a6b7-5af2-41fd-a487-4e7254d9d658" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003159Z:a3d2a6b7-5af2-41fd-a487-4e7254d9d658" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8597C944019443E918B7E3C0192F7D9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8317CDAF693448D6B7FB315C017ECFEB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:59Z" ], + "Date": [ "Thu, 26 Mar 2026 00:31:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlergcma72synf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "815" ], - "x-ms-client-request-id": [ "b7c5d30b-4300-41e5-a661-3b8760da2340" ], + "x-ms-unique-id": [ "450" ], + "x-ms-client-request-id": [ "af1dc04f-bbf1-417a-9243-6bcabdc79fd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11830,42 +12723,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F509545CC0\"" ], + "ETag": [ "1DCBCB7E2253AC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2db2774-8aea-4bd9-a172-c8006d434f0b" ], + "x-ms-request-id": [ "589844e4-5590-46a3-acba-b448200ef3e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "901340c0-4993-4f2c-bc0c-30a382e5c9ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190518Z:901340c0-4993-4f2c-bc0c-30a382e5c9ea" ], + "x-ms-correlation-request-id": [ "c58b96f5-c4ce-4258-b6e4-cf0daa625b98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003200Z:c58b96f5-c4ce-4258-b6e4-cf0daa625b98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B4D6857622749268B5781BBB533FAD0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AEF1076124B94D628A64F19D44F7B752 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:59Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8455" ], + "Content-Length": [ "8349" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlergcma72synf\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-CustomHandlergcma72synf\",\"repositorySiteName\":\"Functions-CustomHandlergcma72synf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\",\"functions-customhandlergcma72synf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlergcma72synf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:04:44.94\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlergcma72synf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlergcma72synf\\\\$Functions-CustomHandlergcma72synf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "816" ], - "x-ms-client-request-id": [ "b13d93d1-d73a-4a53-8782-60b0459cddc9" ], + "x-ms-unique-id": [ "451" ], + "x-ms-client-request-id": [ "21b1d147-759e-43af-9f03-3e55f8852972" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11877,40 +12770,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7edbd4ae-7173-4042-82cd-7b5a0a6fbcb4" ], + "x-ms-request-id": [ "325f208e-6f9d-4d64-930d-0dd4a8b16d87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bc8999b5-b5e7-4e5c-a5e2-363322ebabc4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b38cb3b3-f53c-4bfe-b65a-9ef51488e646" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ec53092c-52a7-41cd-9e36-4846711bf454" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190518Z:ec53092c-52a7-41cd-9e36-4846711bf454" ], + "x-ms-correlation-request-id": [ "4dcd1664-2906-43ae-b9a8-04e48ca33d0e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003200Z:4dcd1664-2906-43ae-b9a8-04e48ca33d0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BEDD0E74E47146AEB22D7C39EB3C9E44 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8D3153BFBC640D4984BC2E0D23E8F24 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlergcma72synf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "817" ], - "x-ms-client-request-id": [ "78766ea6-2390-4092-83da-ba8a5d835195" ], + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "fd3c24aa-7abe-4cf2-9748-0fece8ca143e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11922,41 +12815,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b49320c-6120-4ee2-b71a-2f3732b08dc1" ], + "x-ms-request-id": [ "6e1d935b-d247-4df7-a622-9cf5f1ae8290" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97b8ab91-cbca-44d2-9fa5-e45ca198e998" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3f504d0c-82cd-4251-901e-d8f513a40008" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8487f8c3-4895-4a55-8d0b-f24aa4aeb560" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190518Z:8487f8c3-4895-4a55-8d0b-f24aa4aeb560" ], + "x-ms-correlation-request-id": [ "c674f647-360d-4340-afe8-f5876759bc8a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003200Z:c674f647-360d-4340-afe8-f5876759bc8a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95B5DE3164ED4D15A4DCBF8CFB491C85 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34FA6552456A49D991BD29863D119177 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "818" ], - "x-ms-client-request-id": [ "87a010f8-a031-4d99-a67f-0883b23b6283" ], + "x-ms-unique-id": [ "453" ], + "x-ms-client-request-id": [ "77938835-1469-466e-b78b-a4924fa864bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11967,42 +12860,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F509545CC0\"" ], + "ETag": [ "1DCBCB7E2253AC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d38e68eb-9301-42eb-8518-722fd8870412" ], + "x-ms-request-id": [ "4e0e2ed3-a2c2-4da1-a657-9b62d6a255df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "53ff8199-626f-4aa9-acff-05d91621ef47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190519Z:53ff8199-626f-4aa9-acff-05d91621ef47" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ca302a4a-c08b-438b-a281-309d66b67b83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003201Z:ca302a4a-c08b-438b-a281-309d66b67b83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1F405CE776DA4DADA154C7DE660404C3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28E12A28F60F42C2B0E1FD084D75D2F6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8455" ], + "Content-Length": [ "8349" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlergcma72synf\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-CustomHandlergcma72synf\",\"repositorySiteName\":\"Functions-CustomHandlergcma72synf\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlergcma72synf.azurewebsites.net\",\"functions-customhandlergcma72synf.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlergcma72synf.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:04:44.94\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlergcma72synf\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-CustomHandlergcma72synf\\\\$Functions-CustomHandlergcma72synf\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-customhandlergcma72synf.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "819" ], - "x-ms-client-request-id": [ "443c1aa5-f8fd-4ece-b7ed-512280afbfd0" ], + "x-ms-unique-id": [ "454" ], + "x-ms-client-request-id": [ "c1f6a60f-8ee0-4551-b32b-5554c10f286a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12014,40 +12907,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e564628-4af5-4a53-8c88-69ee925886fb" ], + "x-ms-request-id": [ "ac78d2f3-af2b-4698-8a3d-f12fcea9a842" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09e8f772-d439-4327-a630-8bb7e8603392" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1eb3c8c6-fee0-4f55-996f-64424055dbbd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190519Z:1eb3c8c6-fee0-4f55-996f-64424055dbbd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9bf2682c-0690-470d-9604-86c6faf05a9d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "189daede-a9e4-4291-8817-fa9df3282b83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003201Z:189daede-a9e4-4291-8817-fa9df3282b83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E214F8A90024AB686DE565980ACAF67 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AA2D9BB31794440A1E7EB507E39C8DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlergcma72synf\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "820" ], - "x-ms-client-request-id": [ "f55e3f0e-6a39-4df4-abe9-59c3e8d36df9" ], + "x-ms-unique-id": [ "455" ], + "x-ms-client-request-id": [ "2cf5ac6f-dbe1-4f19-a0ce-62865822219f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12059,41 +12952,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b5248c0-243e-4b3e-b726-8fbe4bfb971e" ], + "x-ms-request-id": [ "23c67e2e-d4f1-4d58-9542-e3e5bee17e44" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fe5b7b78-8eab-4d0e-b6a0-6df4cd8a9a69" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c29a04b-c5b6-491d-84e9-640f582e45e2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e3a3a7d8-bfc8-4e21-802f-78c9d05b4e01" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190519Z:e3a3a7d8-bfc8-4e21-802f-78c9d05b4e01" ], + "x-ms-correlation-request-id": [ "ffe8412a-0055-4070-ab31-9363f48875a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003202Z:ffe8412a-0055-4070-ab31-9363f48875a8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 662CD9B3117F4ED1B8224D983AF21C5C Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 400E1795E91D4EDEA565835F736B9F04 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf/config/web\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "821" ], - "x-ms-client-request-id": [ "e104fdaf-1f2d-4253-8bed-131dc33ed1c3" ], + "x-ms-unique-id": [ "456" ], + "x-ms-client-request-id": [ "2e237539-550a-48d4-b255-5941de878024" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12105,40 +12998,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a0ff7ba-a973-4427-9282-6b7341c92c54" ], + "x-ms-request-id": [ "789bc750-1b58-468d-9437-8da2a4d88ce0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d09d3e65-449a-43ea-880f-347cacf938f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190520Z:d09d3e65-449a-43ea-880f-347cacf938f8" ], + "x-ms-correlation-request-id": [ "3be694ab-832e-48c3-a20c-3ead26b034e0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003202Z:3be694ab-832e-48c3-a20c-3ead26b034e0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E584FC04FC04B54A4D3F0B2FECC77FC Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 662EE3065FAA44A19D863DD2BE6B4854 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-CustomHandlergcma72synf?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "822" ], - "x-ms-client-request-id": [ "5758b647-5f5c-4331-b6f7-cec404df381d" ], + "x-ms-unique-id": [ "457" ], + "x-ms-client-request-id": [ "11b064f9-c0cd-4b13-adee-aeddb703e7f2" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12149,20 +13042,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F509545CC0\"" ], + "ETag": [ "\"1DCBCB7E2253AC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "31c73a1e-8ab0-40b2-bd18-56d5d91c75d1" ], + "x-ms-request-id": [ "3a3b5510-59d5-4b03-b13c-178c1f50df46" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2cf2426c-da0b-4bb5-bd87-591f624e7484" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a17313a-2023-4989-a02d-ce5d0b00c122" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "9d80c7b2-3636-49d0-b96c-8e9d145a2a36" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190528Z:9d80c7b2-3636-49d0-b96c-8e9d145a2a36" ], + "x-ms-correlation-request-id": [ "07159248-96ee-4e80-8411-d575b89a4816" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003209Z:07159248-96ee-4e80-8411-d575b89a4816" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 51CB250C1CB1401CA6732B1DA72F36B7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 281D725E043B486A9E0E7A7FB697DA9E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -12176,7 +13069,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -12191,18 +13084,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e030836e-d730-43d7-8698-b3f72e9d8bb8" ], + "x-ms-request-id": [ "20416347-cb93-4680-a158-d8c50e08fc72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f9afb6d-076d-49f1-847d-8359be3ba954" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/51447855-af2f-4db3-b96d-ece35f8ae1e8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ecf23f68-0926-4755-bbc5-0d6e5e60c2e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190530Z:ecf23f68-0926-4755-bbc5-0d6e5e60c2e6" ], + "x-ms-correlation-request-id": [ "a6cdabfd-43ab-40e1-a723-e74ab1d8c014" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T003210Z:a6cdabfd-43ab-40e1-a723-e74ab1d8c014" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CCCC300BD84F4FF3B6290B6C3162E4E2 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:28Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7880CD07CB304C038AF4EB195EA7EE62 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -12217,7 +13110,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-jpdh6mrvxc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -12232,18 +13125,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1592fa6-c5e8-4305-9ae4-0aeb196748f2" ], + "x-ms-request-id": [ "27c3b6e9-4af4-4833-a160-ded40e593266" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/64b4795c-e7fc-4b4b-a5f8-9d8fe12ec7af" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c872acf4-2bbd-4911-ade2-e9a6816bef62" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b48a0901-bd80-450f-b8e7-f595f3f9bd6e" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190530Z:b48a0901-bd80-450f-b8e7-f595f3f9bd6e" ], + "x-ms-correlation-request-id": [ "a243134d-0e11-4509-a3d5-e4f528fda3c9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003211Z:a243134d-0e11-4509-a3d5-e4f528fda3c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A90500844EB46DBB67753A1FBC0DDBB Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:30Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABC913FD5A1A4B0EAA3983570B50F6C1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -12255,4 +13148,3 @@ } } } - diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index 87121d1ce8b5..ac3a89bd28c0 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -477,8 +477,7 @@ Describe 'New-AzFunctionApp' { -Runtime $runtime ` -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` - -IdentityType UserAssigned ` - -IdentityID $identityInfo.Id ` + -UserAssignedIdentity $identityInfo.Id ` -OSType Windows Write-Verbose "Validating function app properties..." -Verbose @@ -486,6 +485,9 @@ Describe 'New-AzFunctionApp' { $functionApp.OSType | Should -Be "Windows" $functionApp.Runtime | Should -Be $runtime $functionApp.IdentityType | Should -Be "UserAssigned" + + $userAssignedIdentity = $functionApp.IdentityUserAssignedIdentity.AdditionalProperties + $userAssignedIdentity.ContainsKey($identityInfo.Id) | Should -Be $true } finally { @@ -533,7 +535,7 @@ Describe 'New-AzFunctionApp' { -Runtime $runtime ` -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` - -IdentityType SystemAssigned ` + -EnableSystemAssignedIdentity ` -AppSetting $appSetting Write-Verbose "Validating function app properties..." -Verbose @@ -563,10 +565,62 @@ Describe 'New-AzFunctionApp' { } } + It "Create a function app with both 'SystemAssigned' and 'UserAssigned' managed identities" { + + $appName = $env.functionNamePowerShellNew6 + $identityInfo = $env.identityInfo + $resourceGroupName = $env.resourceGroupNameWindowsPremium + $storageAccountName = $env.storageAccountWindows + $planName = $env.planNameWorkerTypeWindows + $runtime = "PowerShell" + $runtimeVersion = 7.4 + + Write-Verbose "App name: $appName" -Verbose + Write-Verbose "IdentityInfo id: $($identityInfo.Id)" -Verbose + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + Write-Verbose "Storage account name: $storageAccountName" -Verbose + Write-Verbose "Plan name: $planName" -Verbose + + try + { + Write-Verbose "Creating function app with both SystemAssigned and UserAssigned managed identities" -Verbose + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -Runtime $runtime ` + -RuntimeVersion $runtimeVersion ` + -FunctionsVersion 4 ` + -EnableSystemAssignedIdentity ` + -UserAssignedIdentity $identityInfo.Id ` + -OSType Windows + + Write-Verbose "Validating function app properties..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + $functionApp.OSType | Should -Be "Windows" + $functionApp.Runtime | Should -Be $runtime + $functionApp.IdentityType | Should -Match "SystemAssigned" + $functionApp.IdentityType | Should -Match "UserAssigned" + + $userAssignedIdentity = $functionApp.IdentityUserAssignedIdentity.AdditionalProperties + $userAssignedIdentity.ContainsKey($identityInfo.Id) | Should -Be $true + } + finally + { + Write-Verbose "Cleaning up the function app..." -Verbose + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + if ($functionApp) + { + Write-Verbose "Removing function app $appName using -InputObject" -Verbose + Remove-AzFunctionApp -InputObject $functionApp -Force + } + } + } + It "Creating a function app with 'UserAssigned' managed identity should throw if IdentityID is not provided " { # Make sure user identiy is available - $expectedErrorId = "IdentityIDIsRequiredForUserAssignedIdentity" + $expectedErrorId = "UserAssignedIdentityRequired" $appName = $env.functionNamePowerShell Write-Verbose "App name: $appName" -Verbose @@ -595,7 +649,7 @@ Describe 'New-AzFunctionApp' { -Runtime $runtime ` -RuntimeVersion $runtimeVersion ` -FunctionsVersion 4 ` - -IdentityType UserAssigned + -UserAssignedIdentity @() } Write-Verbose "Validate that the expected expetedErrorId is thrown" -Verbose $scriptblock | Should -Throw -ErrorId $expectedErrorId @@ -655,7 +709,7 @@ Describe 'New-AzFunctionApp' { It "Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project." { - $appName = $env.functionNamePowerShell + $appName = $env.functionNamePowerShellNew8 Write-Verbose "App name: $appName" -Verbose $resourceGroupName = $env.resourceGroupNameWindowsPremium diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json index 5f1e97559767..ca808460dcc0 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "825" ], - "x-ms-client-request-id": [ "cb772533-73c7-407d-9eb8-3aa02b06435b" ], + "x-ms-unique-id": [ "460" ], + "x-ms-client-request-id": [ "9988e3b6-e650-46a7-95c0-98b2d3244f77" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b55c105d-889d-4bc0-ab98-4d5da9c0b99c" ], + "x-ms-request-id": [ "9bc574f0-8101-4011-9e3d-dd548a044d56" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5a618610-b090-4c3e-a95b-ac35976ed477" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/3182b603-9a59-4a16-8c58-7070ac558304" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c5759885-eb09-424d-b663-428f29681f78" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T190531Z:c5759885-eb09-424d-b663-428f29681f78" ], + "x-ms-correlation-request-id": [ "899bc4dd-b4e6-43b5-aa5d-d60492cfc293" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T003212Z:899bc4dd-b4e6-43b5-aa5d-d60492cfc293" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1274163B4744B409B3F3B87B3380A7E Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:31Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7F56A3883BB47F79FB985E8B74E794C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 10,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -63,44 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5268A2FAB\"" ], + "ETag": [ "1DCBCB7FE2CEDEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "218533e2-9153-4216-bc7e-9348859fc690" ], + "x-ms-request-id": [ "169ddbe0-8033-437d-a826-68bc858dabe2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a05d6005-6359-4ad1-9705-3579508a3b7c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8c52dda-ddd9-428a-80f5-3d71996e54e3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "603628da-312f-485c-a950-e0be9349497a" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190534Z:603628da-312f-485c-a950-e0be9349497a" ], + "x-ms-correlation-request-id": [ "15fa424c-2cff-4832-ae67-b1a7fa22a76a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003215Z:15fa424c-2cff-4832-ae67-b1a7fa22a76a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BC908E1206740D8804461D3B72625F4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:05:31Z" ], - "Date": [ "Mon, 17 Nov 2025 19:05:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A81BF7A864474F39B4CE09ACB4548D0F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1900" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8\",\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60831,\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60831\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T19:05:33.0666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "827" ], - "x-ms-client-request-id": [ "8f163c56-4da3-49b1-8eb3-8fc3b90bebd4" ], + "x-ms-unique-id": [ "462" ], + "x-ms-client-request-id": [ "0749cd19-d3ac-4ccc-9aa9-be669dca2875" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3eed9d69-ecd3-43c0-a8d1-c3501ce4d3b9" ], + "x-ms-request-id": [ "0444b34d-201e-4228-8538-72a75abd37b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37fd4bb4-1135-4681-852f-6e84ca5922d4" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190605Z:37fd4bb4-1135-4681-852f-6e84ca5922d4" ], + "x-ms-correlation-request-id": [ "f663d9e9-21b0-4fd9-85d9-c32d86ec5a3a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:f663d9e9-21b0-4fd9-85d9-c32d86ec5a3a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CFE47AD53F0041AF92A8B6B22B86E322 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:04Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9EAE9A388764FE187888EAC1E87B692 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8\",\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60831,\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60831\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:05:33.0666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "828" ], - "x-ms-client-request-id": [ "8f163c56-4da3-49b1-8eb3-8fc3b90bebd4" ], + "x-ms-unique-id": [ "463" ], + "x-ms-client-request-id": [ "0749cd19-d3ac-4ccc-9aa9-be669dca2875" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -156,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f952f7ca-03b7-4c6b-8d9f-322e568f754d" ], + "x-ms-request-id": [ "e7674bb7-c04b-4a64-9c12-0f6df619a154" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ffbcef23-0d47-417d-a123-ece27578d752" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190605Z:ffbcef23-0d47-417d-a123-ece27578d752" ], + "x-ms-correlation-request-id": [ "8120c4e3-eb8b-4443-94df-f5e4aa0d485e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:8120c4e3-eb8b-4443-94df-f5e4aa0d485e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0DE464D68DF434791B1F6ADCBAB69ED Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69E0788C22EB45548D72074FC7A9BAF6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8\",\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60831,\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60831\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:05:33.0666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "829" ], - "x-ms-client-request-id": [ "712fff27-f74c-4e05-a2ee-7efd80091a70" ], + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "c7f61223-3be8-401d-a7cf-5cfff578a1e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -201,40 +201,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2fb969d-19d2-4946-a2fb-4e8afd867f92" ], + "x-ms-request-id": [ "f0821383-ccaf-481e-b09b-19c56ad56062" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fecb2a24-bcef-4cf4-97cf-5cd08c87161b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190605Z:fecb2a24-bcef-4cf4-97cf-5cd08c87161b" ], + "x-ms-correlation-request-id": [ "aa090d47-eef9-4529-8c7a-c5c7ab8f0ebb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:aa090d47-eef9-4529-8c7a-c5c7ab8f0ebb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F5EA87734BF4B2BBBA77AB557590316 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2284CBD01994E87AF0B663B0CE013A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8\",\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60831,\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60831\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:05:33.0666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "830" ], - "x-ms-client-request-id": [ "2768b19f-87da-4c6a-85d9-1936b6dc3c85" ], + "x-ms-unique-id": [ "465" ], + "x-ms-client-request-id": [ "ec965eaf-59ff-4986-9f24-52b28277a5f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -246,40 +246,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78bd0365-a23c-4726-8eec-65e837d182d3" ], + "x-ms-request-id": [ "a4538bbb-7d3c-41c9-b89c-841f8627e589" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c53c617-0d49-4e6a-a8eb-2079b2a32126" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190605Z:2c53c617-0d49-4e6a-a8eb-2079b2a32126" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c22a6864-8a01-40d2-8530-eb4767f45d11" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:c22a6864-8a01-40d2-8530-eb4767f45d11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A82FD7E10684FFFA16DC4C013DBA414 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D7D57D2ADAC41DB9843D22931C49AFC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1813" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8\",\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60831,\"name\":\"Functions-MyPlan-yk9lqxsju8\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60831\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:05:33.0666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+7": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyPlan-yk9lqxsju8?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "831" ], - "x-ms-client-request-id": [ "f6a2ec17-109a-4055-8a24-c746dfecc36b" ], + "x-ms-unique-id": [ "466" ], + "x-ms-client-request-id": [ "fe9c1bf4-686c-43ab-85eb-5e4dc01c47f8" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -291,18 +291,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c9918a8-f261-4504-9648-c2ff7e483c86" ], + "x-ms-request-id": [ "490b6ff2-8dbe-4610-8458-981153bb4c54" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/abe0a8be-e9be-4b7d-ade0-e0bd28a9fe90" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c639aadc-2162-40a7-9b26-cf09366fa6de" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190612Z:c639aadc-2162-40a7-9b26-cf09366fa6de" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/056c3d6a-59a3-47de-a4e5-69e3b725e9eb" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "d5d290e8-57af-42fe-80ab-d6979886a157" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003253Z:d5d290e8-57af-42fe-80ab-d6979886a157" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB2EB6F8216044CD88F9FDFD0273AFFF Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9EB4365352547CD8DDDF96E2ACE622A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json index d62d12c8b52f..bedfdde05813 100644 --- a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-wa4tycjxz7\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d297e32f-d9a5-442b-9af7-7c7c4e648c7d" ], + "x-ms-request-id": [ "fe76c39f-5a44-4de9-843e-b57217f04ed9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d893eaf-0374-4fa3-a46c-8395ca8a959a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/19e8503c-d663-4ab9-921d-8052718d027f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "402588a0-1104-4c07-aa6f-68c90b6b7661" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190613Z:402588a0-1104-4c07-aa6f-68c90b6b7661" ], + "x-ms-correlation-request-id": [ "ad3925f8-5357-4a83-91c2-d93640046687" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T003254Z:ad3925f8-5357-4a83-91c2-d93640046687" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2467ED8CD8C40E5829684ECAC7D484D Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B749FE2418364E7F8839921358B4921E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "833" ], - "x-ms-client-request-id": [ "467c719c-0590-4966-bfa5-9b4d92a27b7d" ], + "x-ms-unique-id": [ "468" ], + "x-ms-client-request-id": [ "63b64e8b-2afa-46ac-ac87-dedb991f1357" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f6b9801b-e89b-484a-93ef-dc1758dbe46f", "6631215e-ba73-4a93-970f-ea0bb834f7ae" ], + "x-ms-original-request-ids": [ "d79e6e06-c5fb-4dc1-8a81-eb07b92806c7", "40dc1dac-2316-45ad-b3b1-efae8041ca07" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "bc714c39-2d80-468a-80a8-7eb11b54d0ad" ], - "x-ms-correlation-request-id": [ "bc714c39-2d80-468a-80a8-7eb11b54d0ad" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T190614Z:bc714c39-2d80-468a-80a8-7eb11b54d0ad" ], + "x-ms-request-id": [ "95989cc4-a261-4223-ab8f-85b9e80d5735" ], + "x-ms-correlation-request-id": [ "95989cc4-a261-4223-ab8f-85b9e80d5735" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003255Z:95989cc4-a261-4223-ab8f-85b9e80d5735" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9A2C7A045FE473AA094E663AF787A46 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:13Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4D1E19F320449E898601EFCE9A14EF8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13689" ], + "Content-Length": [ "13812" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511737,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511732,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "834" ], - "x-ms-client-request-id": [ "c87a9314-c6f5-4c9f-9c2d-2d8580ce9fea" ], + "x-ms-unique-id": [ "469" ], + "x-ms-client-request-id": [ "c6122d93-5420-4631-bcad-9b31871861a4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +108,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8d051af-43f8-46da-b04f-dbb3b1fb472c" ], + "x-ms-request-id": [ "74fb01ea-4101-4c1a-9cb2-787397041a65" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5e046fe0-0cbf-4780-99cb-b14f48b5354f" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190614Z:5e046fe0-0cbf-4780-99cb-b14f48b5354f" ], + "x-ms-correlation-request-id": [ "c6c416a1-662b-41bc-bbb5-248fcd194795" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003255Z:c6c416a1-662b-41bc-bbb5-248fcd194795" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC0840D414974C0DBED0BC49C0F6BA82 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 68B7C738E4B74A2A8147FE387C51E866 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:55Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "835" ], - "x-ms-client-request-id": [ "b23741bd-51c6-4b57-9c7e-44292e0d30b1" ], + "x-ms-unique-id": [ "470" ], + "x-ms-client-request-id": [ "acc45884-4309-4797-89ef-49f96a4268af" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8f08ee4-59e0-420e-adc6-fa6e283163c8" ], + "x-ms-request-id": [ "7a100e47-f8ef-496d-87e8-5332bb8ba4f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e2e3669-c2ff-485b-add6-808f68290e6d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190614Z:4e2e3669-c2ff-485b-add6-808f68290e6d" ], + "x-ms-correlation-request-id": [ "dc176e8a-7e84-4da2-8881-be67e8846173" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003255Z:dc176e8a-7e84-4da2-8881-be67e8846173" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 290E9326014D44439F2141A562BD9FF4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C44568E59774F9586B6E03BC5886CFF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:55Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01+5": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "836" ], - "x-ms-client-request-id": [ "f03ce104-bf98-4011-9fad-1b39e47cb3f3" ], + "x-ms-unique-id": [ "471" ], + "x-ms-client-request-id": [ "71bd5d38-c2fa-4d71-93f6-7a58e041b5bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c9ce3ae-d6ee-4398-b7c7-22280015fd98" ], + "x-ms-request-id": [ "493bf466-f6e5-4d1e-a539-f2f323f65514" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "34b9cc4b-3244-4bfa-a68d-1ebeed6e2aea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190614Z:34b9cc4b-3244-4bfa-a68d-1ebeed6e2aea" ], + "x-ms-correlation-request-id": [ "05d6339e-2a0f-4f9d-a533-33e4a47ca132" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:05d6339e-2a0f-4f9d-a533-33e4a47ca132" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 369B37013FA24B69840410C02CE03230 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7FFFBA64B1534453A0C94F537796B6C9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66015,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66015\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:03:37.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+6": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "837" ], - "x-ms-client-request-id": [ "1311c5cf-51e8-457f-a3dc-54cab9d9bea0" ], + "x-ms-unique-id": [ "472" ], + "x-ms-client-request-id": [ "383057d8-9fa7-4925-84d9-3df3658df25f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +243,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c28228e9-9746-4f80-942f-365dd28018e0" ], + "x-ms-request-id": [ "8a400309-6f43-48fa-a18b-27f9cfa9dde1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "03415c4a-c448-42d5-9de7-d6edb91b5c85" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190615Z:03415c4a-c448-42d5-9de7-d6edb91b5c85" ], + "x-ms-correlation-request-id": [ "454b9342-ac48-484f-ad74-a6861d53a362" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:454b9342-ac48-484f-ad74-a6861d53a362" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 915D9191157F44969AB2C7644DB2F4D8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 831882E78501480588337A17F4849CE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "838" ], - "x-ms-client-request-id": [ "0c0b46e5-bd85-4c98-a538-c02f7a456752" ], + "x-ms-unique-id": [ "473" ], + "x-ms-client-request-id": [ "53f77016-b13c-4776-98a5-1370d62286e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -288,40 +288,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ad252a0-7d27-4b83-98fa-3ba383851349" ], + "x-ms-request-id": [ "19747c05-e462-4d5f-8a5b-bee49bea547f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c0fc5384-e63b-4fca-b6e1-21c90f510073" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190615Z:c0fc5384-e63b-4fca-b6e1-21c90f510073" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b0d66eff-8887-4d70-8637-fc6e45e3f6e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:b0d66eff-8887-4d70-8637-fc6e45e3f6e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5117F354F4BA424BA130CCEF98BABAC1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B00B6A9FF3624657868AD3437D8D2E43 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":92318,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-223_92318\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:00:23.2133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "839" ], - "x-ms-client-request-id": [ "38663ca7-0a36-476b-b40b-0421ef51fbb9" ], + "x-ms-unique-id": [ "474" ], + "x-ms-client-request-id": [ "b2ea0f7c-cea4-4bf8-9563-1be36404acff" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -333,40 +333,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c61cfea4-867e-4fd5-807f-1771bc2a81c4" ], + "x-ms-request-id": [ "4b6cf6cd-a67e-42fe-85c9-3a5fa2f6189a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a7d7057b-ce20-4105-800b-947b7165cb74" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190615Z:a7d7057b-ce20-4105-800b-947b7165cb74" ], + "x-ms-correlation-request-id": [ "cdb425db-b773-4af3-80d2-3f5a91ebf46d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:cdb425db-b773-4af3-80d2-3f5a91ebf46d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08C0075EFBCD442DB98407CA9C2F2644 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFE53474858744F7AAFE39323AE19AA6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "840" ], - "x-ms-client-request-id": [ "6e76be36-e0cd-41f3-b3ae-c25a9e0f16d9" ], + "x-ms-unique-id": [ "475" ], + "x-ms-client-request-id": [ "84049f02-dfc0-4d47-ba71-a09b26306f04" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -378,40 +378,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c6675083-17ec-473a-a401-014023a37484" ], + "x-ms-request-id": [ "ec3c9170-ab37-4d40-8114-0c4fc581b9cf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2f4ad7e5-2576-41c6-a052-9e155e0abb1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190616Z:2f4ad7e5-2576-41c6-a052-9e155e0abb1d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "e9a65f95-e081-4a9a-8af4-00ec3bbae1cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:e9a65f95-e081-4a9a-8af4-00ec3bbae1cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1257744007E04F8E8C05706C5B4774B1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 52216FFEC910493DA0016099E2E0BB35 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "841" ], - "x-ms-client-request-id": [ "b80ef3a2-8532-4189-8d6a-797abd8d690f" ], + "x-ms-unique-id": [ "476" ], + "x-ms-client-request-id": [ "298b7729-4fee-43e6-b421-9d41f586deb4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -423,24 +423,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "084681b1-6d95-4daa-9f48-1c890664173f" ], + "x-ms-request-id": [ "66b86424-2f03-489e-8dba-8812f63bc44f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e3bdce27-2131-47de-8bbc-1bbb9350df0b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190617Z:e3bdce27-2131-47de-8bbc-1bbb9350df0b" ], + "x-ms-correlation-request-id": [ "c0c7c3b3-9977-48ef-86ab-299012414b11" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T003257Z:c0c7c3b3-9977-48ef-86ab-299012414b11" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 267032F221A34B4799B2E02393B9D319 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F688CFED5F340D3A5609FDD7EBA9438 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -451,12 +451,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "842" ], - "x-ms-client-request-id": [ "fc98f3a2-dfaa-4bd3-8df7-8742fce1bbda" ], + "x-ms-unique-id": [ "477" ], + "x-ms-client-request-id": [ "633fc5c6-1ab4-4ff7-8a3f-5ce93e0452df" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -467,40 +467,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "7fc24dd4-275a-44af-baff-5b90b3891bdd", "f2709131-683d-477d-a7b9-ac147b3ddd46", "8dc154e3-c1d6-43a3-b39a-24588c26d840" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3bb4df09-100f-408d-b9c4-c5c59a419584" ], - "x-ms-correlation-request-id": [ "3bb4df09-100f-408d-b9c4-c5c59a419584" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T190618Z:3bb4df09-100f-408d-b9c4-c5c59a419584" ], + "x-ms-original-request-ids": [ "2daca4d7-e764-49c7-a441-03ad3a17dcbb", "4df57745-c872-496e-b231-30b2782562e1", "0733c271-e1f2-4e55-aff6-2783e2df2b83" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "48577074-60f2-451c-a486-32307a72191f" ], + "x-ms-correlation-request-id": [ "48577074-60f2-451c-a486-32307a72191f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003258Z:48577074-60f2-451c-a486-32307a72191f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A85564CD455B4D41B6F2AE07C609AFB9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CC4FFF488A445B39B0A912AE11F775C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "843" ], - "x-ms-client-request-id": [ "0c341d14-f847-472c-a552-3b0cd88ff661" ], + "x-ms-unique-id": [ "478" ], + "x-ms-client-request-id": [ "1e9c52d6-82a9-41ab-8458-1f855f8a0fea" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -511,16 +511,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "426031fc-9d3d-4491-ab64-a9e823faa647" ], + "x-ms-request-id": [ "97a6866e-91f9-426f-bea6-836e65d7567b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/fc8e9cb2-59ab-436b-b958-2d8eeb94ee92" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/726f1fb4-2dc0-4351-9803-eb035d997d6e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4cdbf13c-b577-46e7-9642-3f0071e765a2" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190618Z:4cdbf13c-b577-46e7-9642-3f0071e765a2" ], + "x-ms-correlation-request-id": [ "3f7ce8a9-de6d-4b8a-9dac-5f2abe93b712" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003258Z:3f7ce8a9-de6d-4b8a-9dac-5f2abe93b712" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3CBD15F4730E4555A170E31F4ADE7982 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3086D9CA19AD4E78AF026BAD359FB546 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:32:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -531,10 +531,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2015-05-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2015-05-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -554,30 +554,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3f35849d-357b-43fd-816e-6ed60c0963a7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3367a44-aaa1-4d33-a3e0-62150feddd3a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "678d5300-7a42-4fd1-b04a-0a4d93c4dfb1" ], - "x-ms-correlation-request-id": [ "678d5300-7a42-4fd1-b04a-0a4d93c4dfb1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190622Z:678d5300-7a42-4fd1-b04a-0a4d93c4dfb1" ], + "x-ms-request-id": [ "9ddeedd2-5fda-4ce6-bd83-dbe149eb7138" ], + "x-ms-correlation-request-id": [ "9ddeedd2-5fda-4ce6-bd83-dbe149eb7138" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003303Z:9ddeedd2-5fda-4ce6-bd83-dbe149eb7138" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81F3EA3D675B41F4BBAD380DC54CB2D2 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:06:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F8B74F747D74D9EA89A26BC47A343DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:33:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a3007365-0000-0300-0000-691b722e0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest2-wa4tycjxz7\",\r\n \"name\": \"Func-PowerShell-NewTest2-wa4tycjxz7\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-wa4tycjxz7\",\r\n \"AppId\": \"73281c4f-c6a8-4f23-a75f-2ed6f81b8a82\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"f5eb6b06-3226-4bd4-9502-cfa5440f4438\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest2-wa4tycjxz7\",\r\n \"CreationDate\": \"2025-11-17T19:06:18.9162668+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-wa4tycjxz7_73281c4f-c6a8-4f23-a75f-2ed6f81b8a82_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-wa4tycjxz7-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20219c3-0000-0300-0000-69c47ebf0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"name\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"AppId\": \"7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"295fea1a-27da-4d04-a804-04fdcf16c498\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"CreationDate\": \"2026-03-26T00:32:58.8231307+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-e5279qnwbr_7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-e5279qnwbr-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-wa4tycjxz7\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-e5279qnwbr\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -591,43 +591,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F544D12475\"" ], + "ETag": [ "\"1DCBCB81D490000\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58349b4a-2ebb-47ea-ac1e-7b61f8b2a04d" ], + "x-ms-request-id": [ "3e212194-ad5f-477e-8932-c11cb3e42367" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/180dd496-7b4a-4fa9-ae46-79fe7c2bcf99" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7652ca31-2080-44ba-8d0a-e1c0e4854db6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "0c6c2595-ddc0-4eac-b9cd-bf07ed712326" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190704Z:0c6c2595-ddc0-4eac-b9cd-bf07ed712326" ], + "x-ms-correlation-request-id": [ "2573963e-2569-4732-91ce-6b0fdc67e39a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003346Z:2573963e-2569-4732-91ce-6b0fdc67e39a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF1D4C462E6641D0AEF2CB4E7C794871 Ref B: MWH011020807031 Ref C: 2025-11-17T19:06:22Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 942B7B9991654433B0999473752A1F3C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:33:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:33:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:06:23.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:05.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "846" ], - "x-ms-client-request-id": [ "0e25695d-ff70-4077-a3f6-fe79e5ebd92c" ], + "x-ms-unique-id": [ "481" ], + "x-ms-client-request-id": [ "8fe867cd-8c34-4bde-bbf1-31e46e964ee0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -637,42 +637,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F55C502835\"" ], + "ETag": [ "1DCBCB834E06DC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "73ba2b37-eb5e-4677-8df3-6599af120453" ], + "x-ms-request-id": [ "4ea56d55-ed18-4a0a-a262-09db23b572bb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "90279448-8217-4dd8-af1c-506b78c5e373" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190734Z:90279448-8217-4dd8-af1c-506b78c5e373" ], + "x-ms-correlation-request-id": [ "f07be074-1abc-40ff-9316-6799a03306b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003417Z:f07be074-1abc-40ff-9316-6799a03306b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A72E0CFFBE464611ABEDFEC47274E6A8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:34Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB8FAA8FE2764100A94366F8AC89CE64 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:16Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:07:04.1633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:46.14\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "847" ], - "x-ms-client-request-id": [ "c1d4399d-ef33-4eb9-a91d-a6e2a5d14ca1" ], + "x-ms-unique-id": [ "482" ], + "x-ms-client-request-id": [ "1523d3c1-d2c9-4966-9a6c-765900b6b4cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -683,42 +683,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F55C502835\"" ], + "ETag": [ "1DCBCB834E06DC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99ce50ab-8b13-4a62-9f7d-9de73ff21db1" ], + "x-ms-request-id": [ "38cc78e2-7732-4062-b8ee-19d52f801fb8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "caed01db-a1bf-47a9-a8b6-002625ec0b4c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190735Z:caed01db-a1bf-47a9-a8b6-002625ec0b4c" ], + "x-ms-correlation-request-id": [ "09c3aa99-9bf0-4cf5-b35e-0e4a3fc98f39" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003419Z:09c3aa99-9bf0-4cf5-b35e-0e4a3fc98f39" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10CAC99348E94F169C2AE438E1F2D772 Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:34Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 144B15C0940C4CD59F275E4D4E52AFB2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:07:04.1633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:46.14\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "848" ], - "x-ms-client-request-id": [ "576d4b30-b34f-4037-8577-315eff600b54" ], + "x-ms-unique-id": [ "483" ], + "x-ms-client-request-id": [ "cb856497-f358-429e-b305-6bc0f05b66ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -730,40 +730,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1952987e-1620-48bf-b93b-012f075b8828" ], + "x-ms-request-id": [ "b81f88e8-3571-4bff-9907-dcdb0b08fa7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd98bebe-83f0-4d2d-969f-c7181ea051ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/deca9ec3-d46c-4d03-b8bc-0b305c30aa56" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "81081150-9aab-46fb-a65a-931cf56654da" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190735Z:81081150-9aab-46fb-a65a-931cf56654da" ], + "x-ms-correlation-request-id": [ "e2f5b5c8-c49d-4984-82cf-ccec81b2e92e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003419Z:e2f5b5c8-c49d-4984-82cf-ccec81b2e92e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECEFAE3800AB4C1581BA6BF3F855E8C5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C827191855DA4252873655A98E76744B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wa4tycjxz7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "849" ], - "x-ms-client-request-id": [ "d993dc1f-70ee-49d0-b302-ce6b08ed32d6" ], + "x-ms-unique-id": [ "484" ], + "x-ms-client-request-id": [ "6eec54bb-89e1-4868-8e90-8d66a71c836f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -775,41 +775,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a6b9e43-d06b-4bb2-920f-6dc34ce7380d" ], + "x-ms-request-id": [ "f83cf488-b93b-4b8e-aa8d-7b949d58ae8c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b67abcb5-7df4-4d2a-981c-bd705a2b4fe2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e225dc3-0a20-4c68-8a8f-de9664238b26" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c1d806b-c416-426a-b1e7-0c3ef8980bbe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190735Z:9c1d806b-c416-426a-b1e7-0c3ef8980bbe" ], + "x-ms-correlation-request-id": [ "838efea7-07a1-49b2-ad59-8695c34bf5c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003419Z:838efea7-07a1-49b2-ad59-8695c34bf5c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F500F9309B21460A81E933593851600E Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61AC720F8F1746AAA7705E5B1C1AD9AB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "850" ], - "x-ms-client-request-id": [ "8fff2c46-de0a-4f7c-8521-76d2d912cb0d" ], + "x-ms-unique-id": [ "485" ], + "x-ms-client-request-id": [ "3c21be46-d42e-4b82-b800-d82a1cc338c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -820,42 +820,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F55C502835\"" ], + "ETag": [ "1DCBCB834E06DC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b9b4db8-eed2-4b90-8862-82bb26944b1c" ], + "x-ms-request-id": [ "e9875e3a-1587-4df4-b0af-a0f65383587c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "11565516-eac8-4f63-a7bb-a51687aae5a0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190736Z:11565516-eac8-4f63-a7bb-a51687aae5a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d01a0565-ae51-4a2e-8cf4-8596de2d84e8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003420Z:d01a0565-ae51-4a2e-8cf4-8596de2d84e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A89B5B002ED4C8EB935F8A23F34791F Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3E8791EEE634B44A45724A2A9EDB6B0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:07:04.1633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:46.14\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "851" ], - "x-ms-client-request-id": [ "ee3b3b71-a0d2-44c4-a9b1-e228166d783d" ], + "x-ms-unique-id": [ "486" ], + "x-ms-client-request-id": [ "c067c9ed-4c8e-4b91-91b9-0b629e92a5a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -867,40 +867,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9847de2-32c8-4a37-a242-00f3d26b6bcc" ], + "x-ms-request-id": [ "bd956cf2-ddb5-4040-8bc6-3374aaec200e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1bfae671-a224-4a85-babe-a3e74bd17b6f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14c5864d-ac15-4f83-9399-41b66fd671dc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "60b98638-90b7-491f-be6e-9e7be052aac2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190736Z:60b98638-90b7-491f-be6e-9e7be052aac2" ], + "x-ms-correlation-request-id": [ "589b4710-f873-4512-9305-7a4932dc2800" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003420Z:589b4710-f873-4512-9305-7a4932dc2800" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 47C37C46959C48EABB78104F04976874 Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 559D1C13295C468BA7127208C2F44C48 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wa4tycjxz7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "852" ], - "x-ms-client-request-id": [ "440e6d5d-003a-41de-8457-df331eabe9fe" ], + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "48473110-9f16-4ed1-9e52-33efb9190c06" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -912,41 +912,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ca006a3-7e1f-4f7f-8ca9-91138748d574" ], + "x-ms-request-id": [ "58c3a2ac-739f-4318-b3ed-52adb8d6cb03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e058abf4-bbea-4651-bb6e-17f7bc7b2e2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51f607d9-4c6a-4fae-9f24-175e92e401a3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a2aae21e-67cd-46a5-9787-4a7add2c41bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190736Z:a2aae21e-67cd-46a5-9787-4a7add2c41bd" ], + "x-ms-correlation-request-id": [ "24579b98-5bad-4890-aaa1-ffacd50942c2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003420Z:24579b98-5bad-4890-aaa1-ffacd50942c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C676944492FD48B1891F95E4DB598065 Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 523CD63CD1544132A100A205ED74A607 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "488" ], + "x-ms-client-request-id": [ "720b4351-fbf2-4546-be89-f30ef1d76859" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "ce94f602-1ff6-4932-8ce8-486b4b0aeb28" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "35cff655-06e9-41b6-b0b2-6c688feecd42" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003421Z:35cff655-06e9-41b6-b0b2-6c688feecd42" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 73F3663DE0044E188DE1C9C37FD8F593 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "853" ], - "x-ms-client-request-id": [ "169c4865-95cc-4d2f-afc2-f9add2d44028" ], + "x-ms-unique-id": [ "489" ], + "x-ms-client-request-id": [ "e022bc67-8baa-4550-9e77-92861ded0d02" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -958,32 +1003,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7a3c2d0-ebc8-4825-88da-164a71b9d6f6" ], + "x-ms-request-id": [ "3623d837-06a9-409f-b56d-7440b0cc2d67" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ac914d9-6420-466b-bfd3-fe6953b4ce9e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/685a3f92-4492-4689-86fc-f37e51685302" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e04dc66f-b1fb-4dc8-ae0c-4e0c29aa27a3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190736Z:e04dc66f-b1fb-4dc8-ae0c-4e0c29aa27a3" ], + "x-ms-correlation-request-id": [ "7870f48b-0f52-4d8c-9a3a-33ee91191ca4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003421Z:7870f48b-0f52-4d8c-9a3a-33ee91191ca4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7178E0F4AA7B44B592A3FFEBC5E9A940 Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D3F1E7AC4F44E629B97B569ACB37006 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wa4tycjxz7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+24": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-wa4tycjxz7\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-e5279qnwbr\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -997,43 +1042,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F55C502835\"" ], + "ETag": [ "\"1DCBCB834E06DC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a04ae78-7e5f-49cd-8c76-9219a24ffdf9" ], + "x-ms-request-id": [ "507adfac-7fa9-4b9d-afb3-989d6244ee39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f6ecf14-09a5-476c-8eed-ba3b7d56b94b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f36a0d6d-0ee9-4e05-992b-495340ba83b4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a1d1bbe0-e29e-4e37-9b6b-a73d71a75ab5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190740Z:a1d1bbe0-e29e-4e37-9b6b-a73d71a75ab5" ], + "x-ms-correlation-request-id": [ "4f0fb3d3-7237-4af2-a5d6-577e96f8deea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003424Z:4f0fb3d3-7237-4af2-a5d6-577e96f8deea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A433DF2FE9D41B380E369966DA43BBF Ref B: MWH011020807031 Ref C: 2025-11-17T19:07:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:07:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3423802F795D474D8E551B23ADBF773C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8649" ], + "Content-Length": [ "8726" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:07:39.25\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b32fadc6-a63c-4464-b932-6ca1d742fc4a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "855" ], - "x-ms-client-request-id": [ "a331a3d6-1c1f-4a7a-bb40-4150326bfc26" ], + "x-ms-unique-id": [ "491" ], + "x-ms-client-request-id": [ "7ff80db1-20d6-4ef1-9554-d20c16ce3a3d" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -1043,42 +1088,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F57139F520\"" ], + "ETag": [ "1DCBCB84B7886EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ab4a572-2398-4043-bb73-3e5b3ecf0822" ], + "x-ms-request-id": [ "5c3aa27d-713f-40ff-8893-7f67ba32bdbc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9fc65211-f356-4982-94fa-7285acb73eff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190810Z:9fc65211-f356-4982-94fa-7285acb73eff" ], + "x-ms-correlation-request-id": [ "0f6e692e-0bc4-4732-be8a-2b43a19eb559" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003455Z:0f6e692e-0bc4-4732-be8a-2b43a19eb559" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6121E1D132A6490CAC39B7C09D745287 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:10Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5C26E8C4FC048C18A7A9D18F615BB66 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:55Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:07:39.25\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b32fadc6-a63c-4464-b932-6ca1d742fc4a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "856" ], - "x-ms-client-request-id": [ "649f19e0-5b21-4330-a958-a83a6d41c958" ], + "x-ms-unique-id": [ "492" ], + "x-ms-client-request-id": [ "bd2845bd-2012-4c9c-89b1-052747acb309" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1089,42 +1134,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F57139F520\"" ], + "ETag": [ "1DCBCB84B7886EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3bb1792f-4bb9-45c3-a829-cfbb121caada" ], + "x-ms-request-id": [ "3e0634cf-3819-4c32-8b21-a854d293d5e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "756b3f9f-57f2-491e-a6a9-6cf3e359d2f3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190813Z:756b3f9f-57f2-491e-a6a9-6cf3e359d2f3" ], + "x-ms-correlation-request-id": [ "8803e1cd-37fb-4cb0-9fce-6ea43f7176e9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003457Z:8803e1cd-37fb-4cb0-9fce-6ea43f7176e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6378830042EE45FA801575800F51AAA1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 025D1E6C9CAE47698BAED014DAD7A0B3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:07:39.25\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b32fadc6-a63c-4464-b932-6ca1d742fc4a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+27": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "857" ], - "x-ms-client-request-id": [ "992f161b-d8c2-4c24-8725-eb7db6643528" ], + "x-ms-unique-id": [ "493" ], + "x-ms-client-request-id": [ "39397886-64aa-4efc-b3e4-3f9ff590c242" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1136,40 +1181,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91e6630c-4ff6-48f7-8993-b7d8ee6805e7" ], + "x-ms-request-id": [ "81c06ecb-b7ad-4571-b166-bc4607a05c2c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbb488aa-1b33-442d-b76a-88c366aba445" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58695c63-27aa-4f05-816d-d40c864ec37e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3b3ab597-635f-4318-ade8-197988e82de7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190813Z:3b3ab597-635f-4318-ade8-197988e82de7" ], + "x-ms-correlation-request-id": [ "af0adb66-1f8e-443b-8e67-1244fcb66a21" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003457Z:af0adb66-1f8e-443b-8e67-1244fcb66a21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58F9ECAA40CC4A5791E0FE8927F2DC06 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:13Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 191923E7A4AF49269638B28B633494F4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wa4tycjxz7\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "858" ], - "x-ms-client-request-id": [ "e2ce5d82-ff01-4f94-b516-c6f3422b731c" ], + "x-ms-unique-id": [ "494" ], + "x-ms-client-request-id": [ "abfac8ed-0615-4b48-b9bb-08be3cb68ccd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1181,41 +1226,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9dc7299a-0579-4468-ace8-c1e2e98fdad6" ], + "x-ms-request-id": [ "ec8978a1-da5c-4cfe-8c25-6b06ef311140" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/42342007-b4f1-4030-9bde-54cc13cf4a7c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5753e8b0-ef81-48d9-97ea-016273804864" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "80eb69b4-b449-402e-bf66-4bc246633e76" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190814Z:80eb69b4-b449-402e-bf66-4bc246633e76" ], + "x-ms-correlation-request-id": [ "f297136c-cc01-4110-9a66-59f484773102" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:f297136c-cc01-4110-9a66-59f484773102" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A61DFFBA961F464E8D632D34B68383E7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A48999E25EB8424F84D6947CFD79D5D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:57Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32298,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88197,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "859" ], - "x-ms-client-request-id": [ "7b89d452-49f5-4b36-9206-49de2e76449c" ], + "x-ms-unique-id": [ "495" ], + "x-ms-client-request-id": [ "ee12be74-a687-49f2-ba9e-65366442e9f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1226,42 +1271,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F57139F520\"" ], + "ETag": [ "1DCBCB84B7886EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8acfcee-39dc-4fae-9738-588f4edbfcc7" ], + "x-ms-request-id": [ "b441291e-7826-4ff5-83a9-56864dbf18cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b1f6d2b4-8b1b-4290-981b-910b32ce6739" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190814Z:b1f6d2b4-8b1b-4290-981b-910b32ce6739" ], + "x-ms-correlation-request-id": [ "5765a618-4cda-49ec-897e-1713226ad633" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:5765a618-4cda-49ec-897e-1713226ad633" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C42C224B8F8497DA9804BC143C02BE1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A8DEB757C8F4E12A8320E4186DACB2F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8623" ], + "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest2-wa4tycjxz7\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-wa4tycjxz7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:07:39.25\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest2-wa4tycjxz7\\\\$Func-PowerShell-NewTest2-wa4tycjxz7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest2-wa4tycjxz7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b32fadc6-a63c-4464-b932-6ca1d742fc4a\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+30": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "860" ], - "x-ms-client-request-id": [ "1341a942-065e-46a1-a2bc-7a9e0144ed36" ], + "x-ms-unique-id": [ "496" ], + "x-ms-client-request-id": [ "27d3acff-ba64-45f5-905e-45c86cc0f0ff" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1273,40 +1318,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6f67d625-002a-4276-90e1-51ec78a2719b" ], + "x-ms-request-id": [ "c9c78e7d-e311-49a6-b061-d027a8e7974e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14d2b8ed-6aed-4b8d-a91d-9e0f8381d8a7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b716fb9-b88b-410e-b5b1-ee2f8e106e25" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ed2edd40-bfb7-445e-90a2-49840972d8b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190815Z:ed2edd40-bfb7-445e-90a2-49840972d8b9" ], + "x-ms-correlation-request-id": [ "ad17df08-7db3-49ca-9aa0-8aed5c59b224" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:ad17df08-7db3-49ca-9aa0-8aed5c59b224" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08B793F3BD044F8AA66E3DE04A1FF169 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A3E509F113B74942A725B9EBF3E0CD80 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-wa4tycjxz7\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "861" ], - "x-ms-client-request-id": [ "dc42205e-40d2-4005-950e-45b00502ca6e" ], + "x-ms-unique-id": [ "497" ], + "x-ms-client-request-id": [ "43c8633f-c532-4797-96e2-f2be0b4bbf7d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1318,41 +1363,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8c137888-ca0f-4fc7-a157-62a35a8c6316" ], + "x-ms-request-id": [ "54331cb2-ccbd-4fcb-8c7c-b38e7d5353fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d9284e33-a5c3-4c57-9a93-f9cdb0700357" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91fac556-46c5-42d9-a25d-65e0e4d0baf7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db3f4f1d-7f9a-4b7f-abd1-5367bdc37879" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190815Z:db3f4f1d-7f9a-4b7f-abd1-5367bdc37879" ], + "x-ms-correlation-request-id": [ "1f6deec5-c309-4afe-801a-6fd4a1c4ae51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:1f6deec5-c309-4afe-801a-6fd4a1c4ae51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E9A72DD59A645209D449857DDC4748B Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E45F686283A44FBCAE7378CE1B58D111 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7/config/web\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32298,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88197,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "862" ], - "x-ms-client-request-id": [ "8bd8c657-0a6b-4fcb-a812-930efcf71d05" ], + "x-ms-unique-id": [ "498" ], + "x-ms-client-request-id": [ "92f536ae-af5f-49f6-8a31-bd344bee66ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1364,40 +1409,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b1b1ce6-d794-479a-9039-109ecb0fbb68" ], + "x-ms-request-id": [ "41f3821b-73e4-406b-b3d1-233b263329fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "591549ad-38a3-480c-9cd9-76d53d3195cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190815Z:591549ad-38a3-480c-9cd9-76d53d3195cf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "891591fe-48b9-4400-8abe-2d96ae7872d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:891591fe-48b9-4400-8abe-2d96ae7872d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2227849B5610416BAC35078A29B0E55D Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C690C9710B649029F7E0E6C42D31FAB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], + "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+33": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "863" ], - "x-ms-client-request-id": [ "29154be4-a600-42ba-b085-3636f6bb58e4" ], + "x-ms-unique-id": [ "499" ], + "x-ms-client-request-id": [ "09d9211f-faab-4553-bb8a-01628f5a8475" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1408,20 +1453,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F57139F520\"" ], + "ETag": [ "\"1DCBCB84B7886EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d5bad8e0-4833-4ec0-a6c9-bb4e80d69336" ], + "x-ms-request-id": [ "f7a7a6f4-11d1-4b6a-a154-7bfa1ad6b59a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2dd24ac3-2159-43da-9eff-51fc091df2f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f593a02c-10d2-488c-b928-149e82a292d6" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "36cc5501-4bfe-4ddc-8346-573854d60b1d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190824Z:36cc5501-4bfe-4ddc-8346-573854d60b1d" ], + "x-ms-correlation-request-id": [ "a60e216b-34b0-49ea-8f40-93f438394c5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:a60e216b-34b0-49ea-8f40-93f438394c5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC9F3836B4ED476F9B4F2E60FBB4643B Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 671B0CBF1AF94363B46055FAB74111A0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:59Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1431,19 +1476,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "864" ], - "x-ms-client-request-id": [ "baa57dc0-c583-406a-b434-64bcf4545f07" ], + "x-ms-unique-id": [ "500" ], + "x-ms-client-request-id": [ "1d824e57-e148-428f-b926-bff09133024c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1455,37 +1500,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "27312291-4d05-4222-906d-12e87f7206ea" ], - "x-ms-correlation-request-id": [ "27312291-4d05-4222-906d-12e87f7206ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190824Z:27312291-4d05-4222-906d-12e87f7206ea" ], + "x-ms-request-id": [ "553b3ed5-6417-43a2-b050-edd2195c5728" ], + "x-ms-correlation-request-id": [ "553b3ed5-6417-43a2-b050-edd2195c5728" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:553b3ed5-6417-43a2-b050-edd2195c5728" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C3E3B2D8B1444C099A72D39A1DCC0A1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8A8BC2DCF9F440DB5C965890104669E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:07Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "865" ], - "x-ms-client-request-id": [ "d532a503-371c-4d04-a573-5524a2b4af79" ], + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "7d4566e6-2121-4822-84ba-562afa3b1752" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1497,21 +1542,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "d263dc8f-3ce9-42a8-a1c5-dd66d8378daa" ], - "x-ms-correlation-request-id": [ "d263dc8f-3ce9-42a8-a1c5-dd66d8378daa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190824Z:d263dc8f-3ce9-42a8-a1c5-dd66d8378daa" ], + "x-ms-request-id": [ "6c3988b7-f63c-485c-9b11-b7f4877cbc70" ], + "x-ms-correlation-request-id": [ "6c3988b7-f63c-485c-9b11-b7f4877cbc70" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:6c3988b7-f63c-485c-9b11-b7f4877cbc70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65CA3F8CBD4C4D0DAD99B4923516D837 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D42F5B0F86D0444FB946BE48B29622CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:07Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-wa4tycjxz7\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1519,7 +1564,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest3-94dzrfhslm\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1534,18 +1579,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbfa3ac9-5198-4d59-ba90-9a760688107a" ], + "x-ms-request-id": [ "ed5ab1af-e6cc-4794-aa0c-48619be93a6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a1afcc8d-ac22-4fc3-9f40-dc56ee8592be" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db6988a7-c0e8-427a-a06e-72e864a0448b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190824Z:db6988a7-c0e8-427a-a06e-72e864a0448b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3863c3c8-22aa-4c9d-ae11-a21cb0fed111" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "934c187c-855a-4b40-a351-9962cad440d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:934c187c-855a-4b40-a351-9962cad440d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C35F5B827A8747BEB2B5D24F3712AAEE Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 893249373D8E4FFDAFB929099570F4B6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:07Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1563,12 +1608,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "867" ], - "x-ms-client-request-id": [ "4791f1c6-a7c0-4eaf-bb4e-70c93c7b1e66" ], + "x-ms-unique-id": [ "503" ], + "x-ms-client-request-id": [ "9fdf317f-3216-42fe-b1c5-ddbd38b8e06d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1579,40 +1624,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6a5c000f-b828-4661-8814-736b643c3775", "79973491-5173-444e-8a80-12be8cff72c8" ], + "x-ms-original-request-ids": [ "cb9bc2e7-f6fb-49c3-b4a7-5ef12c617ad7", "5d1986c9-0148-4ea6-9fcb-a9aed11db859" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5b320518-152c-42e0-86e2-1055e2c1a6da" ], - "x-ms-correlation-request-id": [ "5b320518-152c-42e0-86e2-1055e2c1a6da" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190825Z:5b320518-152c-42e0-86e2-1055e2c1a6da" ], + "x-ms-request-id": [ "854c2e36-4700-4e69-b5bd-a60bbf89101a" ], + "x-ms-correlation-request-id": [ "854c2e36-4700-4e69-b5bd-a60bbf89101a" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T003509Z:854c2e36-4700-4e69-b5bd-a60bbf89101a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F871DC34B500455B9BCB36BDCB043494 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C3121BAD21B49FE82340128CF99843D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "15375" ], + "Content-Length": [ "15498" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511737,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511732,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511744,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "868" ], - "x-ms-client-request-id": [ "ec7ea547-591b-4c73-ba6c-a61ddf082679" ], + "x-ms-unique-id": [ "504" ], + "x-ms-client-request-id": [ "02310bba-bb7a-430b-8498-ed17cb54f081" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1624,40 +1669,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9cc9b7af-4632-4c69-9f80-ae92b2e61c50" ], + "x-ms-request-id": [ "b6931637-9341-44d8-8e3e-773ac791052e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "50dd1172-f5e6-4158-9477-864e43c46e91" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T190825Z:50dd1172-f5e6-4158-9477-864e43c46e91" ], + "x-ms-correlation-request-id": [ "8b65d47d-c976-4f01-ba58-02a49f7f2b98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003509Z:8b65d47d-c976-4f01-ba58-02a49f7f2b98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0065041339CA4A8A9255B7FD6DDE1EC8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0B84D246675449998BBA6F9C3192AE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "869" ], - "x-ms-client-request-id": [ "eb24a067-8fe6-4048-9e43-da1c8e08c69a" ], + "x-ms-unique-id": [ "505" ], + "x-ms-client-request-id": [ "0c9ebd0b-5893-4397-8ea6-5214e76789d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1669,40 +1714,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "29d1b31d-79cc-4921-ac0f-fca849f8983d" ], + "x-ms-request-id": [ "e0a34f9c-05ae-4943-983c-f5cb5c8d9635" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "958e24ae-6b49-471c-805b-08414d25e8b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190826Z:958e24ae-6b49-471c-805b-08414d25e8b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "bd3a9eb5-67b1-43a1-9ad7-ff7f1e18a892" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003509Z:bd3a9eb5-67b1-43a1-9ad7-ff7f1e18a892" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F1C2CAE0BF15427FAA7551D1C13CFD7E Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5FE95E46AB414F82B50E0C87062899A8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01+5": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "870" ], - "x-ms-client-request-id": [ "abe279cc-2f6c-48cc-b24b-82e30c3d1cdc" ], + "x-ms-unique-id": [ "506" ], + "x-ms-client-request-id": [ "973b560e-b2d4-4d70-99ca-7db95220c77b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1714,40 +1759,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02d484de-0087-4ce9-ac16-fa849196c864" ], + "x-ms-request-id": [ "0e597506-56b5-49ca-9693-55fe72ff96d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "60facc94-6d20-464b-be84-74a0cd07bc16" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190826Z:60facc94-6d20-464b-be84-74a0cd07bc16" ], + "x-ms-correlation-request-id": [ "848cbfac-e3f9-4a01-a75d-f28fc8012796" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003509Z:848cbfac-e3f9-4a01-a75d-f28fc8012796" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FDBA464A39FC4C278E847CF9ADF9BCDD Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7B2D4713A224AD2BE149B39E6AD309E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66015,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66015\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:03:37.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+6": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "871" ], - "x-ms-client-request-id": [ "d379cabb-6614-4ef9-a60d-f01084b778d7" ], + "x-ms-unique-id": [ "507" ], + "x-ms-client-request-id": [ "ad3c9562-6688-4c7d-bbd0-9e7b5fda1c49" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1759,40 +1804,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7ae6b7b-cf29-4c45-bd32-796060305619" ], + "x-ms-request-id": [ "85ea7578-3239-4610-9907-a89bb055ff50" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0db7156f-468b-40f7-9721-0d7186192dd4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190826Z:0db7156f-468b-40f7-9721-0d7186192dd4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f687a7f7-6539-4f6f-8967-fc8d9a38477f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:f687a7f7-6539-4f6f-8967-fc8d9a38477f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88032BE2AFB549068AB213259383652C Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECBABA2828D1462BA64217DF5EDF43F7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1754" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "872" ], - "x-ms-client-request-id": [ "8712594c-4060-479c-83b5-217ac0a15e9d" ], + "x-ms-unique-id": [ "508" ], + "x-ms-client-request-id": [ "b44b6173-c63a-4c50-9b31-80812d861579" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1804,40 +1849,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b974afe0-6a40-4719-b209-7800390c49c9" ], + "x-ms-request-id": [ "36264adf-de6a-4a47-a270-c825a090b9de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dfcbfc26-73b9-48a5-997b-30781eff1fff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190826Z:dfcbfc26-73b9-48a5-997b-30781eff1fff" ], + "x-ms-correlation-request-id": [ "bdfc0427-94a1-453f-bd1b-25d4994415a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:bdfc0427-94a1-453f-bd1b-25d4994415a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7E2D95F17C94E17B2CBF85310CEF054 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B140D46C08CD43B5AF8C595DC14514C2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":92318,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-223_92318\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:00:23.2133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "873" ], - "x-ms-client-request-id": [ "b47dbb72-ed75-4002-89d6-a298f4a41870" ], + "x-ms-unique-id": [ "509" ], + "x-ms-client-request-id": [ "3734d7ee-5aa0-4684-92f6-7f6c35bdc9cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1849,40 +1894,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01da9094-73a5-4dc8-8892-5f34f26a5c63" ], + "x-ms-request-id": [ "d983419d-704e-467f-8fba-95ed6d0b6ce4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b1733a18-2ae4-47d7-9916-e13ccf6f4e89" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190826Z:b1733a18-2ae4-47d7-9916-e13ccf6f4e89" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b84f67d3-cb08-4dc5-a623-d12f80d59da3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:b84f67d3-cb08-4dc5-a623-d12f80d59da3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D72105B9FBC49B19229A7009C048DF7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA40582B0C9046DF8B1F28DC5BC0E00C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1747" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":81026,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-317_81026\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:07:41.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "874" ], - "x-ms-client-request-id": [ "40e18405-19c5-4141-a5bc-c49631b3726d" ], + "x-ms-unique-id": [ "510" ], + "x-ms-client-request-id": [ "a188c773-05df-4f1d-8c72-b010034db760" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1894,40 +1939,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b448e1db-38b4-4587-b01f-9c9dcb06c4e2" ], + "x-ms-request-id": [ "ac2a84d6-2474-49cc-9306-a33ac700cd66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "8a12c503-f146-46a5-aa3d-349131f250f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190827Z:8a12c503-f146-46a5-aa3d-349131f250f6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3ebe6f73-ed6d-4a00-a3b0-ef8231c5244e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:3ebe6f73-ed6d-4a00-a3b0-ef8231c5244e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14F0914DF3F448578254C727E0C065DE Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7BF9738D96FA4A4FB3C3201A34E4C5BD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "875" ], - "x-ms-client-request-id": [ "80b59cb9-21c0-4bf3-8522-2c665090dda3" ], + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "de99e44b-d186-493e-9341-2b898a0cadca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1939,40 +1984,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f91165ac-73e5-4471-80a9-adc47bbd4a35" ], + "x-ms-request-id": [ "d9a4efa0-1c0c-4945-8e29-3bcc3d93e58e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b6c8eb21-6035-4d12-8789-4b8d3ff17d24" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190827Z:b6c8eb21-6035-4d12-8789-4b8d3ff17d24" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dd557e07-cd76-4e45-9906-81b7e34bf658" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:dd557e07-cd76-4e45-9906-81b7e34bf658" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 436F73D1ECE3483F8C66B5369962B0E0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:27Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EB5506256C344C0A372AB0E1A0F41FA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "876" ], - "x-ms-client-request-id": [ "3a2a863d-afca-4ef2-a37f-838d8a79210d" ], + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "40f29f0d-c9fe-485c-a34f-4e25f161b59c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1984,24 +2029,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "11cf65ea-8535-44bd-8ba7-0c495f4eab83" ], + "x-ms-request-id": [ "7dd10d88-6978-42ba-ba54-599d15de9113" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d54e488-1382-4286-bea4-25a63c266c1c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190828Z:0d54e488-1382-4286-bea4-25a63c266c1c" ], + "x-ms-correlation-request-id": [ "42386535-990e-4581-8a3d-cce8885c8abb" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T003510Z:42386535-990e-4581-8a3d-cce8885c8abb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75577AB80D8E4C518A1AB60185875ACB Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:27Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74FFEE2EA3BA408EB6938F77ACCB9E91 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -2012,12 +2057,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "877" ], - "x-ms-client-request-id": [ "49ea0d3a-ab61-445b-8167-4ab4022e12e6" ], + "x-ms-unique-id": [ "513" ], + "x-ms-client-request-id": [ "7633523e-474c-4f51-9644-55f235d61ebe" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2028,40 +2073,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c5e678ea-0a99-49fc-adae-b3206b847e31", "a74a583d-8a7c-480e-b552-2be6995eaaef", "59e10f69-f385-4ddb-9a51-d0240d4b829b" ], + "x-ms-original-request-ids": [ "8c8900ef-2e35-40a8-be45-3438a8da37f9", "848908fb-223a-4871-a06b-27b3ecfc36ee", "7dd983f8-4d83-4202-86af-9ec8f5d5c153" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "334736a6-dd60-4596-8cf7-4d7c8d931b96" ], - "x-ms-correlation-request-id": [ "334736a6-dd60-4596-8cf7-4d7c8d931b96" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T190829Z:334736a6-dd60-4596-8cf7-4d7c8d931b96" ], + "x-ms-request-id": [ "24f20ad0-bb38-475e-b0d2-224e3a24b22a" ], + "x-ms-correlation-request-id": [ "24f20ad0-bb38-475e-b0d2-224e3a24b22a" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T003511Z:24f20ad0-bb38-475e-b0d2-224e3a24b22a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6DEDD7906401495C82B2C0D02208D17B Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:28Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD8A99CD6EB34930AEE801DFBB6F9CDA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "878" ], - "x-ms-client-request-id": [ "98f6d355-048e-41b2-9eb2-54a07c400b05" ], + "x-ms-unique-id": [ "514" ], + "x-ms-client-request-id": [ "84a4b0e4-7be3-4d93-a7d8-42cbdfa2ef98" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2072,16 +2117,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e78deed9-d1dc-4537-bcb8-ffa5107fefd6" ], + "x-ms-request-id": [ "241ef660-0bed-484c-aa6f-53e4530aaa5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8eeba559-14e5-4506-8724-2e57c8c6f4eb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e930d41-1823-4017-b4eb-92c5d4757d42" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "602f1cf8-747e-4bde-bfd4-475eefa99ddb" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T190829Z:602f1cf8-747e-4bde-bfd4-475eefa99ddb" ], + "x-ms-correlation-request-id": [ "e6cd3211-f468-4418-b53b-0443975d2b56" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003511Z:e6cd3211-f468-4418-b53b-0443975d2b56" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6197BEE6FF14EBBBCEBF0AAE7D61C00 Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:29Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A32A52468F342C18E90972F55E2CE5C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -2092,10 +2137,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2015-05-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2015-05-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -2115,30 +2160,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/643d21ef-cdac-4de4-aac5-2a68422232d5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da8fa89f-79e1-4b46-b014-493e31eee3b0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "ff9e7dad-8708-4811-9eee-a1d80aeb96ec" ], - "x-ms-correlation-request-id": [ "ff9e7dad-8708-4811-9eee-a1d80aeb96ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190836Z:ff9e7dad-8708-4811-9eee-a1d80aeb96ec" ], + "x-ms-request-id": [ "06d77cbd-15be-4ce3-a4d0-42b34f836c1b" ], + "x-ms-correlation-request-id": [ "06d77cbd-15be-4ce3-a4d0-42b34f836c1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003517Z:06d77cbd-15be-4ce3-a4d0-42b34f836c1b" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDD6813E8D9641AC8E77B2B7CEAB7C2C Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:29Z" ], - "Date": [ "Mon, 17 Nov 2025 19:08:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9AFC9A701364CF59A1BE42826D3C18B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a300d587-0000-0300-0000-691b72b40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest3-94dzrfhslm\",\r\n \"name\": \"Func-PowerShell-NewTest3-94dzrfhslm\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-94dzrfhslm\",\r\n \"AppId\": \"fbfa8b67-0488-423e-861a-32120b09e9c6\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"68a0f78f-7167-46eb-8a70-688495bd3240\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest3-94dzrfhslm\",\r\n \"CreationDate\": \"2025-11-17T19:08:30.4033518+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-94dzrfhslm_fbfa8b67-0488-423e-861a-32120b09e9c6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-94dzrfhslm-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20273d3-0000-0300-0000-69c47f450000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"name\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"AppId\": \"bb613380-3ae8-4ed3-a136-8399dc746da1\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e03c45ab-51a6-4e3b-a6d1-1f4008542831\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"CreationDate\": \"2026-03-26T00:35:12.7528327+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-7q9cjpgboy_bb613380-3ae8-4ed3-a136-8399dc746da1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-7q9cjpgboy-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-94dzrfhslm\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-7q9cjpgboy\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2152,43 +2197,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F594A8CC8B\"" ], + "ETag": [ "\"1DCBCB86CB451B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f22a35e-8bc9-4931-8d10-0abb0107c34e" ], + "x-ms-request-id": [ "06523304-93d5-4327-a5db-9a622187bed1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9cb6887c-7515-4c97-aca2-9b9e0c6a2c26" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/95bfc711-b334-4736-8159-358534463b67" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "b6ba359d-6e10-43d1-a969-48909a2bceac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190918Z:b6ba359d-6e10-43d1-a969-48909a2bceac" ], + "x-ms-correlation-request-id": [ "b962b2df-de4d-43d4-bb12-6df0fa3a29a2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003559Z:b962b2df-de4d-43d4-bb12-6df0fa3a29a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B45E7E261B7E4CDB9A71BB36F70C0BEC Ref B: MWH011020807031 Ref C: 2025-11-17T19:08:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB627E60EF5643B79B3175E5713185B7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:35:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:08:37.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:19.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "881" ], - "x-ms-client-request-id": [ "7686d129-51d2-4d7e-b0c2-2b65fa84dc64" ], + "x-ms-unique-id": [ "517" ], + "x-ms-client-request-id": [ "49671a4f-a81b-4f3e-a6c2-99402282f741" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -2198,42 +2243,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5AC1E2655\"" ], + "ETag": [ "1DCBCB8845876AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "864b72f8-6f35-4964-8d9b-624bc56b3519" ], + "x-ms-request-id": [ "8d0ce3e0-943f-4ac3-9990-e157cdc17634" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bb1ea7d0-fb27-4ccd-b0e0-909f11672e0b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190948Z:bb1ea7d0-fb27-4ccd-b0e0-909f11672e0b" ], + "x-ms-correlation-request-id": [ "6fac3d32-bd08-40dc-8733-53441104059b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003630Z:6fac3d32-bd08-40dc-8733-53441104059b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D1FBCEA1351449393B350ABED657504 Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:48Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F162E5A0C61D4C209C351F024691E601 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:09:18.0533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:59.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+17": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "882" ], - "x-ms-client-request-id": [ "fd94758b-8734-4acb-a54c-1eb273df6b49" ], + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "4a5961f4-3341-42fa-b404-daa989993da3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2244,42 +2289,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5AC1E2655\"" ], + "ETag": [ "1DCBCB8845876AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "088419ba-be7b-407d-9722-a03d46b0d0b6" ], + "x-ms-request-id": [ "1d3ad541-f8ad-4f20-a199-f3fc77fd755f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d7aa1c23-1f8a-4946-8ed2-7ebdf8ea2aad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190948Z:d7aa1c23-1f8a-4946-8ed2-7ebdf8ea2aad" ], + "x-ms-correlation-request-id": [ "618e378d-e9cc-4ef7-87ea-ed8b3bd0d385" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003630Z:618e378d-e9cc-4ef7-87ea-ed8b3bd0d385" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 136E15DE57A7408CA4F8D5931CA36CDB Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:48Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E21A888A8B347DB823DFD902E98B449 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:09:18.0533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:59.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "883" ], - "x-ms-client-request-id": [ "44d89fe4-456e-4470-9275-5ab0410cdc8d" ], + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "2686e666-303a-4b1e-8c35-07528987a983" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2291,40 +2336,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3347a95e-99e4-4aa6-908e-48203fb77ebd" ], + "x-ms-request-id": [ "0e096483-6000-4b6e-a7d9-805262218d2c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/53c77b86-3bdb-417f-8168-e731908c440e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2500b11-5d6e-4ad5-8670-87fc2a40a49a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8b3e7ec4-b89c-4211-a910-919815b3c4a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190949Z:8b3e7ec4-b89c-4211-a910-919815b3c4a2" ], + "x-ms-correlation-request-id": [ "33b98c46-a60c-4e88-a817-0250af1fa722" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003630Z:33b98c46-a60c-4e88-a817-0250af1fa722" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 202278C2E05B414AA044ABAD94F8FAB3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:49Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 67041140BA974182B21727119C138D52 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-94dzrfhslm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "884" ], - "x-ms-client-request-id": [ "6d2142d2-a4c0-461c-9f95-4ba8cae317e2" ], + "x-ms-unique-id": [ "520" ], + "x-ms-client-request-id": [ "a849003a-5ee3-41b0-a7ee-d5a270fe917f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2336,41 +2381,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39b6e366-e5b9-4d3a-aa39-b1523c5328b0" ], + "x-ms-request-id": [ "eb334b80-9665-40e7-82fa-6206c315c1f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02ab6d12-b8a6-4024-a9c3-81cd847a7b33" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8b51686-2992-49e5-b90f-8108f4a93273" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f551d63-12c0-4ba1-b36c-324a3a2d75e8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190949Z:6f551d63-12c0-4ba1-b36c-324a3a2d75e8" ], + "x-ms-correlation-request-id": [ "150e42be-fcc8-48cb-9e4f-e8f3d7d40e84" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:150e42be-fcc8-48cb-9e4f-e8f3d7d40e84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 241B94E37D744EEA9A3297F42CD26041 Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:49Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24BDB6665772423CA94413F34BBAFD71 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "885" ], - "x-ms-client-request-id": [ "a6ce6554-aebb-44d3-8c28-a348766b6637" ], + "x-ms-unique-id": [ "521" ], + "x-ms-client-request-id": [ "8e5aa944-fccc-4a1a-9c77-2680ef6522b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2381,42 +2426,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5AC1E2655\"" ], + "ETag": [ "1DCBCB8845876AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60d9fe48-ef93-453c-a212-832a8c49737f" ], + "x-ms-request-id": [ "b2ebc7ce-2ab0-4c68-94c7-24d9c4ce220d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a0b9c4f0-6dd1-4e97-87ae-f38f941e18f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190949Z:a0b9c4f0-6dd1-4e97-87ae-f38f941e18f9" ], + "x-ms-correlation-request-id": [ "c1f95eb4-2d2e-4649-989d-41786712c8fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:c1f95eb4-2d2e-4649-989d-41786712c8fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B73EA550D3674066BAC8B33FB33449B9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:49Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5D63AF8DE39640F7A3C51F7AF2ABB87E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8488" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:09:18.0533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:59.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "886" ], - "x-ms-client-request-id": [ "390095fd-37fd-4086-ae9a-d798584b18ba" ], + "x-ms-unique-id": [ "522" ], + "x-ms-client-request-id": [ "434df88a-15e2-45ac-a112-103d4488ea59" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2428,40 +2473,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cecb09c8-ab85-4271-807d-41e22d8c9795" ], + "x-ms-request-id": [ "15eebd96-4e05-4bb5-b04e-4f466c3d125e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/707916b4-e6e2-47d3-94f2-32cbac80c11c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/32912ec3-1403-4464-953e-3a2acd5196fb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "23db9c2e-6e06-4f93-8a24-e8278ac84890" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190950Z:23db9c2e-6e06-4f93-8a24-e8278ac84890" ], + "x-ms-correlation-request-id": [ "020a8fd1-c8b1-4915-81ff-27efd6b09310" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:020a8fd1-c8b1-4915-81ff-27efd6b09310" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B2393189F5A044BDAA24808125FC60BF Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:50Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F1A8FE0A939F4042A575FBBE96843844 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-94dzrfhslm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "887" ], - "x-ms-client-request-id": [ "77257745-545d-4dfe-91c8-7adddd7dc565" ], + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "b74ff251-1ed2-41bd-9a33-162cf5168765" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2473,41 +2518,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed75afc9-a26f-4caf-9183-626a7d9fa9fd" ], + "x-ms-request-id": [ "fd00e395-c9c9-4531-ba67-ada12cd935c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1ab4b660-4167-40ba-b484-3708a9309fb6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ded51de-265f-4778-84fc-9671e0a62ff3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190950Z:3ded51de-265f-4778-84fc-9671e0a62ff3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0375544f-ad13-4453-adb1-99212347765b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "75e22606-c75a-48f3-b4d8-d225b38b9c74" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:75e22606-c75a-48f3-b4d8-d225b38b9c74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60AD85AE20B84313914D0EF45C294E85 Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:50Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41B11C3D847D43A1A92E7BEE631825FF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "524" ], + "x-ms-client-request-id": [ "b57616bc-68c5-4344-a834-b249a9db316b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "30188764-591a-4c9a-94ce-f15204700da3" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9b317dc5-eac5-4090-af73-dcae7cb39701" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003632Z:9b317dc5-eac5-4090-af73-dcae7cb39701" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 578E424181524525BBE4A24D77F0AB14 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "888" ], - "x-ms-client-request-id": [ "71f8cb24-f0eb-4b37-9da2-01fe7fb99387" ], + "x-ms-unique-id": [ "525" ], + "x-ms-client-request-id": [ "b92e20ec-4d00-4a9b-9054-e237dfbc3347" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2519,32 +2609,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f927b27f-f298-467c-9dd5-bb9df24be16e" ], + "x-ms-request-id": [ "f7a17f27-8c87-4265-86b2-306d7bf5143e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b257c71-bacb-40ad-9deb-f25c11568fa8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0061172b-cb50-49c7-afdc-2745c6420852" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "65af6a0c-aa09-4bd4-872c-a961ae95187d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190950Z:65af6a0c-aa09-4bd4-872c-a961ae95187d" ], + "x-ms-correlation-request-id": [ "1a6a7478-7654-4403-958a-be16d06e5fa9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003632Z:1a6a7478-7654-4403-958a-be16d06e5fa9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F8B545241B1422A982263841B9AE759 Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:50Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FE13809AEB345E2AEFBAA97BE15B92A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-94dzrfhslm\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+25": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-94dzrfhslm\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-7q9cjpgboy\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2558,43 +2648,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5AC1E2655\"" ], + "ETag": [ "\"1DCBCB8845876AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3d3e994-64c5-4bd6-bf3a-ba22d91a4f19" ], + "x-ms-request-id": [ "f2c9e8ad-a05c-4f72-9117-9dd597e96eeb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d473bb2-ad44-4285-ac0f-910c1671164a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/653af45a-229e-4b39-9063-e3307cacb6e3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c2988611-8eda-4c3e-ad9a-cb049f0e733c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T190953Z:c2988611-8eda-4c3e-ad9a-cb049f0e733c" ], + "x-ms-correlation-request-id": [ "905fa16a-3d12-4335-8029-9a42be94c050" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003634Z:905fa16a-3d12-4335-8029-9a42be94c050" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 651725351E0F440BB61D4068581BB718 Ref B: MWH011020807031 Ref C: 2025-11-17T19:09:50Z" ], - "Date": [ "Mon, 17 Nov 2025 19:09:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8781435882A456AAFFBA9694D29EAAF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:36:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8851" ], + "Content-Length": [ "8918" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:09:52.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "890" ], - "x-ms-client-request-id": [ "19085b18-9705-4270-8887-de1187e3e41e" ], + "x-ms-unique-id": [ "527" ], + "x-ms-client-request-id": [ "77de8d57-ec7c-416e-bfb6-5fdb4bc7668f" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -2604,42 +2694,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5C0A9DAB5\"" ], + "ETag": [ "1DCBCB898F0E240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cd3403f9-e9dc-4e99-b44d-98627008d827" ], + "x-ms-request-id": [ "9cf4a664-647f-4f1f-9693-c6ad16e93ecd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7b17e48d-c088-4ae9-be36-dd660455e8cd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191023Z:7b17e48d-c088-4ae9-be36-dd660455e8cd" ], + "x-ms-correlation-request-id": [ "82243c8b-1050-4968-b38b-a9d80d26783e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003705Z:82243c8b-1050-4968-b38b-a9d80d26783e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FAD2154114F74455801E6B685CF9513E Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:23Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A78C19B3F0F44F5BD5047A932D9CC85 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8825" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:09:52.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "891" ], - "x-ms-client-request-id": [ "ddb2a402-6d8d-4022-bf9a-c58fa2323309" ], + "x-ms-unique-id": [ "528" ], + "x-ms-client-request-id": [ "b9c6ac16-936c-40f5-9c01-fff413af6170" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2650,42 +2740,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5C0A9DAB5\"" ], + "ETag": [ "1DCBCB898F0E240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0872b995-0b39-4c23-bc77-5b7e4cb77908" ], + "x-ms-request-id": [ "9489fafc-73c2-4372-88d2-bb6492fd246b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "309c4ed5-45f6-430b-a603-d117d673c807" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191023Z:309c4ed5-45f6-430b-a603-d117d673c807" ], + "x-ms-correlation-request-id": [ "9933dbc0-de92-440b-9d28-a832b0a09f23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003705Z:9933dbc0-de92-440b-9d28-a832b0a09f23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B1480AD6C5441CD945C631E4351E889 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:23Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 16A4BC7969E543DDB5ACBFF811718AE1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8825" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:09:52.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+28": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "892" ], - "x-ms-client-request-id": [ "42da4ee2-7a85-4005-887f-7d829d608359" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "a4cab557-a83e-4223-bf64-5ea3dda985e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2697,40 +2787,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b355418e-6241-44ef-ad3b-6c24a52949c7" ], + "x-ms-request-id": [ "ee0a38f6-7c64-4df6-b3f1-50a0e60f94cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/adfb8841-03fd-4fa8-96ba-334e8f14a215" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb0bcf1f-7df4-4f4d-8fc5-49b59c0a363a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6a58dc64-f67d-451e-af8c-6502f253a66a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191024Z:6a58dc64-f67d-451e-af8c-6502f253a66a" ], + "x-ms-correlation-request-id": [ "35994633-11ea-4303-9ead-fca6fdf7e59d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003705Z:35994633-11ea-4303-9ead-fca6fdf7e59d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34BE1E316D6B4C6C946E8AA6FF558FE1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 101F013EBED94178B1E96D88BA2650C8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-94dzrfhslm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "893" ], - "x-ms-client-request-id": [ "34fac2a1-2cb4-4bac-98d1-42d611b6cbbe" ], + "x-ms-unique-id": [ "530" ], + "x-ms-client-request-id": [ "04c32c69-bd6b-4faa-af71-5197ddb616c0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2742,41 +2832,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba1e7190-ef19-44cc-9c3e-d9f1726440e7" ], + "x-ms-request-id": [ "1175c5ec-7e67-4537-9885-f8af2999e7d6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/098b00ec-97a4-4554-a89a-2145a9bd5b0e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1772f421-75cc-482e-8fd1-0043c261a70d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cc04ebc8-6857-4deb-9d77-3c01023200f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191024Z:cc04ebc8-6857-4deb-9d77-3c01023200f7" ], + "x-ms-correlation-request-id": [ "6c12212c-457a-46e9-ae98-8e81739648d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:6c12212c-457a-46e9-ae98-8e81739648d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 916836356C334A5BA579A6A0FDB03974 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64BF5241637D455C8FCEA39A30F360EB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":32299,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88198,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "894" ], - "x-ms-client-request-id": [ "7c7a1525-4ba8-462c-be86-e13e08405aea" ], + "x-ms-unique-id": [ "531" ], + "x-ms-client-request-id": [ "c9badf66-45ab-4d0c-ba4f-65fc7ac1955f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2787,42 +2877,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5C0A9DAB5\"" ], + "ETag": [ "1DCBCB898F0E240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd77ff1f-022e-48ff-be1c-a99c2cc21739" ], + "x-ms-request-id": [ "8d3dbad8-1ace-48a7-9f66-31b572d70a52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8cc6242b-bb42-418c-a13f-97ee8d321173" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191024Z:8cc6242b-bb42-418c-a13f-97ee8d321173" ], + "x-ms-correlation-request-id": [ "2558e235-6918-42d2-af04-ec7ddabbb2d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:2558e235-6918-42d2-af04-ec7ddabbb2d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C5D21E814614F6883E20AA73C5211A4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7561E6CE3314403CA287D9CF0CEE028A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8825" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest3-94dzrfhslm\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-94dzrfhslm.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:09:52.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest3-94dzrfhslm\\\\$Func-PowerShell-NewTest3-94dzrfhslm\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest3-94dzrfhslm.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"04c6ae83-2119-4150-8142-842046585154\",\"clientId\":\"cd05a190-f35b-4f6b-8748-efe1238bb1ff\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+31": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "895" ], - "x-ms-client-request-id": [ "d3bf0b5f-4d63-453c-b190-9530f17d3a9d" ], + "x-ms-unique-id": [ "532" ], + "x-ms-client-request-id": [ "796a925f-a9f6-4bd5-aae0-8e1ef810157a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2834,40 +2924,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b00ef40f-a34e-4980-ba2d-7a327ba4fd3c" ], + "x-ms-request-id": [ "6a2e34e1-c3a7-4d18-a1e9-dbeb6c6e73f6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5be8a22-232d-48fa-9482-e2bfaa9ab8f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15fa2b62-b47e-4320-84c6-7daa9f183d51" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2e9ee93e-00d0-49a3-ba1d-c76b1d296d09" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191025Z:2e9ee93e-00d0-49a3-ba1d-c76b1d296d09" ], + "x-ms-correlation-request-id": [ "0a0c19d2-1ff8-4126-b1df-3c48c4dcbff5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:0a0c19d2-1ff8-4126-b1df-3c48c4dcbff5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF14BCB2D9874026B309146FD45107F4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BED8787256B6426896740B8D372A00E7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-94dzrfhslm\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "896" ], - "x-ms-client-request-id": [ "daccad76-f1d1-455e-96ed-37a22e3a45f3" ], + "x-ms-unique-id": [ "533" ], + "x-ms-client-request-id": [ "e211c4f9-0027-4c05-b4fa-1914f94715c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2879,41 +2969,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a3e5bcb-f9b2-4db6-8d8a-576ba6576015" ], + "x-ms-request-id": [ "fc2c9c1a-48d5-488a-8573-83c365870240" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06e4c5c8-0685-477f-9d37-3b6fb982177c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1ba3b021-4a75-4528-8da6-05c7cc1beb74" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191025Z:1ba3b021-4a75-4528-8da6-05c7cc1beb74" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e283608f-9788-4c1a-a245-63437d3bb78c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b9de0407-a2c2-4c10-89ba-dba814541bef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:b9de0407-a2c2-4c10-89ba-dba814541bef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD663D33D53B49F2A71F1EDDAC024ADA Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46361FE8A56D47BA8D814473CFCAB4A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm/config/web\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":32299,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88198,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "897" ], - "x-ms-client-request-id": [ "29529b6a-7fcb-437b-b2e2-a9391067bc05" ], + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "e50dde43-c42d-4e73-81ba-da7a3c423cc9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2925,40 +3015,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d359ec2-187f-4dd7-8808-765c1962987e" ], + "x-ms-request-id": [ "d94ea375-02e0-41d7-82e3-4923f31fa7b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6510b141-06fd-4b72-bb3c-662be5e26a01" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191025Z:6510b141-06fd-4b72-bb3c-662be5e26a01" ], + "x-ms-correlation-request-id": [ "c8ec2b67-2a54-4911-be89-a5e44ffd92b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:c8ec2b67-2a54-4911-be89-a5e44ffd92b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD549781E2F147F1B60E0587264C12B8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F08825AACFE74A46AC64F0F56C84B254 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+34": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "898" ], - "x-ms-client-request-id": [ "2dab9b0e-0874-48c5-b519-2a364c7ebabe" ], + "x-ms-unique-id": [ "535" ], + "x-ms-client-request-id": [ "be8fda91-5f35-4447-a807-6290ed41f13a" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2969,20 +3059,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5C0A9DAB5\"" ], + "ETag": [ "\"1DCBCB898F0E240\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3066b15-add4-4225-bb5a-117d25e6cd41" ], + "x-ms-request-id": [ "6f29b5a5-e85e-43c7-a1b1-e3a5475e8081" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a9a15fc-e42c-4feb-bde2-2cebdda8b67e" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "0542db2d-7740-4024-9675-8d643a175582" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191040Z:0542db2d-7740-4024-9675-8d643a175582" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef6659a0-a2be-4dd3-a9cf-599122292dd1" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "02575038-0325-41f0-8c8a-7d1a27ccb91a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:02575038-0325-41f0-8c8a-7d1a27ccb91a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFEF582CF00F49E8AF89F796F66F2960 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A93867093294881B057B512EE077F36 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:07Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:14 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2992,19 +3082,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "899" ], - "x-ms-client-request-id": [ "05e2665f-f819-4ce9-b8e2-b1294804726a" ], + "x-ms-unique-id": [ "536" ], + "x-ms-client-request-id": [ "efeb1632-f947-422b-8ecf-dcdabc78c845" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3016,37 +3106,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "79ad189d-f225-4057-8981-6087959ca0d7" ], - "x-ms-correlation-request-id": [ "79ad189d-f225-4057-8981-6087959ca0d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191040Z:79ad189d-f225-4057-8981-6087959ca0d7" ], + "x-ms-request-id": [ "cfbf8b66-5e33-43d2-ba65-a72dde6725c0" ], + "x-ms-correlation-request-id": [ "cfbf8b66-5e33-43d2-ba65-a72dde6725c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:cfbf8b66-5e33-43d2-ba65-a72dde6725c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6717AB9D660421A953FC16070BCA748 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:40Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB2051185E0D4AC699897A34CDC89485 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "900" ], - "x-ms-client-request-id": [ "0c6f5663-a366-42a1-a10f-554d401e2ef3" ], + "x-ms-unique-id": [ "537" ], + "x-ms-client-request-id": [ "e9164995-4813-435e-b198-97f6dc14c062" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3058,21 +3148,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "4bd5a112-5c31-4f69-a706-0d3940f9f33f" ], - "x-ms-correlation-request-id": [ "4bd5a112-5c31-4f69-a706-0d3940f9f33f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191040Z:4bd5a112-5c31-4f69-a706-0d3940f9f33f" ], + "x-ms-request-id": [ "9e8cc7cd-d3ef-4c28-96a7-6a595ef6ea4a" ], + "x-ms-correlation-request-id": [ "9e8cc7cd-d3ef-4c28-96a7-6a595ef6ea4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:9e8cc7cd-d3ef-4c28-96a7-6a595ef6ea4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DA6D57E20F14643833E5E0D6D8DD8B7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:40Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C660E3236754BB8B6658B7C87D7D368 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-94dzrfhslm\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -3083,12 +3173,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "901" ], - "x-ms-client-request-id": [ "5506322b-331f-4faa-8152-ad5f4ae18aa4" ], + "x-ms-unique-id": [ "538" ], + "x-ms-client-request-id": [ "7cb8f3a7-950e-47e2-a132-b234f5a83a4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3100,32 +3190,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1895f0f5-26c4-408e-806f-3b492bf28b10" ], + "x-ms-request-id": [ "f1614587-2302-422c-b38c-d3cf5ca86364" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9dc5584d-2cc4-4fce-bbd1-911ded689117" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a41ba333-9f8b-4c1c-b459-a841209f8532" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c177acdf-8111-4111-a042-ecb67591297f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191041Z:c177acdf-8111-4111-a042-ecb67591297f" ], + "x-ms-correlation-request-id": [ "d184bd41-8bda-4e13-a3de-70d8ba44cf90" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:d184bd41-8bda-4e13-a3de-70d8ba44cf90" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1817D87A31DE4CE4937ED9480E2F8598 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:41Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DAE5C39048D40B4A5E95E1218BCF765 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+2": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 6,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -3140,44 +3230,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5DF2225B5\"" ], + "ETag": [ "1DCBCB8B2F3D1C0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36a50656-24e8-4dec-a658-faf65e489db3" ], + "x-ms-request-id": [ "e423b0d7-3f63-4ae1-b0b8-5ca0aea63941" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8460ebe5-f7c7-4455-bda4-c296bb6ba262" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea714540-8a9a-4f25-a22e-586be4ad2c85" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8e83ef74-22a5-4b32-b074-5f9ef4bc60cd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T191044Z:8e83ef74-22a5-4b32-b074-5f9ef4bc60cd" ], + "x-ms-correlation-request-id": [ "3b0e20f4-2da2-4b5e-a14f-a8dfd276b6a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003719Z:3b0e20f4-2da2-4b5e-a14f-a8dfd276b6a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4114751F05248C5952033CF687D51E8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:10:41Z" ], - "Date": [ "Mon, 17 Nov 2025 19:10:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 236DD9CA936C401ABD320CBE390F8286 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1915" ], + "Content-Length": [ "1912" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":60832,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60832\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T19:10:42.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "903" ], - "x-ms-client-request-id": [ "e8d045ab-5898-4ebc-ae68-1343ca177498" ], + "x-ms-unique-id": [ "540" ], + "x-ms-client-request-id": [ "2b95f4ad-7f4a-48ca-82f7-173098bc814d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -3188,41 +3278,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c27a2255-156a-423e-a387-7ef91867454c" ], + "x-ms-request-id": [ "574f5c9c-2d26-4262-b4bf-8d0d6ca06df1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f12f22ae-5372-41e4-acf6-69b50040f1ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191115Z:f12f22ae-5372-41e4-acf6-69b50040f1ea" ], + "x-ms-correlation-request-id": [ "ba1f010e-5025-4a59-a0d1-a6ba369511cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003750Z:ba1f010e-5025-4a59-a0d1-a6ba369511cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE6268147BD34569B727F6FCBF8E1B74 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB93AD108C7B45008757DD269B20C334 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60832,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60832\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:10:42.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "904" ], - "x-ms-client-request-id": [ "e8d045ab-5898-4ebc-ae68-1343ca177498" ], + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "2b95f4ad-7f4a-48ca-82f7-173098bc814d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -3233,24 +3323,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "750ca7cd-8e39-4fd1-9479-d995d09e008c" ], + "x-ms-request-id": [ "1f646609-9b11-4c01-9543-3daa70d94164" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b8866d14-7974-45e8-b90f-e21ca72e836a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191115Z:b8866d14-7974-45e8-b90f-e21ca72e836a" ], + "x-ms-correlation-request-id": [ "1cd00960-f9a5-4b3f-a6b2-c0aededc9f92" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003750Z:1cd00960-f9a5-4b3f-a6b2-c0aededc9f92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F65169A1DAAD4687818F31D3057DFDB7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECCD1B77183D479B891900D5975CEF9C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60832,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60832\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:10:42.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -3258,7 +3348,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-864zaeovnd\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3273,18 +3363,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0850d6bf-8cb8-4ecd-a676-2d66556c14e9" ], + "x-ms-request-id": [ "c4f14b38-8aeb-490d-af9f-df1e82704b4f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3dc6dd38-3bf4-4e94-a002-964527ff1b57" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/9a724876-9a68-4fd4-8b07-d6f79f55befc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d4a90c5f-6663-45e8-a820-11b37ca7e65e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191115Z:d4a90c5f-6663-45e8-a820-11b37ca7e65e" ], + "x-ms-correlation-request-id": [ "68606dea-1490-478e-a8bb-7a0205fe553c" ], + "x-ms-routing-request-id": [ "WESTUS:20260326T003750Z:68606dea-1490-478e-a8bb-7a0205fe553c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDC2FAA77BE04A4EBFD8C9590BD70FEF Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CCE1CCEDE1D14E6799FFEE3305804DEB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3302,12 +3392,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "906" ], - "x-ms-client-request-id": [ "59cf3630-0996-4c53-8e25-faf4a481e0f8" ], + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "dc4391bc-e064-4d41-ba8d-c38dada54487" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3318,40 +3408,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c72958e2-4f34-41f2-8390-3ab26cebb91d", "9a38ea24-b363-4384-b804-442c2ab0fa98" ], + "x-ms-original-request-ids": [ "d1431378-72ed-4468-a1e7-9d0d79e08c49", "4a355bd8-a9ac-4d5a-ae6f-515206069f16" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3f0f9eab-f35e-40d8-a58e-66ba593d53f4" ], - "x-ms-correlation-request-id": [ "3f0f9eab-f35e-40d8-a58e-66ba593d53f4" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T191116Z:3f0f9eab-f35e-40d8-a58e-66ba593d53f4" ], + "x-ms-request-id": [ "0a5c4a7b-863c-4de1-b840-8cd115a0ccb0" ], + "x-ms-correlation-request-id": [ "0a5c4a7b-863c-4de1-b840-8cd115a0ccb0" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T003751Z:0a5c4a7b-863c-4de1-b840-8cd115a0ccb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC057C3A91BF480B9A69BE0BE7CC6ADB Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A7BD1FEED9842269AAB68411073E010 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "17140" ], + "Content-Length": [ "17263" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511737,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511732,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511744,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511754,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046165,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "907" ], - "x-ms-client-request-id": [ "13d646b0-7ef4-4025-a204-6c9973355709" ], + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "8bf9a336-2cc1-4216-a0c6-994a3941dd62" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3363,40 +3453,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "878e052e-4d91-4495-979a-42629798576f" ], + "x-ms-request-id": [ "ceb61bff-2568-4e9a-a871-aec997d9de3d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "183cc847-7f54-416f-b6aa-3ce5927b9f8a" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T191117Z:183cc847-7f54-416f-b6aa-3ce5927b9f8a" ], + "x-ms-correlation-request-id": [ "37223825-f015-41b5-a853-b54b9577140f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:37223825-f015-41b5-a853-b54b9577140f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F6E54D86C4240DF982389108FFA5596 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2223F81BE9A1475CB0DF84C5DC5E89B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "908" ], - "x-ms-client-request-id": [ "faac242f-92ca-4c72-ad6e-e1c5d7b9e642" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "6957a441-7b3d-49b5-bf04-e85ef6ae92f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3408,40 +3498,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fb5db9e-a1e9-499c-9275-f00b295133bf" ], + "x-ms-request-id": [ "1eff560d-8327-4073-a807-0bbbf7881eb8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7f54e8b9-7d5d-4ccf-b705-eeca837969f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191117Z:7f54e8b9-7d5d-4ccf-b705-eeca837969f6" ], + "x-ms-correlation-request-id": [ "0d60b524-149e-44d3-a26a-d983131cd1d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:0d60b524-149e-44d3-a26a-d983131cd1d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4ED9BAD1C3D442118FBC09F7A3DF01C4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD551E4C886040E890754522F11074EB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "909" ], - "x-ms-client-request-id": [ "25527543-d183-499a-a864-075c10737423" ], + "x-ms-unique-id": [ "546" ], + "x-ms-client-request-id": [ "ae15c632-ed4a-4e51-bdd8-b81f259dc6bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3453,40 +3543,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95e4a86b-d71e-4616-9505-95ad1678d259" ], + "x-ms-request-id": [ "bded6fb5-be3d-4aa8-84fa-c4ce3615b958" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fb0730a3-dfb3-494a-b757-9905b9d071ae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191117Z:fb0730a3-dfb3-494a-b757-9905b9d071ae" ], + "x-ms-correlation-request-id": [ "aa94cf3c-d956-4851-bd58-aa3f3f92a07e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:aa94cf3c-d956-4851-bd58-aa3f3f92a07e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C2F2DE33C4ED4E048EAF638B58B15903 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1279E204EDCC4014B15AF859009A4ECE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66015,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66015\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:03:37.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "910" ], - "x-ms-client-request-id": [ "ea27b31f-82ec-4765-bf11-f6a12b2ae98a" ], + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "10d538e0-7e16-4d8f-8883-2d8290eab6f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3498,40 +3588,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b84ebf4-6c28-4f82-920c-0d4e60e66558" ], + "x-ms-request-id": [ "4664a7f3-cd40-4e2c-80be-67c758ca1d7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff6c0cfc-62fb-4b5a-882d-b15c8da1d7c4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191117Z:ff6c0cfc-62fb-4b5a-882d-b15c8da1d7c4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "696b5e86-b44e-4360-9a8f-ce7c091d9f07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:696b5e86-b44e-4360-9a8f-ce7c091d9f07" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 743D8CCFCA594AE6B628D9D23172A920 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D81FEDA298154B46A2141358F9EC85ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1754" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "911" ], - "x-ms-client-request-id": [ "0cf03b06-ed70-45fa-9c2a-7df3d5c5ebd7" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "f1103795-9c63-41ee-9930-2c3cdde883d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3543,40 +3633,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "831c100c-ccb6-4dd9-91f5-434443f4ab3c" ], + "x-ms-request-id": [ "d8082e7d-bebb-4be8-99d1-e4fc8285836b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "317c1cb4-af27-4132-989e-c7fbc3f5431a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191117Z:317c1cb4-af27-4132-989e-c7fbc3f5431a" ], + "x-ms-correlation-request-id": [ "7b233173-b710-49d8-a6d3-65dbb3664856" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:7b233173-b710-49d8-a6d3-65dbb3664856" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 841B67E90E6E4AE3A5958BEB02CB1981 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54107F6B9C16455DB21CAE6F04C71FA7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":92318,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-223_92318\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:00:23.2133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "912" ], - "x-ms-client-request-id": [ "674dc806-df69-4275-8fe5-6194f2883c14" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "9a7959f6-74a1-4eda-90e7-2f904da19949" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3588,40 +3678,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa89476f-813c-4b0e-8c69-d64a9eb8d48e" ], + "x-ms-request-id": [ "944cb4fd-aa33-42d0-9d2c-700423eed8d6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3561f43a-1799-4b74-8ec2-252557d364b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191118Z:3561f43a-1799-4b74-8ec2-252557d364b6" ], + "x-ms-correlation-request-id": [ "5375809e-b1c9-4e91-82cd-dfea898c6293" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:5375809e-b1c9-4e91-82cd-dfea898c6293" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E47357BB52F4D41A1612BFFEAABD509 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5C128C077234477943A3419EE208D37 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1747" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":81026,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-317_81026\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:07:41.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "913" ], - "x-ms-client-request-id": [ "168256f1-215f-4b53-aab0-d5e18ef0374e" ], + "x-ms-unique-id": [ "550" ], + "x-ms-client-request-id": [ "43095bfd-2cbb-448e-8365-c9049de3b564" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3633,40 +3723,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5b46d8e-8feb-47c5-b403-3ce363f32a61" ], + "x-ms-request-id": [ "2aac86ab-484c-4a33-a058-b147639ec3c6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "96848d7e-1b54-4c5b-b7e0-c5e0fbb672d5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191118Z:96848d7e-1b54-4c5b-b7e0-c5e0fbb672d5" ], + "x-ms-correlation-request-id": [ "3fecb3ea-66a3-4513-972f-fcfa2484273b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:3fecb3ea-66a3-4513-972f-fcfa2484273b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7353C64A8C047129C14F5D84994F099 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E2CA3E32AB5446B8926215320BA2220 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "914" ], - "x-ms-client-request-id": [ "a03667be-fcd0-4832-a977-af259be4e1c4" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "3f7ae7fe-b66b-4022-87d9-7fe5b5894462" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3678,40 +3768,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff865801-81aa-4519-864e-755aec2d52db" ], + "x-ms-request-id": [ "1ba4d442-68cb-4804-85df-9898a928da48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b51b30ed-6813-4152-bd65-b1f36733dc48" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191118Z:b51b30ed-6813-4152-bd65-b1f36733dc48" ], + "x-ms-correlation-request-id": [ "90bcb778-b3cd-4d71-afca-c0b5a9f2f517" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:90bcb778-b3cd-4d71-afca-c0b5a9f2f517" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60C755BA2C244EA4B3FE765D8EC06F12 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFA75A1C6FCF46C9A66447E84ABDCDC5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "915" ], - "x-ms-client-request-id": [ "11c0b393-fa97-4c11-bee5-7185c7384b92" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "942c4cec-8fb6-4334-8d3b-9c34701c363e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3723,40 +3813,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f852ca1-4d54-47ed-a593-96d363e2cc63" ], + "x-ms-request-id": [ "773c0bd9-f8cf-4738-bc31-ba76824a8e2f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3d72e0bd-a518-4c9e-a99e-ddf8c351eb2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191118Z:3d72e0bd-a518-4c9e-a99e-ddf8c351eb2f" ], + "x-ms-correlation-request-id": [ "66818645-e4c5-49cd-b258-3c33de42f0ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:66818645-e4c5-49cd-b258-3c33de42f0ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D9E71748A4334E3BB0F4F71567FEC785 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F81335991704417EB047299A17153871 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60832,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60832\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:10:42.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "916" ], - "x-ms-client-request-id": [ "8f4889b9-8b50-406a-a20d-b99f1c7481f2" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "8d528cbd-0cde-4f56-9e75-e6a4d913acc3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3768,24 +3858,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66d2458e-4ecd-4ed3-adbb-8cf91d2ef583" ], + "x-ms-request-id": [ "76181e31-120e-4c41-9e0c-f6affbb52392" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "00e83ead-6527-4be9-a9b3-b958c4220b71" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191120Z:00e83ead-6527-4be9-a9b3-b958c4220b71" ], + "x-ms-correlation-request-id": [ "0abb68b3-9c5c-434c-a86a-0c25514b9b1f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T003753Z:0abb68b3-9c5c-434c-a86a-0c25514b9b1f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D262B311098E4F32AB7BD8358F3B553D Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B205B3837D884CC98547412609FBE716 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -3796,12 +3886,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "917" ], - "x-ms-client-request-id": [ "cd09cdfb-b025-42b3-a3c9-aa7a4d455dfc" ], + "x-ms-unique-id": [ "554" ], + "x-ms-client-request-id": [ "a8e207b2-0451-4e3e-88df-696c2f9ef0f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3812,40 +3902,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "be35a5d1-f614-469b-854a-d4043086405e", "75dfdd7b-0e1e-4270-ba01-447f6c3ee42f", "5dab695a-c419-49ae-a276-a4246bde4d04" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2bfd64ee-ee73-4616-b1f6-3465b2d65fca" ], - "x-ms-correlation-request-id": [ "2bfd64ee-ee73-4616-b1f6-3465b2d65fca" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T191120Z:2bfd64ee-ee73-4616-b1f6-3465b2d65fca" ], + "x-ms-original-request-ids": [ "0c506590-eb09-4257-9366-c82462ef1864", "fe42b18a-0e87-4410-9d30-fe7fbfa16992", "ccca8197-084e-4632-989c-599fd350cdc0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "1f989da1-3761-4496-83a3-a0c8379257ec" ], + "x-ms-correlation-request-id": [ "1f989da1-3761-4496-83a3-a0c8379257ec" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T003754Z:1f989da1-3761-4496-83a3-a0c8379257ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA537C4647A34950B2D7A43969431E89 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2FAB7CD7371145119F5DF0E4C472040B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "918" ], - "x-ms-client-request-id": [ "7639cbde-fa07-437a-90ef-ebb6bbcd2c6b" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "c4b5a591-5402-488e-9452-f31a54f2f6a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3856,16 +3946,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0f208b9a-7db5-428c-8df0-2c749b0f9b78" ], + "x-ms-request-id": [ "3fd71d23-0f0a-4369-a034-5c91ef5dde7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/92107992-e232-4703-93da-c4b2bcfae64e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c73fb97-63f3-41d6-8bc6-19c695f1c978" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "06001b93-3824-474e-be42-06770519b251" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T191121Z:06001b93-3824-474e-be42-06770519b251" ], + "x-ms-correlation-request-id": [ "9b372e6a-1274-4d7d-a469-e3ee77930f97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003754Z:9b372e6a-1274-4d7d-a469-e3ee77930f97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B89CFA13ABF64A02ACF6FE0738DA7D80 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:21Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 988A5697814D412D91792D10891F1182 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:37:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -3876,10 +3966,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-864zaeovnd?api-version=2015-05-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2015-05-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-864zaeovnd?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -3899,30 +3989,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/72af8493-dcc1-4c14-b13e-5cc16e32e17b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e426534b-ca0f-405c-a51e-bf8535ff8541" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "cf43f628-4088-4f18-a70c-6a9cc7e869ef" ], - "x-ms-correlation-request-id": [ "cf43f628-4088-4f18-a70c-6a9cc7e869ef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191125Z:cf43f628-4088-4f18-a70c-6a9cc7e869ef" ], + "x-ms-request-id": [ "ac66f363-b7c0-4922-b8cd-2eaa57466bb4" ], + "x-ms-correlation-request-id": [ "ac66f363-b7c0-4922-b8cd-2eaa57466bb4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003800Z:ac66f363-b7c0-4922-b8cd-2eaa57466bb4" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F22D46D4E98D40BF9B60D7B29B941618 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:21Z" ], - "Date": [ "Mon, 17 Nov 2025 19:11:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 68DCA2BDCE80488DAAC8C20059E6277A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:38:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a30070b4-0000-0300-0000-691b735d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest5-864zaeovnd\",\r\n \"name\": \"Func-PowerShell-NewTest5-864zaeovnd\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-864zaeovnd\",\r\n \"AppId\": \"a7185063-397a-406c-8144-7b56b37c943b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"01bfba60-568f-4448-877c-92f212012e4d\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest5-864zaeovnd\",\r\n \"CreationDate\": \"2025-11-17T19:11:21.7935151+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-864zaeovnd_a7185063-397a-406c-8144-7b56b37c943b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-864zaeovnd-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20211e9-0000-0300-0000-69c47fe80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"name\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"AppId\": \"7e45a49c-0d6f-462c-b26a-f3d9664067aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0aeae0f-39f1-4948-a546-a88802548349\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"CreationDate\": \"2026-03-26T00:37:55.6950071+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-1xmbohf4tc_7e45a49c-0d6f-462c-b26a-f3d9664067aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-1xmbohf4tc-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-864zaeovnd\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -3936,43 +4026,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F5FA1115E0\"" ], + "ETag": [ "\"1DCBCB8CE899640\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "21d5d930-0d0d-410c-af2a-b22ae5d81e06" ], + "x-ms-request-id": [ "1e09a54a-ecd1-4894-a04a-9716453d2ce7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b189cca9-3140-4734-84f2-4c0b5907c0bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8dbb734-458f-4580-b47c-6851fbf75884" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "c02287da-0c90-459f-80b1-5c668735b070" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191210Z:c02287da-0c90-459f-80b1-5c668735b070" ], + "x-ms-correlation-request-id": [ "5eef4023-43b1-429f-ac1c-b7d13fd79561" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003844Z:5eef4023-43b1-429f-ac1c-b7d13fd79561" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF8E1AB7F3154DA4BE9938D357F281D3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:11:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:12:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 595032C5B638493DA3CDA8E4E98B5951 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:38:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:38:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8756" ], + "Content-Length": [ "8828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:11:28.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:03.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "921" ], - "x-ms-client-request-id": [ "0741d28b-c01e-40b9-be17-6e2407558bcd" ], + "x-ms-unique-id": [ "558" ], + "x-ms-client-request-id": [ "6fdf59c2-a59f-4b12-b0bb-dd2ad69fb070" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -3982,42 +4072,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F6127A93AB\"" ], + "ETag": [ "1DCBCB8E65C8660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9391cb48-a29e-424f-9f6d-12dbcd75d8ca" ], + "x-ms-request-id": [ "3f1fdab0-ddca-4372-8b51-863b02cd0e2c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cb946bcc-46eb-445f-8159-76120744dd17" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191240Z:cb946bcc-46eb-445f-8159-76120744dd17" ], + "x-ms-correlation-request-id": [ "8a9e96ac-5a34-4f93-8523-4475638a9255" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:8a9e96ac-5a34-4f93-8523-4475638a9255" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B5BA56365C64645AB570BDB7F5A67F3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:12:40Z" ], - "Date": [ "Mon, 17 Nov 2025 19:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 285BBE477EFB40F291B769FAC940BFA1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "8619" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:12:09.7866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:43.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "922" ], - "x-ms-client-request-id": [ "c2edf722-818b-4d4a-90df-42b576c1505c" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "54122fca-76f2-47b8-871b-eed44dd8955b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4028,42 +4118,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F6127A93AB\"" ], + "ETag": [ "1DCBCB8E65C8660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27484dc2-496b-4f03-b1a0-01cdeff006a5" ], + "x-ms-request-id": [ "90a591a4-b142-4137-b621-1854bd0a9cff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f8ce4a8d-6e35-42da-b89e-69d6f7c7e840" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191240Z:f8ce4a8d-6e35-42da-b89e-69d6f7c7e840" ], + "x-ms-correlation-request-id": [ "b0ca5fc0-7fe7-4a34-ad38-31c22e57d93f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:b0ca5fc0-7fe7-4a34-ad38-31c22e57d93f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87A4708387904FD69A1AB09B4CE1D7D5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:12:40Z" ], - "Date": [ "Mon, 17 Nov 2025 19:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C394813668942A2ACAE584AAC63D8FA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "8619" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:12:09.7866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:43.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "923" ], - "x-ms-client-request-id": [ "aa11bfe4-57be-4846-91fb-e3e8061d044a" ], + "x-ms-unique-id": [ "560" ], + "x-ms-client-request-id": [ "591d859c-2160-4f2b-b582-a7c82a438c23" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4075,40 +4165,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5b9209b-498c-4b54-add5-532a0857e9cc" ], + "x-ms-request-id": [ "f60bb89b-7c39-47ca-8590-e359f05691c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb81a558-e74f-4844-aa68-d078b78ec33f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6344a0e1-63b4-44e3-ac2f-c9bc48406189" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b27bbe9e-2342-4c86-89dc-7b6a4170af59" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191241Z:b27bbe9e-2342-4c86-89dc-7b6a4170af59" ], + "x-ms-correlation-request-id": [ "8f78578b-cacc-4932-9935-ce5954e53ccc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:8f78578b-cacc-4932-9935-ce5954e53ccc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 393AA2C69B984C6BAD633AB077EEBDA5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:12:40Z" ], - "Date": [ "Mon, 17 Nov 2025 19:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D32BF647ABD44314A7130B862DDFD83B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "924" ], - "x-ms-client-request-id": [ "e3284a44-44c9-4217-97ca-2c590109b845" ], + "x-ms-unique-id": [ "561" ], + "x-ms-client-request-id": [ "80b03cdd-e75e-4ec8-82f9-e899e658f843" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4120,25 +4210,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "280f2abf-f775-43e9-a3fa-2585bef5259b" ], + "x-ms-request-id": [ "818a8213-5fcd-425e-8b4f-d7513e37253e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8db4c614-dd0d-4fba-a7d4-3c82fb05fcaf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/998b4a94-7fe6-4e49-b9e9-2eaf9b44c3b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b27d7a65-d89e-46d0-99f1-b8dff6152407" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191241Z:b27d7a65-d89e-46d0-99f1-b8dff6152407" ], + "x-ms-correlation-request-id": [ "678cdaaa-46a2-4b84-b08a-3a2ccbff9ddd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:678cdaaa-46a2-4b84-b08a-3a2ccbff9ddd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2EDA1B1560C3442BAD517FE22A5A9F61 Ref B: MWH011020807031 Ref C: 2025-11-17T19:12:41Z" ], - "Date": [ "Mon, 17 Nov 2025 19:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CADD080B80AA46618156E2326DADA331 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32300,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, @@ -4149,12 +4239,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "925" ], - "x-ms-client-request-id": [ "19874c63-22d9-409d-b858-dbead579b36b" ], + "x-ms-unique-id": [ "562" ], + "x-ms-client-request-id": [ "91c3a741-9d2b-45ee-b152-88fc39cbad62" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4166,32 +4256,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ea9e2e4-ee8a-4818-a56a-ef2ab9e8b43a" ], + "x-ms-request-id": [ "a4d35573-4015-4a62-b251-21b481eb1afc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45be4778-2e94-4d4d-b53b-2adf71aae508" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/87a6817b-ef42-40d5-9a38-7c20787479c1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "92a24916-5172-421b-ad5c-ae68c69c59fc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191241Z:92a24916-5172-421b-ad5c-ae68c69c59fc" ], + "x-ms-correlation-request-id": [ "47b1363a-6347-4ea4-a6d9-e1fcaa70a24f" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T003915Z:47b1363a-6347-4ea4-a6d9-e1fcaa70a24f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1053584C5C943C69EA579F5271604B4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:12:41Z" ], - "Date": [ "Mon, 17 Nov 2025 19:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CE9768D02424A2FA2F2C745F6D10DB1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+26": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 10,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -4206,44 +4296,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F626B2DDE0\"" ], + "ETag": [ "1DCBCB8FA9D7620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2ad781a7-da92-4ea4-8948-76642f004b39" ], + "x-ms-request-id": [ "f80c3f8e-9994-4912-9c0f-a21d59b1d1c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3f6f7c95-0aff-40de-b2e9-8c9cd9ff0ee4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b002f96a-e40a-4c93-82db-c7902f4330f5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f2d2cc07-b345-4d4a-a96b-0aaa6fa7ebc4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T191245Z:f2d2cc07-b345-4d4a-a96b-0aaa6fa7ebc4" ], + "x-ms-correlation-request-id": [ "cb1959be-b157-4440-986a-d4e7124d370f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003918Z:cb1959be-b157-4440-986a-d4e7124d370f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B2C2C03CE2F4CBCA8E5F68373E5902D Ref B: MWH011020807031 Ref C: 2025-11-17T19:12:41Z" ], - "Date": [ "Mon, 17 Nov 2025 19:12:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8C23B06D9E849858839563ED3E7C689 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:16Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1913" ], + "Content-Length": [ "1915" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":60833,\"name\":\"Func-Windows-Premium-New-z421i6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60833\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T19:12:42.9666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "927" ], - "x-ms-client-request-id": [ "90563e39-41b9-439c-aab5-e5b83517f2ac" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "75c41a3a-a9ee-4e01-b47a-6e3500f0d975" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -4254,41 +4344,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5fb7704b-96c5-4fa8-b6a1-fed3492688a9" ], + "x-ms-request-id": [ "5e8e542b-8f78-41b4-9773-fb17abb7d10d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1525dcb-e569-4506-b6da-54a6324ce761" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191315Z:c1525dcb-e569-4506-b6da-54a6324ce761" ], + "x-ms-correlation-request-id": [ "176054d7-6a50-4831-b665-adf02c20c3dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003949Z:176054d7-6a50-4831-b665-adf02c20c3dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 929384BCF97342398148BBCDA1088F95 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E145BCBC84FD4D4E8990F14C76AB7FE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60833,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60833\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:12:42.9666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "928" ], - "x-ms-client-request-id": [ "90563e39-41b9-439c-aab5-e5b83517f2ac" ], + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "75c41a3a-a9ee-4e01-b47a-6e3500f0d975" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -4299,40 +4389,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e59b0d7-3646-4a92-b7a6-8bbd125555b6" ], + "x-ms-request-id": [ "488ec73e-e580-4309-b8c2-f0bbe0705545" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2842b6ee-88e2-4c11-9812-2262af1ea976" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191315Z:2842b6ee-88e2-4c11-9812-2262af1ea976" ], + "x-ms-correlation-request-id": [ "b634b0d6-5d2b-497c-8c43-0bfdef1a06b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003949Z:b634b0d6-5d2b-497c-8c43-0bfdef1a06b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7FB9DD80340047BA8309639B1797D43F Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB67E58F56744C0D85D50721C76D8EB9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60833,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60833\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:12:42.9666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "929" ], - "x-ms-client-request-id": [ "eee8591c-5640-44a2-8d5f-0e624eba355d" ], + "x-ms-unique-id": [ "566" ], + "x-ms-client-request-id": [ "f370c2c2-0dad-407e-9d08-e1d53d15a72c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4344,40 +4434,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9286f62-cd5d-4129-b150-fe7a21a049af" ], + "x-ms-request-id": [ "2b1ddf55-0b8d-449d-9ebe-fb9ba094d42c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f663aea8-e819-4d9b-893e-c4a1c5b95509" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191315Z:f663aea8-e819-4d9b-893e-c4a1c5b95509" ], + "x-ms-correlation-request-id": [ "5b41f38e-bdc6-45f7-b6cf-1241e5b9bb9f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003949Z:5b41f38e-bdc6-45f7-b6cf-1241e5b9bb9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48D1F275C256441594BF5F3E05C0907A Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5F911E1647F41D59AAA276AA6020F46 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60833,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60833\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:12:42.9666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "930" ], - "x-ms-client-request-id": [ "3b201cd4-8eb5-40dd-82b1-6d89aa649360" ], + "x-ms-unique-id": [ "567" ], + "x-ms-client-request-id": [ "f936b605-d15a-4912-bb75-cc104836c143" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4388,42 +4478,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F6127A93AB\"" ], + "ETag": [ "1DCBCB8E65C8660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d9ed4a9-23d8-46da-a532-1b05c79ad928" ], + "x-ms-request-id": [ "0c49fbe9-1678-4ea2-a81d-875bedc24454" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1609ed26-5172-42f4-b289-17de8bc2a1a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191316Z:1609ed26-5172-42f4-b289-17de8bc2a1a8" ], + "x-ms-correlation-request-id": [ "4b94f9bb-2030-4147-a145-a45945556ce9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:4b94f9bb-2030-4147-a145-a45945556ce9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48556A13F2A641BAB2D698D2E3FDA884 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72875F3BF54149F8A3F7838F71A7C78E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8730" ], + "Content-Length": [ "8619" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:12:09.7866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:43.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+31": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "931" ], - "x-ms-client-request-id": [ "8af66ea7-5d57-47b7-9b6e-2b2bbfd74bbb" ], + "x-ms-unique-id": [ "568" ], + "x-ms-client-request-id": [ "70770035-0bfb-4aa2-b3b7-0cf6b98ec489" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4435,40 +4525,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53b93582-25e9-4b1b-8461-3906941220bc" ], + "x-ms-request-id": [ "07d20765-0f9d-496a-a98a-c2297d4f83c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b21c325c-4fd7-4769-a7c2-473212a868e5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/702dbc6a-6e0c-4a2e-b058-cdcc9352d073" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ef0c29c8-848f-411f-8064-de4a7755b4e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191316Z:ef0c29c8-848f-411f-8064-de4a7755b4e4" ], + "x-ms-correlation-request-id": [ "7bd533e4-b080-4081-b812-a310b2e415b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:7bd533e4-b080-4081-b812-a310b2e415b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD0D9B8129CC42C7B0058940F7E5D053 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B68D4105AE4148F78791C48C119D8131 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "932" ], - "x-ms-client-request-id": [ "fa516a29-401c-4f5e-9263-ea370ba5f5ed" ], + "x-ms-unique-id": [ "569" ], + "x-ms-client-request-id": [ "3af13d7e-b3de-41f1-82b6-4b88f65d05a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4480,41 +4570,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32e342a0-3ac3-4d94-9392-7248aa5096d3" ], + "x-ms-request-id": [ "22ab3c96-68dc-45b9-9a94-c8c7d049ce00" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fdbfa266-b5d9-42cc-a782-e6047a1e1347" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2438b43f-4a40-4937-8753-b74fd3ee2758" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "88399292-ce01-4957-8ee0-0d3b09b3f64b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191316Z:88399292-ce01-4957-8ee0-0d3b09b3f64b" ], + "x-ms-correlation-request-id": [ "e086d48c-d71d-4a1c-b39d-e332d29d59a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:e086d48c-d71d-4a1c-b39d-e332d29d59a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA0D439696DB47D89E5CE9B2AA39AD65 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D8F5CFF2AA040E68AB903D24BDE1851 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32300,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+33": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "570" ], + "x-ms-client-request-id": [ "bd0801da-dc52-4738-832c-21bc32f24e6b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "79d960ad-32d7-4e90-9f58-a778f5dfc4b1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "71d05aed-73d9-4ec8-bf48-fc89dc5d8060" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:71d05aed-73d9-4ec8-bf48-fc89dc5d8060" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 652D2DE5FB1A40D198A404405E3CA5AD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1822" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+34": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "933" ], - "x-ms-client-request-id": [ "d35e92e6-26ee-42c5-8e2f-fe0b6ed27d62" ], + "x-ms-unique-id": [ "571" ], + "x-ms-client-request-id": [ "774b649f-2b29-4a37-9104-baf3e61ab0a4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4525,40 +4660,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3f1f7c50-939c-4f7a-9dbf-a74bafba1eb6", "3f430aee-5e37-4e74-af8b-1e1c2f0eede5" ], + "x-ms-original-request-ids": [ "66a2e8f8-92cd-47d7-9190-e3f9274e9396", "edef17ca-6794-49e6-9ce9-86cb96d3ced0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "bda5ce5f-bb8b-4b9b-ba78-b25ed41b9648" ], - "x-ms-correlation-request-id": [ "bda5ce5f-bb8b-4b9b-ba78-b25ed41b9648" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191317Z:bda5ce5f-bb8b-4b9b-ba78-b25ed41b9648" ], + "x-ms-request-id": [ "11698ff9-6b38-4727-a273-1f91b1dfc564" ], + "x-ms-correlation-request-id": [ "11698ff9-6b38-4727-a273-1f91b1dfc564" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T003951Z:11698ff9-6b38-4727-a273-1f91b1dfc564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ADC1FFA19168491296CBBAE645FFDDA1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E0CF569B3734307AAC476F5E3705877 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "18902" ], + "Content-Length": [ "19025" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511737,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511732,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511744,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511754,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511763,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046165,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046170,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "934" ], - "x-ms-client-request-id": [ "60063687-50c1-42da-aee4-15a291972cf3" ], + "x-ms-unique-id": [ "572" ], + "x-ms-client-request-id": [ "c7ac0a33-f7eb-49ad-bca4-629a79ae5ed2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4570,40 +4705,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a966635-5dcd-4b0d-bec0-2e5b5c1fffb1" ], + "x-ms-request-id": [ "d083ebd5-6a8e-4f49-82f8-3e8f9749bc88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f46dce0-58a9-4826-aa0f-ac3bbd727400" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T191318Z:6f46dce0-58a9-4826-aa0f-ac3bbd727400" ], + "x-ms-correlation-request-id": [ "45f760d4-beac-4620-b6eb-bdc27c5236f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003951Z:45f760d4-beac-4620-b6eb-bdc27c5236f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE3DE12847354CC8A5873356D9C4977D Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C770F4576464D1CA32635E79466B908 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "935" ], - "x-ms-client-request-id": [ "0d0d9c14-4b88-4aec-b15e-e1e41d97368f" ], + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "a4d03a23-445d-466e-8f34-7a2bec23e7e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4615,40 +4750,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a3c86e8-d602-488a-8dc1-2bc3efb9baf0" ], + "x-ms-request-id": [ "7539c6e8-693c-414b-8d22-873832d1c163" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "696b8049-fe62-4462-9679-3e739b7be0b8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191318Z:696b8049-fe62-4462-9679-3e739b7be0b8" ], + "x-ms-correlation-request-id": [ "49c8b59a-7856-423a-baef-8e5016bd7fdf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003951Z:49c8b59a-7856-423a-baef-8e5016bd7fdf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0656E41487B543AFAAD18878B6AC7136 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3A2E20C3BD94977800C140BACE0BDD1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01+36": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "936" ], - "x-ms-client-request-id": [ "6e8d2488-861c-456f-b589-1adfb66307e0" ], + "x-ms-unique-id": [ "574" ], + "x-ms-client-request-id": [ "9c067f98-8b7a-4368-b880-63bbef9c516b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4660,40 +4795,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b8e9bf36-df6a-4313-a7d2-fa4d708fe27b" ], + "x-ms-request-id": [ "e0afd8c4-9473-427d-9ef7-1eaa5670cfe6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "95113119-59a0-4e03-be32-cbd88ad33fb4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191318Z:95113119-59a0-4e03-be32-cbd88ad33fb4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "62a8ac43-f4a1-4de0-98ed-1d9091186e21" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:62a8ac43-f4a1-4de0-98ed-1d9091186e21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E18D403DAB994811B870BE660434AB12 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7CCB7DA335C745FDA23C70CC4C86912D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66015,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66015\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:03:37.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+37": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "937" ], - "x-ms-client-request-id": [ "c5a5f06e-bbf2-474d-942b-b00cd47ce319" ], + "x-ms-unique-id": [ "575" ], + "x-ms-client-request-id": [ "e3acbd5d-6216-4e0a-a263-ec403c0dcbd0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4705,40 +4840,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf03c5e9-f62c-4c1e-b082-2357c8e75baf" ], + "x-ms-request-id": [ "aba33c76-10f9-4fae-bef3-74ac3b5f21ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fac936e2-b302-4f0c-984e-43f257903904" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191318Z:fac936e2-b302-4f0c-984e-43f257903904" ], + "x-ms-correlation-request-id": [ "83b1b966-d552-4f73-8da0-16cbd738ea48" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:83b1b966-d552-4f73-8da0-16cbd738ea48" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68FCEF40694B4C7580FA47FCB1310578 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A49B6D522F3442EAE807DC6958C4576 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1754" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01+38": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "938" ], - "x-ms-client-request-id": [ "764b812b-88b0-462a-b740-2e6a62c81166" ], + "x-ms-unique-id": [ "576" ], + "x-ms-client-request-id": [ "467dfc1f-b6bf-46aa-9f87-a41ee1b02a8f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4750,40 +4885,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e9a8ce9-6905-43c5-8578-6172823a5150" ], + "x-ms-request-id": [ "c3576cff-a112-4846-a722-4f2c1af11e3a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e501893b-985e-41d3-9aa2-6598e914b537" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191318Z:e501893b-985e-41d3-9aa2-6598e914b537" ], + "x-ms-correlation-request-id": [ "054e995e-809a-4267-8b12-37e93d2cf517" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:054e995e-809a-4267-8b12-37e93d2cf517" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D0533C199DA445DB3163C8AA76835FB Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A7F9364C469F43BDBA35D8D5CDBC8B9C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":92318,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-223_92318\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:00:23.2133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01+39": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "939" ], - "x-ms-client-request-id": [ "e0cda44d-d0de-49dd-97b9-e541aba8251c" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "6856d581-16de-4ff7-98c4-7cbd0bc7616a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4795,40 +4930,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c999893-94d1-443a-9f11-6037440ed709" ], + "x-ms-request-id": [ "f111a647-43a8-4209-bb9a-6423572c9cfa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "f076fa73-f9e4-495e-9e69-bfae3dea801f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191319Z:f076fa73-f9e4-495e-9e69-bfae3dea801f" ], + "x-ms-correlation-request-id": [ "3fb97f9a-1d29-4079-a556-1ce9f6ed3906" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:3fb97f9a-1d29-4079-a556-1ce9f6ed3906" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 955BEF1786174AF5A60196787E5C472D Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 175748BC85F94832825D2D8494BDA6DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1747" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":81026,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-317_81026\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:07:41.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+40": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "940" ], - "x-ms-client-request-id": [ "ba36c581-b039-454c-8959-6446984f4e63" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "93e8ce2a-4ecf-4725-ac62-7092052e49f5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4840,40 +4975,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e80f12ab-f3f3-4e95-8547-514194e09423" ], + "x-ms-request-id": [ "18bb0800-f7b8-4450-b884-7cd3412ad983" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b20ffee3-87ca-405e-88cb-db1f701b953d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191320Z:b20ffee3-87ca-405e-88cb-db1f701b953d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "6f58b9e3-82ae-43b9-8ad2-99673640ae1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:6f58b9e3-82ae-43b9-8ad2-99673640ae1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 410EC479215D4C41ACC7A352A7AE58FB Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FD19D62377A94D36B7811F31AB831418 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+41": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "941" ], - "x-ms-client-request-id": [ "8916cdac-6e8e-44f6-b33d-7fc58d0df523" ], + "x-ms-unique-id": [ "579" ], + "x-ms-client-request-id": [ "393c865e-f630-4e62-ad92-b092f5fc7fcb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4885,40 +5020,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be3de2b2-7356-4c46-a212-0bf87e9f246f" ], + "x-ms-request-id": [ "50e3e653-99c1-40bb-b700-cbd5c4110b6f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13b2b782-f1ac-4fc7-9126-5a79a22206ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191320Z:13b2b782-f1ac-4fc7-9126-5a79a22206ce" ], + "x-ms-correlation-request-id": [ "1e5692f1-053b-4b4e-a8f8-41a08bc3ba8a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:1e5692f1-053b-4b4e-a8f8-41a08bc3ba8a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E9345DC8325467EB32C140EDD2088B0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2305311E08D41BAB3A243CCA28FBDA6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+42": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "942" ], - "x-ms-client-request-id": [ "366fe412-53da-4021-b2ba-c4b6c2c18aa0" ], + "x-ms-unique-id": [ "580" ], + "x-ms-client-request-id": [ "99d0e428-82da-476a-a1d2-61c771310999" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4930,40 +5065,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0c7e236-11cf-4a6e-8972-3444ef99ebf6" ], + "x-ms-request-id": [ "b8c40bcb-d19c-4355-b844-a0f35e2eef5a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "82174406-6f94-4bfa-b6c2-6b86db13c70b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191321Z:82174406-6f94-4bfa-b6c2-6b86db13c70b" ], + "x-ms-correlation-request-id": [ "1cc9298d-17ba-47d8-9670-d52dcd0c136a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:1cc9298d-17ba-47d8-9670-d52dcd0c136a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19FF4678549144EFB158AF48FBC6DFFF Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0F6C207322749C2A5E5669ADE6CECF0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60832,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60832\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:10:42.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+43": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "943" ], - "x-ms-client-request-id": [ "239223fc-9ce9-4e5b-811e-69d22be3aaf5" ], + "x-ms-unique-id": [ "581" ], + "x-ms-client-request-id": [ "f7c9d960-2c17-430f-900f-4fec14092120" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4975,40 +5110,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b76e6119-8aea-4b3c-8459-fa0022bf4dfb" ], + "x-ms-request-id": [ "1063ea71-f6a4-495c-adaf-4d0b0eb59157" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "e6b0d818-41ba-4d3f-968e-d31e3c3ce425" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191321Z:e6b0d818-41ba-4d3f-968e-d31e3c3ce425" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4262c27e-915e-4a2a-a90b-9efa3fabf990" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:4262c27e-915e-4a2a-a90b-9efa3fabf990" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 312CD68D42AA41E692B49AAC65C969C2 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:21Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8946AB2D81E94B8DA171604212357284 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60833,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60833\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:12:42.9666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+44": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+45": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "944" ], - "x-ms-client-request-id": [ "a8afa434-ac7d-4058-9854-b3c443ca8017" ], + "x-ms-unique-id": [ "582" ], + "x-ms-client-request-id": [ "61b80818-602e-44c3-b354-dd3b134e4666" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5020,40 +5155,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33cbac6c-373e-40fd-9213-9ab91c244a09" ], + "x-ms-request-id": [ "dcf9cf11-5a37-4ebb-bf6b-f141a5937167" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b91d2619-767f-4cfa-a896-98126da06bc4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191322Z:b91d2619-767f-4cfa-a896-98126da06bc4" ], + "x-ms-correlation-request-id": [ "c001065f-28a9-478b-ba42-cdbbd5c73f61" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T003954Z:c001065f-28a9-478b-ba42-cdbbd5c73f61" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61309935CCAA415CB64BF7E22AF49FFB Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:21Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75EAAA9F54AB4B8EA2317414C0B0573F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+45": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+46": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "945" ], - "x-ms-client-request-id": [ "757db5d0-668b-4aa8-8609-c7f93e38541b" ], + "x-ms-unique-id": [ "583" ], + "x-ms-client-request-id": [ "f408efb7-d149-4732-b8ff-5450887f7746" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5065,40 +5200,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce25a95d-b819-4b5b-8149-28ea85a5a087" ], + "x-ms-request-id": [ "a63425fc-4d0a-4a1d-ac7b-c3ca29e8a0b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ca62d3fb-0226-41af-a047-6962b2088164" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T191324Z:ca62d3fb-0226-41af-a047-6962b2088164" ], + "x-ms-correlation-request-id": [ "183b1545-1ff8-4866-84a4-6873691fefee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003954Z:183b1545-1ff8-4866-84a4-6873691fefee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C8B013E99E84C27A989BB9C07950E98 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:22Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 97AA34F5C76A4459934A17ED088A9DCD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60832,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60832\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:10:42.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+46": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+47": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "946" ], - "x-ms-client-request-id": [ "00329575-37f0-4ce5-b03f-f505ea7a3fc7" ], + "x-ms-unique-id": [ "584" ], + "x-ms-client-request-id": [ "fc440176-9e7b-4aab-a819-c1ee8ab594a5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5110,32 +5245,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c67556a-964b-48fa-8faa-3812bbe9ce75" ], + "x-ms-request-id": [ "22270e5e-55bf-4c7b-82b4-1f310b494cd0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/85f652a1-26f9-43dd-a1b8-55446afad560" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c2f4639-abc2-4aef-a4ae-6d2ba0277f42" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6453c63b-3f25-428d-90ef-d28b1866b52d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191324Z:6453c63b-3f25-428d-90ef-d28b1866b52d" ], + "x-ms-correlation-request-id": [ "f8767dec-eafd-47c9-bb8e-cd2f2236a652" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003954Z:f8767dec-eafd-47c9-bb8e-cd2f2236a652" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B137A46C38DE430C94E28D4DA5930C18 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F2610122B374A95A2D615ACB26A8BFC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+47": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+48": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-864zaeovnd\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5149,43 +5284,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F6127A93AB\"" ], + "ETag": [ "\"1DCBCB8E65C8660\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8143dcda-2ca0-4a21-af49-62b3aed81607" ], + "x-ms-request-id": [ "575a9651-4dd7-4749-9c9c-e47b32ccf602" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9b3a4a8-92b7-4804-a800-6fbaa7ebeb66" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6a50628-223d-440f-845c-19204fb09ef5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ea16b182-7203-4f3e-8916-73dc945056a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191327Z:ea16b182-7203-4f3e-8916-73dc945056a7" ], + "x-ms-correlation-request-id": [ "57be8835-0cfb-4c72-80d1-e92b19510513" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T003956Z:57be8835-0cfb-4c72-80d1-e92b19510513" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 720719B52E784C4084C5B4292ECD5CA9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17C475F38F8949A6B5E14CB73C9FF41D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:39:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8755" ], + "Content-Length": [ "8822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:13:26.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+48": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+49": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "948" ], - "x-ms-client-request-id": [ "33f5e1ca-5b65-4e6a-ace2-af14a96b0456" ], + "x-ms-unique-id": [ "586" ], + "x-ms-client-request-id": [ "0237429f-4921-48d1-b199-9baf1703a58d" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -5195,42 +5330,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F64032116B\"" ], + "ETag": [ "1DCBCB9116E86A0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fbe83fe-c14a-49b0-98d7-3dfe9e812e13" ], + "x-ms-request-id": [ "9c5973cc-dc0d-47b6-bcf2-b97c5050a3eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0ebd2852-d644-45ce-93bc-79e38499648d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191357Z:0ebd2852-d644-45ce-93bc-79e38499648d" ], + "x-ms-correlation-request-id": [ "d002b65c-e60a-492e-9269-a0c02c27015e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004027Z:d002b65c-e60a-492e-9269-a0c02c27015e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74E8F4170918453087FEC0A7F3DD9FC6 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B9255E081E145CBB59203BB51935B76 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8729" ], + "Content-Length": [ "8618" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:13:26.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+49": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+50": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "949" ], - "x-ms-client-request-id": [ "e6b616bb-16d7-45ec-b975-a870692e0693" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "3ec7b286-cd69-4694-9a4f-ff56541d7367" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5241,42 +5376,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F64032116B\"" ], + "ETag": [ "1DCBCB9116E86A0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a023981-70dc-4ae4-a15e-1fd6c84734d3" ], + "x-ms-request-id": [ "ba64dd71-5c7d-4f22-aca4-42594792f755" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84c63b37-9bed-4321-b7f8-99cd3ba93922" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191358Z:84c63b37-9bed-4321-b7f8-99cd3ba93922" ], + "x-ms-correlation-request-id": [ "438e3b11-da6e-4800-a83d-5e49652626bb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004027Z:438e3b11-da6e-4800-a83d-5e49652626bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B6E7915A2F443D59FB9A9F680A2D47A Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AE9301A92494270A8E233CE277A761E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8729" ], + "Content-Length": [ "8618" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:13:26.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+50": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+51": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "950" ], - "x-ms-client-request-id": [ "f036f87f-1cb2-4936-8d9a-580d2d81c92a" ], + "x-ms-unique-id": [ "588" ], + "x-ms-client-request-id": [ "66eb2679-c9ab-4017-ac8c-e3c905f89af8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5288,40 +5423,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b43d1e17-7b8f-49d5-b7d0-aad426f95c62" ], + "x-ms-request-id": [ "ab6297e7-d003-46d9-8ca2-26c384102b3f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f81c276a-6310-4fc1-a486-c86236b4d3b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be433ce3-102d-4d87-8a97-e8495d81e6bb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6773fd55-7a99-49cc-8b18-c11ba70d7569" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191358Z:6773fd55-7a99-49cc-8b18-c11ba70d7569" ], + "x-ms-correlation-request-id": [ "f40b9d7a-fa0d-4000-a2bc-011d7c78f1f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:f40b9d7a-fa0d-4000-a2bc-011d7c78f1f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D68D13A0B17D46D98DEE9992CCAB014F Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB8B51AFE6D44D7995C76997B0A77467 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+51": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+52": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "951" ], - "x-ms-client-request-id": [ "0bb766ac-0292-4531-96b3-f26b63dea8fd" ], + "x-ms-unique-id": [ "589" ], + "x-ms-client-request-id": [ "bea80e09-f364-4fb2-a56f-8c3b2cec8883" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5333,41 +5468,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "afc7ea3b-b693-4c1d-a739-a486e716440d" ], + "x-ms-request-id": [ "117425bf-d928-4080-84e8-9eed9f2b206e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02b7c17e-0126-447a-a1e8-36f1fabe82a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7471f26d-5220-4497-b50a-8202826f2b60" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "481ee0dd-8dec-404c-b6fe-9c2be2cb909b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191358Z:481ee0dd-8dec-404c-b6fe-9c2be2cb909b" ], + "x-ms-correlation-request-id": [ "eeda7879-45f0-4119-ad74-757265048e33" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:eeda7879-45f0-4119-ad74-757265048e33" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B62495529AE4D149DAB6DF249584F29 Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:13:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42670BA778B04D049F129899E7798BB7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32300,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+52": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+53": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "952" ], - "x-ms-client-request-id": [ "045fbce1-ea93-4484-a9d8-21a6384b28c9" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "10e4edbc-895b-4d16-89bd-f4998fbc00d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5378,42 +5513,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F64032116B\"" ], + "ETag": [ "1DCBCB9116E86A0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7c5faf52-7ad7-470f-809a-9c92940fdc8a" ], + "x-ms-request-id": [ "409c6f54-a2ef-426f-ad03-458712e10271" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "60b9b37b-ee28-461b-af72-756e5a260c22" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191400Z:60b9b37b-ee28-461b-af72-756e5a260c22" ], + "x-ms-correlation-request-id": [ "84353e25-78bd-4a4c-8ba6-7500546e50ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:84353e25-78bd-4a4c-8ba6-7500546e50ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27440A01F0114EE6847BFCAE2911B89E Ref B: MWH011020807031 Ref C: 2025-11-17T19:13:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 281BCBD8EC6444DEACF4656FD78F42CD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8729" ], + "Content-Length": [ "8618" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:13:26.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2afa37e7-7c32-4f9d-aee7-2a37377dfe7c\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+53": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+54": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "953" ], - "x-ms-client-request-id": [ "afa9f893-0625-41ba-be71-65683e927828" ], + "x-ms-unique-id": [ "591" ], + "x-ms-client-request-id": [ "afdce3df-b73d-4c23-a6b3-ac19b9ac7a6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5425,40 +5560,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "40e8f94a-64b1-4e1c-9207-f98ee32b376b" ], + "x-ms-request-id": [ "d52ca0b7-7160-42e9-91e3-818f259274e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6a66d5d7-dc40-4e5a-8656-a7c39c9ccc69" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f51c59cb-ba80-4e65-a7e9-8acfe842a47b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e3fa1ba0-c693-4513-82b5-e85f4ceaf310" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191400Z:e3fa1ba0-c693-4513-82b5-e85f4ceaf310" ], + "x-ms-correlation-request-id": [ "aef19785-ab13-42b1-ba72-f91b497efc2f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:aef19785-ab13-42b1-ba72-f91b497efc2f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E149BE962518453594E8E9FF1E5F9919 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:00Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E357DC52B14F4D7C97E9788C29B9B722 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+54": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+55": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "954" ], - "x-ms-client-request-id": [ "bcbed671-5cb9-47df-a7d7-e8b88d35b29d" ], + "x-ms-unique-id": [ "592" ], + "x-ms-client-request-id": [ "3e7542d1-cb46-4a0f-8b77-b189fab6f844" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5470,41 +5605,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20ddc7e5-1d42-4bf7-be02-f42ef8c53504" ], + "x-ms-request-id": [ "688395bb-3d8e-4b54-a977-62959c2e67ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/31c49e40-c1c8-41fb-b01a-0284d4d2398a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b410b67-8b2d-4226-9326-9234ee89bbda" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6a035e0b-e25e-4f9a-9388-84a5afba5dba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191401Z:6a035e0b-e25e-4f9a-9388-84a5afba5dba" ], + "x-ms-correlation-request-id": [ "8992102d-5950-4ada-8799-d36912db73b5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004029Z:8992102d-5950-4ada-8799-d36912db73b5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1DC1C04CCF14B2A98702FA19AAA82DB Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:01Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DD83A386C0945E0997DD31E3D925E01 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":32300,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+56": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "63a96cd0-6f1d-46a1-876e-f13b0ef080e0" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "faa48db1-4040-497f-827b-46a73956b871" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "46d51a38-02e0-46f0-a2e4-10ca4ac2a82a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004029Z:46d51a38-02e0-46f0-a2e4-10ca4ac2a82a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 889FEE54433A4CADA1C1FD7B5659CBB5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1825" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+55": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+57": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "955" ], - "x-ms-client-request-id": [ "9de95162-0684-4711-b3fd-2d76924261a6" ], + "x-ms-unique-id": [ "594" ], + "x-ms-client-request-id": [ "ee59c782-fadb-418c-9353-3c28e91184ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5516,32 +5696,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee045135-1dff-4731-be8b-a3aeac62fbb8" ], + "x-ms-request-id": [ "9bd6ed99-f78c-4559-96b9-7bf7b417ec5d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c66fdba9-6ba8-4636-829e-f3f9ff0958a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23ab5e03-d82e-4067-8a80-2b9dc4c2fa9d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd0bde61-ed21-47f3-bbb8-120e0fbccce9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191402Z:bd0bde61-ed21-47f3-bbb8-120e0fbccce9" ], + "x-ms-correlation-request-id": [ "cb5cee37-57a3-4795-aecc-faa43869426a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004029Z:cb5cee37-57a3-4795-aecc-faa43869426a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 594EC4662C324682B4A29D35B2E88771 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:01Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AE0797A11EA4B9B89ED5CF9310AAB65 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+56": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+58": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-864zaeovnd\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5555,43 +5735,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F64032116B\"" ], + "ETag": [ "\"1DCBCB9116E86A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e49beda8-a0d2-4ad5-9204-9ac3706a5292" ], + "x-ms-request-id": [ "831608b4-cf10-4420-8635-3720a9dc843a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9342d9c4-ce12-4319-8511-600380ecd760" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b905bc64-51bb-44e5-9b76-099bdb045b71" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d771dd47-698a-4d03-b858-7f8cd65ef31b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191404Z:d771dd47-698a-4d03-b858-7f8cd65ef31b" ], + "x-ms-correlation-request-id": [ "757e00ee-4217-4835-bf90-d75bc5b486ef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004032Z:757e00ee-4217-4835-bf90-d75bc5b486ef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE7A5EF7BF9145F8BB10A2A7CC4ACE60 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:02Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A51A25EF50741B2B435C7930F804118 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:40:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8610" ], + "Content-Length": [ "8687" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:03.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+57": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+59": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "957" ], - "x-ms-client-request-id": [ "b5e34949-72b1-4b21-9213-08f902b49992" ], + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "84a4c5a1-fa87-4894-982b-a6d660eb029b" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -5601,42 +5781,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F656899220\"" ], + "ETag": [ "1DCBCB9265CE76B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58969ae6-25c6-44e1-9daa-c0723b8f7bef" ], + "x-ms-request-id": [ "9b15713c-6a7c-4931-ab88-587318d4d4a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "54ea059f-8b8d-4f90-b9f1-96c83769e677" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191435Z:54ea059f-8b8d-4f90-b9f1-96c83769e677" ], + "x-ms-correlation-request-id": [ "fb171523-f154-4cfa-a06b-6dbb8ed10e75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004102Z:fb171523-f154-4cfa-a06b-6dbb8ed10e75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F08B92C93A3B41F2BD6D0BB8808BFD9C Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:34Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDB63423C5B845C8952F8F1DB98C9F2B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8483" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:03.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+58": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+60": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "958" ], - "x-ms-client-request-id": [ "c23061da-d2e2-4ba6-a8d3-37c6b89707d2" ], + "x-ms-unique-id": [ "597" ], + "x-ms-client-request-id": [ "f7311f90-a2d2-4f7c-a746-8f7cabe39b7f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5647,42 +5827,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F656899220\"" ], + "ETag": [ "1DCBCB9265CE76B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3252a0ca-6388-425d-9ded-6e9529120914" ], + "x-ms-request-id": [ "50b893a1-59f6-458d-a295-8e1ce4612b5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d0db4ccd-a19c-49c3-8de9-1dd9df1019bb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191435Z:d0db4ccd-a19c-49c3-8de9-1dd9df1019bb" ], + "x-ms-correlation-request-id": [ "daaf20b1-6052-4391-8977-e241d61ed8c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004102Z:daaf20b1-6052-4391-8977-e241d61ed8c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6304117AAFB4E0283493A4564FE96DB Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C027930DB2A243E8BFACAF0E32E63F8E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8483" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:03.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+59": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+61": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "959" ], - "x-ms-client-request-id": [ "927a2be1-76ea-4468-a3d0-2aa0059cc426" ], + "x-ms-unique-id": [ "598" ], + "x-ms-client-request-id": [ "7836a6f9-28b4-4490-b493-dc23710aa19f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5694,40 +5874,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "815f151b-4e22-42f8-a526-023156992a85" ], + "x-ms-request-id": [ "c9d1921c-f1a4-4356-837d-b2684aa6fad7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e982be4-fb94-4a1d-8af5-e81e44bd50e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/646822ac-1fe7-4178-9ee6-eb32546c5456" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "95574b7d-dca4-4dbc-aa6a-ca1474cfc4e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191435Z:95574b7d-dca4-4dbc-aa6a-ca1474cfc4e1" ], + "x-ms-correlation-request-id": [ "2c48f7a8-7a39-4365-952a-434faded6b35" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004103Z:2c48f7a8-7a39-4365-952a-434faded6b35" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 27C84B2BD02D4DABA400113DE710CE81 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 083555CCAC494CA5ADFD5BC7469DF21C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+60": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+62": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "960" ], - "x-ms-client-request-id": [ "b9173c71-1e7d-4658-ad88-96d97727a6b9" ], + "x-ms-unique-id": [ "599" ], + "x-ms-client-request-id": [ "09cb73f5-ee4f-44b4-9392-e8c5de6b455b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5739,41 +5919,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ddd0c8cc-7a34-41fb-9ab7-6bbe808db44b" ], + "x-ms-request-id": [ "af7239be-555c-4864-b551-f6b3817e5552" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f57b6d9d-714d-4809-89b0-44883fc84151" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5bd8d73-03ab-4d7a-9467-d8e7cf516b21" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c3106520-5777-4c6a-abe7-3e5d272f54e2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191436Z:c3106520-5777-4c6a-abe7-3e5d272f54e2" ], + "x-ms-correlation-request-id": [ "a38331eb-54df-4f7b-8508-dc93247d88f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004103Z:a38331eb-54df-4f7b-8508-dc93247d88f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A5C327746C540838328C00FAF4EBA5D Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E81F2CC022AA48F38BBA02CD675F3124 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+61": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+63": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "961" ], - "x-ms-client-request-id": [ "38a2a9e7-d643-4150-b897-26d5b329c30d" ], + "x-ms-unique-id": [ "600" ], + "x-ms-client-request-id": [ "4dba103f-a518-4885-82c4-401d66f840ad" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5784,42 +5964,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F656899220\"" ], + "ETag": [ "1DCBCB9265CE76B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7031100-5b9c-4f1f-8132-3fe24e5a9dec" ], + "x-ms-request-id": [ "ce5bc5e5-3545-4aa8-ac59-ce72223a132a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e492e23-17be-47dc-a8ea-4ede204bb1fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191436Z:4e492e23-17be-47dc-a8ea-4ede204bb1fa" ], + "x-ms-correlation-request-id": [ "61f92954-a8ef-43e9-a04c-92dbffb63be1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004103Z:61f92954-a8ef-43e9-a04c-92dbffb63be1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1BAF0CC97B3C4169A39F0BD02F9A85DE Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9790238A626E4429887D8774BDCDE607 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8483" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:03.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+62": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+64": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "962" ], - "x-ms-client-request-id": [ "6a62f0ac-d288-4ca8-8470-5007e32a8b5a" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "1344c0a2-0d84-4c05-9a26-1523bae053fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5831,40 +6011,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80e3c997-ca94-4c3a-b1e6-2ad6b3a5a381" ], + "x-ms-request-id": [ "f11ea575-0c10-4274-89c3-da56dfcac4c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57dea4f8-3b17-4ff0-b1f4-6a07e6eea717" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3a3de29-fefb-4df2-98d9-14d3d1990a3d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "934bc56c-5b4b-4cc3-847b-b424c553cfcb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191436Z:934bc56c-5b4b-4cc3-847b-b424c553cfcb" ], + "x-ms-correlation-request-id": [ "33680eb1-8a2b-4946-beb0-32096e0215a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004104Z:33680eb1-8a2b-4946-beb0-32096e0215a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A0BBBAA6B2D4F3F97EA3008D37AA7D9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0DFCE9EE6244EB7B74C23B918AEF7F1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+63": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+65": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "963" ], - "x-ms-client-request-id": [ "286d762d-6644-4b67-8b4c-795094828a18" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "513f11ce-fbf3-44b6-8720-87a99080876f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5876,41 +6056,86 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37005fa3-ca28-4c16-bdec-097638558338" ], + "x-ms-request-id": [ "fecc2bc6-f100-4696-866e-d4d587cb1786" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd9e88ea-0541-4bce-bb5d-b024877b3f63" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "de07bc46-2e2d-42ed-8b05-180b6150ef48" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191436Z:de07bc46-2e2d-42ed-8b05-180b6150ef48" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a205fe62-6f40-4ba1-9c0e-31addf490df5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4be7c8da-e768-469b-af9e-6cbb8ca97b6b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004104Z:4be7c8da-e768-469b-af9e-6cbb8ca97b6b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DB37A69BF1B47899A189A55A63DD3A5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0F65F225BF7C46F7A3E5085510214ECC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+64": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+66": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "964" ], - "x-ms-client-request-id": [ "322ce306-89dc-41a5-9062-823efa3cfdb9" ], - "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], - "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "af29210b-205e-40cd-8a81-899870fa0bf9" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a169f970-f2fb-4053-b3d7-3013934f5cb9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "3bfb963c-780f-445a-8c42-eb687c6edb83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004104Z:3bfb963c-780f-445a-8c42-eb687c6edb83" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7FD01E91940C42F89F1606FEF50CF18C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1825" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+67": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "41429e6a-83d7-461a-af65-1ccd3d3fc00f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5922,40 +6147,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43fbacff-221b-4754-b334-434895eb8014" ], + "x-ms-request-id": [ "e57ea3f2-b49b-4129-987a-b4de0f63b00e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9f9f2563-4827-4179-86ee-e33207beeb33" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "2b3fb192-c45c-4f24-aa80-1a4f33afb602" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191437Z:2b3fb192-c45c-4f24-aa80-1a4f33afb602" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61db41c1-674c-450e-8762-eea379a486b9" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "7efc51fd-dada-46dc-b54e-ee9399730b98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004105Z:7efc51fd-dada-46dc-b54e-ee9399730b98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32B5FEB7F2B9413CABA63BB0C2C964D1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 807DC59AD0FE441E90F311C4BA487C80 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+65": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+68": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "965" ], - "x-ms-client-request-id": [ "a462307d-d831-4faa-a4e6-d3e549d2c7b4" ], + "x-ms-unique-id": [ "605" ], + "x-ms-client-request-id": [ "9cd7e5d8-9dba-4941-9b44-c347d6659964" ], "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5969,29 +6194,29 @@ "x-ms-original-request-ids": [ "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f36083ed-f866-48ab-a39d-928187b36e26" ], - "x-ms-correlation-request-id": [ "f36083ed-f866-48ab-a39d-928187b36e26" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191438Z:f36083ed-f866-48ab-a39d-928187b36e26" ], + "x-ms-request-id": [ "e0808085-3226-4a7e-aef8-be6cfa0efb0d" ], + "x-ms-correlation-request-id": [ "e0808085-3226-4a7e-aef8-be6cfa0efb0d" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004106Z:e0808085-3226-4a7e-aef8-be6cfa0efb0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 390E7B18CA87486E9E53433553914A7C Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EDF7DEAD656E4CE6A205A7EC03E330E6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:05Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "42941" ], + "Content-Length": [ "29732" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"a0005d02-0000-0300-0000-691b64f40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-8m0tjy\",\"AppId\":\"3ded824b-3b52-4105-bde3-01bf87011dee\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"76ade3ee-11e9-4bb4-8b7a-cf3d62610724\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-8m0tjy\",\"CreationDate\":\"2025-11-17T18:09:32.5811835+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershell-74-8m0tjy_3ded824b-3b52-4105-bde3-01bf87011dee_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-8m0tjy-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a0002112-0000-0300-0000-691b65320000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/microsoft.insights/components/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-25v7bk\",\"AppId\":\"7b0bb6a4-3b97-49f2-ad9c-d7b8af22c49e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"00d75625-8b4a-4fe7-ae34-2740b5718e58\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-25v7bk\",\"CreationDate\":\"2025-11-17T18:10:53.8165436+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-22-25v7bk_7b0bb6a4-3b97-49f2-ad9c-d7b8af22c49e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-25v7bk-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a000c821-0000-0300-0000-691b656e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/microsoft.insights/components/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-3k0a1w\",\"AppId\":\"c3280747-401c-4059-a651-03fe531aa60b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"71be0802-f796-49f4-a41e-3542228f2602\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-3k0a1w\",\"CreationDate\":\"2025-11-17T18:11:54.0128862+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-8-3k0a1w_c3280747-401c-4059-a651-03fe531aa60b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-3k0a1w-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a0009237-0000-0300-0000-691b65c10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-qm287u\",\"AppId\":\"79579429-3d18-401c-ab78-7a958328961b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"1b198f15-f2b7-43dd-b0c1-a38a6335d259\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-qm287u\",\"CreationDate\":\"2025-11-17T18:13:16.5808837+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-312-qm287u_79579429-3d18-401c-ab78-7a958328961b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-qm287u-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a0004048-0000-0300-0000-691b66070000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo-new\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-z7cj05b1wo-new\",\"AppId\":\"c5cb1ed1-59e5-4466-adda-509cc3b8cac1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"abae86ac-58e7-4a02-a723-743f22d57cbd\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-z7cj05b1wo-new\",\"CreationDate\":\"2025-11-17T18:14:26.6860095+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo-new_c5cb1ed1-59e5-4466-adda-509cc3b8cac1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a000cc97-0000-0300-0000-691b67450000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"AppId\":\"433befed-9e27-4b30-85fc-b98b893f03fd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"44065200-b2f3-416b-b293-8ffb16c6d983\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"CreationDate\":\"2025-11-17T18:19:44.9889018+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-ie0b2an8xm_433befed-9e27-4b30-85fc-b98b893f03fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-ie0b2an8xm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a2000068-0000-0300-0000-691b6e4f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/microsoft.insights/components/Functions-CustomImage-p2wzf7nt5g\",\"name\":\"Functions-CustomImage-p2wzf7nt5g\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-p2wzf7nt5g\",\"AppId\":\"c48624e3-1786-4ca8-ae3a-e7a699144dee\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"5d6a3053-c9bb-422d-b0a7-47290108db6b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomImage-p2wzf7nt5g\",\"CreationDate\":\"2025-11-17T18:49:46.9866162+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-p2wzf7nt5g_c48624e3-1786-4ca8-ae3a-e7a699144dee_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-p2wzf7nt5g-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a200ce7d-0000-0300-0000-691b6ea40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/microsoft.insights/components/Functions-Python-s1yaf62r9d\",\"name\":\"Functions-Python-s1yaf62r9d\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-s1yaf62r9d\",\"AppId\":\"ec8a3810-1b42-411e-bc07-32aebe917787\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"af4ca839-b493-4193-a18c-ad82b3528fb7\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-s1yaf62r9d\",\"CreationDate\":\"2025-11-17T18:51:11.113167+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-s1yaf62r9d_ec8a3810-1b42-411e-bc07-32aebe917787_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-s1yaf62r9d-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a200f38f-0000-0300-0000-691b6eec0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"AppId\":\"dd627cd3-387f-4e69-a453-4d516b90a439\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"aa7ff924-cea8-4163-abff-fbd0cab9951c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"CreationDate\":\"2025-11-17T18:52:23.6372476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo_dd627cd3-387f-4e69-a453-4d516b90a439_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a20067bd-0000-0300-0000-691b6fa80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-z7cj05b1wo\",\"AppId\":\"4b8afc46-2613-4117-a1d2-cf9c8952c58e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"17eaa2a9-ade0-4a03-9a05-67283b841ee2\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-z7cj05b1wo\",\"CreationDate\":\"2025-11-17T18:54:00.8044611+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo_4b8afc46-2613-4117-a1d2-cf9c8952c58e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a20085d5-0000-0300-0000-691b70080000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-DotNet-kam4d5gjzf\",\"name\":\"Functions-DotNet-kam4d5gjzf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-kam4d5gjzf\",\"AppId\":\"e2a19dd3-1225-4147-9c9d-ce72faab1c04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"28e08ccf-e423-4759-83bf-e23e7995c26f\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-kam4d5gjzf\",\"CreationDate\":\"2025-11-17T18:57:07.9158679+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-kam4d5gjzf_e2a19dd3-1225-4147-9c9d-ce72faab1c04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-kam4d5gjzf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a2009aff-0000-0300-0000-691b70aa0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-Java-45u8yx19h0\",\"name\":\"Functions-Java-45u8yx19h0\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-45u8yx19h0\",\"AppId\":\"12a70cd2-4fe5-480f-87b1-1d883af8f57e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4ec93e5d-fd01-4b5e-b400-a70af83aa4e8\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Java-45u8yx19h0\",\"CreationDate\":\"2025-11-17T18:59:50.400688+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-45u8yx19h0_12a70cd2-4fe5-480f-87b1-1d883af8f57e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-45u8yx19h0-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a300d712-0000-0300-0000-691b70f00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-Node-hwu6yrk3xi\",\"name\":\"Functions-Node-hwu6yrk3xi\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-hwu6yrk3xi\",\"AppId\":\"6dff4d2e-5273-454f-b31d-10bb789eff8e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b927f92e-6770-4572-b0d6-4bfe3f322e08\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-hwu6yrk3xi\",\"CreationDate\":\"2025-11-17T19:00:59.7869101+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-hwu6yrk3xi_6dff4d2e-5273-454f-b31d-10bb789eff8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-hwu6yrk3xi-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a300d026-0000-0300-0000-691b713b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-DotNet-Isolateddmnvqoj6w4\",\"name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"AppId\":\"3fbbb697-ffbc-4cae-ac8c-2c459754abc0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"14320ec3-6866-4391-9f22-017ae7397c86\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-Isolateddmnvqoj6w4\",\"CreationDate\":\"2025-11-17T19:02:15.7532622+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolateddmnvqoj6w4_3fbbb697-ffbc-4cae-ac8c-2c459754abc0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolateddmnvqoj6w4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a3006f41-0000-0300-0000-691b71a00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-CustomHandlergcma72synf\",\"name\":\"Functions-CustomHandlergcma72synf\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlergcma72synf\",\"AppId\":\"4c70f3c5-16c4-4d1c-ad66-5bb024a65820\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"01b0269b-2baf-4ec2-9407-558acd9de709\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomHandlergcma72synf\",\"CreationDate\":\"2025-11-17T19:03:56.5723216+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlergcma72synf_4c70f3c5-16c4-4d1c-ad66-5bb024a65820_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlergcma72synf-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a3007365-0000-0300-0000-691b722e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest2-wa4tycjxz7\",\"name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"AppId\":\"73281c4f-c6a8-4f23-a75f-2ed6f81b8a82\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"f5eb6b06-3226-4bd4-9502-cfa5440f4438\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest2-wa4tycjxz7\",\"CreationDate\":\"2025-11-17T19:06:18.9162668+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-wa4tycjxz7_73281c4f-c6a8-4f23-a75f-2ed6f81b8a82_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-wa4tycjxz7-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a300d587-0000-0300-0000-691b72b40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest3-94dzrfhslm\",\"name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"AppId\":\"fbfa8b67-0488-423e-861a-32120b09e9c6\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"68a0f78f-7167-46eb-8a70-688495bd3240\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest3-94dzrfhslm\",\"CreationDate\":\"2025-11-17T19:08:30.4033518+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-94dzrfhslm_fbfa8b67-0488-423e-861a-32120b09e9c6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-94dzrfhslm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a30070b4-0000-0300-0000-691b735d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"AppId\":\"a7185063-397a-406c-8144-7b56b37c943b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"01bfba60-568f-4448-877c-92f212012e4d\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"CreationDate\":\"2025-11-17T19:11:21.7935151+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-864zaeovnd_a7185063-397a-406c-8144-7b56b37c943b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-864zaeovnd-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504c62d-0000-0200-0000-691b67df0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-w8x9\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-w8x9\",\"AppId\":\"d6367ac1-db56-4e2c-a641-d9b692b06f29\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"17f77b21-0beb-4175-9463-925d912cda3a\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"CreationDate\":\"2025-11-17T18:22:10.8748461+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-w8x9_d6367ac1-db56-4e2c-a641-d9b692b06f29_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504f150-0000-0200-0000-691b68640000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Node-w8x9\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-w8x9\",\"AppId\":\"1b22435a-afef-4bbd-b4ce-42187faa2b8b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"cafe75a6-5f27-413e-abf7-4b1f5adea9f2\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Node-w8x9\",\"CreationDate\":\"2025-11-17T18:24:23.5205749+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-w8x9_1b22435a-afef-4bbd-b4ce-42187faa2b8b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"05042e62-0000-0200-0000-691b68e90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Python-w8x9\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-w8x9\",\"AppId\":\"58458e0c-8dab-4cf2-ad43-70f2b5a4baa5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"aee607a4-89d2-4c33-b3ea-c3bdab86cb5e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Python-w8x9\",\"CreationDate\":\"2025-11-17T18:26:38.7613209+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-w8x9_58458e0c-8dab-4cf2-ad43-70f2b5a4baa5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504166c-0000-0200-0000-691b69700000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Java-w8x9\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-w8x9\",\"AppId\":\"92e030bd-22b9-42a1-8732-ad4b05e6ad5b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4d80d63b-ad7e-49e9-894e-0925317090f0\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Java-w8x9\",\"CreationDate\":\"2025-11-17T18:28:49.9983613+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-w8x9_92e030bd-22b9-42a1-8732-ad4b05e6ad5b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504e776-0000-0200-0000-691b69fb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-PowerShell-w8x9\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-w8x9\",\"AppId\":\"24b8a2ca-9998-4333-8118-ff36434a5c74\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ac211e29-8b06-494c-8235-95cb1d5315de\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-PowerShell-w8x9\",\"CreationDate\":\"2025-11-17T18:31:11.5940642+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-w8x9_24b8a2ca-9998-4333-8118-ff36434a5c74_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"05042ee2-0000-0200-0000-691b6a810000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Custom-w8x9\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-w8x9\",\"AppId\":\"ba5481a0-9fc3-461d-ad0d-38a125e58163\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7e4d199e-8d5b-4080-a089-a11f19548350\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Custom-w8x9\",\"CreationDate\":\"2025-11-17T18:33:26.0313196+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-w8x9_ba5481a0-9fc3-461d-ad0d-38a125e58163_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0604284e-0000-0200-0000-691b6b070000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-w8x9\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-w8x9\",\"AppId\":\"c24921aa-389b-47b9-8a4a-50712c3880ae\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"19729223-b10a-4b32-9b94-5e0c50baaff7\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-Flex-Scaling-w8x9\",\"CreationDate\":\"2025-11-17T18:35:41.5115526+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-w8x9_c24921aa-389b-47b9-8a4a-50712c3880ae_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"06048758-0000-0200-0000-691b6b900000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Node-SystemIdentity-w8x9\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-w8x9\",\"AppId\":\"e9a4d8ae-e91c-460d-852f-f9ff788dfd7e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"96d4beab-1b2f-4b67-beae-f20d78791418\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-SystemIdentity-w8x9\",\"CreationDate\":\"2025-11-17T18:37:55.9829294+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-w8x9_e9a4d8ae-e91c-460d-852f-f9ff788dfd7e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"06043163-0000-0200-0000-691b6c1d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"AppId\":\"11cceb1e-bf16-4ff3-b156-70e2f2176ac2\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e075af08-d3f7-435a-a3c7-4400394b9bbb\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"CreationDate\":\"2025-11-17T18:40:18.7545917+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-w8x9_11cceb1e-bf16-4ff3-b156-70e2f2176ac2_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0604a76c-0000-0200-0000-691b6ca60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-PS-CustomConfig-w8x9\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-w8x9\",\"AppId\":\"4c611320-7d61-4907-8450-581e26acb195\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ff697694-6e08-4db3-8d98-f18509e535dd\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PS-CustomConfig-w8x9\",\"CreationDate\":\"2025-11-17T18:42:32.2602986+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-w8x9_4c611320-7d61-4907-8450-581e26acb195_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"06045784-0000-0200-0000-691b6dec0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Remove-FlexPlan-w8x9\",\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Remove-FlexPlan-w8x9\",\"AppId\":\"bf42ec3d-a5aa-41f7-824f-4a37f251caaf\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"26b2a219-194b-4997-b914-f80592d3845e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Remove-FlexPlan-w8x9\",\"CreationDate\":\"2025-11-17T18:48:00.5261327+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-w8x9_bf42ec3d-a5aa-41f7-824f-4a37f251caaf_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"c10292db-0000-0300-0000-69c477950000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-iob4d5\",\"AppId\":\"b4bee174-c345-4943-95c8-d758d7e3d8eb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"788eb9e9-0a6b-4fa9-9b2f-f75a195d51df\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-iob4d5\",\"CreationDate\":\"2026-03-26T00:02:24.2875929+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershell-74-iob4d5_b4bee174-c345-4943-95c8-d758d7e3d8eb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-iob4d5-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c10223e8-0000-0300-0000-69c477e60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-jus0p7\",\"AppId\":\"e1d253b0-e2b0-4335-a9a4-9589ad5e9f64\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"68fa48d0-09be-4273-ab33-1211a9270e6c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-jus0p7\",\"CreationDate\":\"2026-03-26T00:03:45.6073577+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-22-jus0p7_e1d253b0-e2b0-4335-a9a4-9589ad5e9f64_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-jus0p7-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c102eff1-0000-0300-0000-69c478270000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/microsoft.insights/components/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-xitn52\",\"AppId\":\"94cbda68-af0a-4d24-96e6-f43d439cdab5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d25a58e2-d7f2-427e-ac14-9e4b30956ca3\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-xitn52\",\"CreationDate\":\"2026-03-26T00:04:46.9772803+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-8-xitn52_94cbda68-af0a-4d24-96e6-f43d439cdab5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-xitn52-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c102bafd-0000-0300-0000-69c4787d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-rmx6vl\",\"AppId\":\"a3626309-69b9-4e07-b9fd-843aa50248d0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"527fa2f4-47f2-4ac4-ade9-fabae35a8f5e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-rmx6vl\",\"CreationDate\":\"2026-03-26T00:06:16.6201227+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-312-rmx6vl_a3626309-69b9-4e07-b9fd-843aa50248d0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-rmx6vl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2024307-0000-0300-0000-69c478c00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h-new\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-d90zp8nj5h-new\",\"AppId\":\"6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-d90zp8nj5h-new\",\"CreationDate\":\"2026-03-26T00:07:23.7109657+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h-new_6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202fa2e-0000-0300-0000-69c47a0b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"AppId\":\"e67bde51-45a5-4f45-b6dd-03a96bcd939e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8a93d396-fa83-4fef-8f0f-1fd48e9e4899\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"CreationDate\":\"2026-03-26T00:12:53.280685+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-d3t8hyrciu_e67bde51-45a5-4f45-b6dd-03a96bcd939e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-d3t8hyrciu-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202943c-0000-0300-0000-69c47a710000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-4ps815eax3\",\"AppId\":\"05343c66-9cbf-4b65-ad79-6e07a5f9b887\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d0a8fd25-6f5a-4920-a76f-0dc0ff656a13\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomImage-4ps815eax3\",\"CreationDate\":\"2026-03-26T00:14:35.5368194+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-4ps815eax3_05343c66-9cbf-4b65-ad79-6e07a5f9b887_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-4ps815eax3-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202f148-0000-0300-0000-69c47ad10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-7mrsp6yjac\",\"AppId\":\"109dd349-0540-4220-a333-02741ec50c53\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"29cd09e4-f396-4270-9b30-047a14841e5e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-7mrsp6yjac\",\"CreationDate\":\"2026-03-26T00:16:11.6046114+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-7mrsp6yjac_109dd349-0540-4220-a333-02741ec50c53_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-7mrsp6yjac-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202a251-0000-0300-0000-69c47b170000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"AppId\":\"db56b95a-3f4f-4eb1-b507-1e5a10443bc4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ed7b9976-dd73-42e2-99e4-89a1f8783d15\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"CreationDate\":\"2026-03-26T00:17:21.5953108+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_db56b95a-3f4f-4eb1-b507-1e5a10443bc4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202fe67-0000-0300-0000-69c47bd10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"AppId\":\"dd90b389-c106-473f-8d04-dcc13bc70a14\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8492dd6b-bfa8-42e6-9744-d817aec945a5\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"CreationDate\":\"2026-03-26T00:18:59.7875813+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_dd90b389-c106-473f-8d04-dcc13bc70a14_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2026774-0000-0300-0000-69c47c330000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"AppId\":\"c430c8fd-e25f-4b8d-a2a6-8d516500b729\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"95095884-cb83-4553-9e6b-47a8fea3dbb1\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"CreationDate\":\"2026-03-26T00:22:06.0522072+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest6-xpt80akrzv_c430c8fd-e25f-4b8d-a2a6-8d516500b729_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest6-xpt80akrzv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2027480-0000-0300-0000-69c47c940000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-27pudsgrfk\",\"AppId\":\"d83ad2cf-84f9-46f5-8927-48a571699a1a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"40de7d95-8f37-43cc-ac8f-176fff0c5701\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-27pudsgrfk\",\"CreationDate\":\"2026-03-26T00:23:43.9914139+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-27pudsgrfk_d83ad2cf-84f9-46f5-8927-48a571699a1a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-27pudsgrfk-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2025b94-0000-0300-0000-69c47d340000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-0ehb98v3n4\",\"AppId\":\"5e6a4135-3c4e-4226-8637-1225684a12ad\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"311d7fd0-0184-4a35-92aa-3a6c064497e9\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Java-0ehb98v3n4\",\"CreationDate\":\"2026-03-26T00:26:24.4752228+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-0ehb98v3n4_5e6a4135-3c4e-4226-8637-1225684a12ad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-0ehb98v3n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202879c-0000-0300-0000-69c47d7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-ulmzgn9t6x\",\"AppId\":\"bd1bdd37-258b-403c-a3bc-b5c76b3ef239\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c8eaf0a1-f9dd-4e62-b1ce-11225f20dd09\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-ulmzgn9t6x\",\"CreationDate\":\"2026-03-26T00:27:36.505767+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-ulmzgn9t6x_bd1bdd37-258b-403c-a3bc-b5c76b3ef239_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-ulmzgn9t6x-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202baa5-0000-0300-0000-69c47dc90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolated0f543v96sw\",\"AppId\":\"88160b62-e69f-434b-aa4d-52159dc48477\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"98042a34-f79f-4fea-8e95-cec96b18f814\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-Isolated0f543v96sw\",\"CreationDate\":\"2026-03-26T00:28:52.3573559+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolated0f543v96sw_88160b62-e69f-434b-aa4d-52159dc48477_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated0f543v96sw-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20293b2-0000-0300-0000-69c47e350000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlernb8m23gkpj\",\"AppId\":\"2264a028-f396-4544-abff-dd4df0c16231\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cbb0c18-f337-42dd-8699-ae2bd9f70f55\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomHandlernb8m23gkpj\",\"CreationDate\":\"2026-03-26T00:30:40.8042322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlernb8m23gkpj_2264a028-f396-4544-abff-dd4df0c16231_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlernb8m23gkpj-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20219c3-0000-0300-0000-69c47ebf0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"AppId\":\"7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"295fea1a-27da-4d04-a804-04fdcf16c498\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"CreationDate\":\"2026-03-26T00:32:58.8231307+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-e5279qnwbr_7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-e5279qnwbr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20273d3-0000-0300-0000-69c47f450000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"AppId\":\"bb613380-3ae8-4ed3-a136-8399dc746da1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e03c45ab-51a6-4e3b-a6d1-1f4008542831\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"CreationDate\":\"2026-03-26T00:35:12.7528327+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-7q9cjpgboy_bb613380-3ae8-4ed3-a136-8399dc746da1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-7q9cjpgboy-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20211e9-0000-0300-0000-69c47fe80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"AppId\":\"7e45a49c-0d6f-462c-b26a-f3d9664067aa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d0aeae0f-39f1-4948-a546-a88802548349\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"CreationDate\":\"2026-03-26T00:37:55.6950071+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-1xmbohf4tc_7e45a49c-0d6f-462c-b26a-f3d9664067aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-1xmbohf4tc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"41008892-0000-0200-0000-69c479b40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/microsoft.insights/components/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Flex-PowerShell-a50y\",\"AppId\":\"e0b9f637-fcd6-4296-a333-83ea2754480c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"49f32786-15b9-4784-b1af-a441684140dd\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Flex-PowerShell-a50y\",\"CreationDate\":\"2026-03-26T00:11:19.0626496+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_flex-powershell-a50y_e0b9f637-fcd6-4296-a333-83ea2754480c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Flex-PowerShell-a50y-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+66": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+69": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"abae86ac-58e7-4a02-a723-743f22d57cbd\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-864zaeovnd\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"AI-INSTRUMENTATION-KEY-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6005,43 +6230,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F656899220\"" ], + "ETag": [ "\"1DCBCB9265CE76B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4db3f769-aefa-4930-80a1-83a882d3bf2a" ], + "x-ms-request-id": [ "65782a91-6a72-470e-8197-dd656cbcc676" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0b4dbbab-bd47-4460-b001-004344dbd1f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7385e408-51a9-4323-8b4c-a6798433a9e6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "163deee6-30d0-43ac-85c6-9933c74c4fe1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T191441Z:163deee6-30d0-43ac-85c6-9933c74c4fe1" ], + "x-ms-correlation-request-id": [ "ae4a5747-e90e-4eb5-9f86-536da9c1c24c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004108Z:ae4a5747-e90e-4eb5-9f86-536da9c1c24c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E536DE6AA0F0492CAD4C46BEEB692144 Ref B: MWH011020807031 Ref C: 2025-11-17T19:14:38Z" ], - "Date": [ "Mon, 17 Nov 2025 19:14:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 783A01E865F543969226B4264D0DA165 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:06Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8610" ], + "Content-Length": [ "8682" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:40.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+67": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+70": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "967" ], - "x-ms-client-request-id": [ "ec2414d4-7c40-4823-bbe4-f8eeb642e6b0" ], + "x-ms-unique-id": [ "607" ], + "x-ms-client-request-id": [ "82cbe43a-561f-44de-9664-2f5697282a2f" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -6051,42 +6276,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F66C1D40A0\"" ], + "ETag": [ "1DCBCB93C1D5840" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "217f4d70-ae66-40e4-a6c2-0dae1abd31ac" ], + "x-ms-request-id": [ "1369dc65-d262-4c24-8f17-ee6b6ca1f801" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9c3d88ec-fd92-4577-ab60-ec5e68ca7d67" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191515Z:9c3d88ec-fd92-4577-ab60-ec5e68ca7d67" ], + "x-ms-correlation-request-id": [ "70fb36c8-57ef-43c3-9dcc-6d24088c3c97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:70fb36c8-57ef-43c3-9dcc-6d24088c3c97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 197387AE5E0F4C32942D1EE5808DDBCF Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:11Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7311504428E841ED981C7D93FEFDD250 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8478" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:40.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+68": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+71": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "968" ], - "x-ms-client-request-id": [ "3501d3f0-ab93-4d86-ad17-35c57e6f2d25" ], + "x-ms-unique-id": [ "608" ], + "x-ms-client-request-id": [ "c84e52a6-97fc-4d00-ad5b-3b3e1f459486" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6098,40 +6323,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eed1c536-a9f7-4019-8482-a20aafebb080" ], + "x-ms-request-id": [ "f525cf95-646c-4a0e-b1ac-84a1fe82208c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2489863-b7d1-44f1-b547-b2048dc23dae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3708d532-cd1c-4b86-8f8b-efc2a73d754d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f3401a21-d2ad-4fa9-a45a-89716df2f5d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191515Z:f3401a21-d2ad-4fa9-a45a-89716df2f5d7" ], + "x-ms-correlation-request-id": [ "40dc8eef-d42d-44a6-91a9-fe78793e555c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:40dc8eef-d42d-44a6-91a9-fe78793e555c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D435979F7AE4FF287178396C377F196 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62548B8BD4634069909A5EFE3A8D386E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"abae86ac-58e7-4a02-a723-743f22d57cbd\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+69": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+72": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "969" ], - "x-ms-client-request-id": [ "47f618c0-a2d5-414d-a8c4-1620e1a77051" ], + "x-ms-unique-id": [ "609" ], + "x-ms-client-request-id": [ "46e279cd-1760-4379-b84c-999ec5109af4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6142,42 +6367,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F66C1D40A0\"" ], + "ETag": [ "1DCBCB93C1D5840" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc269e13-96fc-4411-9a95-a1db3cc29c8b" ], + "x-ms-request-id": [ "94621305-1ae9-4b66-994b-773ae94801d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ed530653-69c9-4f42-a87c-6e6478a40f1e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191516Z:ed530653-69c9-4f42-a87c-6e6478a40f1e" ], + "x-ms-correlation-request-id": [ "5da4b2b1-26fe-4779-ad64-0fe656922f7f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:5da4b2b1-26fe-4779-ad64-0fe656922f7f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AF38D88FF3184DB7B0198974F675FAF7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6DFC54F2E6C74F2088EDA544ABC31089 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8478" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:40.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+70": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+73": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "970" ], - "x-ms-client-request-id": [ "a96d0ae2-929d-4cdc-860e-2f88e8c2ae80" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "6578ddf4-60fa-4d17-9fc5-56d74300924d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6189,40 +6414,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb4c55b5-7066-4505-8b0c-cf58a2be01f0" ], + "x-ms-request-id": [ "2129a43a-2ab0-463c-b008-42ee80572aa0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/648fe4ae-4d62-496d-9232-31e1ba63e436" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50ab94bc-1422-4791-888f-13c8f9aa4b02" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ece9a7fd-a334-455f-ba8c-d912adafa506" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191516Z:ece9a7fd-a334-455f-ba8c-d912adafa506" ], + "x-ms-correlation-request-id": [ "d5d92045-89d6-4e8b-9dfa-1304b3721ea0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:d5d92045-89d6-4e8b-9dfa-1304b3721ea0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1486A9AFD9B34E498FD4774A2E378A36 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B74B9D686C0748DFA29ECE08FF04EDD3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"abae86ac-58e7-4a02-a723-743f22d57cbd\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+71": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+74": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "971" ], - "x-ms-client-request-id": [ "cd06213d-b856-4653-a4aa-6c0d7300bf5c" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "67ea94b4-c2fa-4d66-8bdf-7e233e2e65d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6234,41 +6459,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5186be96-abfa-42ea-aa56-eb1703ef2632" ], + "x-ms-request-id": [ "2206af72-ac95-42b7-8f45-b53efdef5e39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/604e6db8-aaff-43ce-8246-01339579df1d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad237d3a-80dc-4cff-9db0-0938dffe1619" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0b1214d7-4263-4f97-b888-44d682ede5b0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191516Z:0b1214d7-4263-4f97-b888-44d682ede5b0" ], + "x-ms-correlation-request-id": [ "578e674c-45dd-4f2b-bce0-2df6419e95c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:578e674c-45dd-4f2b-bce0-2df6419e95c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFC22673201E4127A197C9744942ABE8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1721C840BFE543B0A8D0CCDB98EC16FB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01+72": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+75": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "972" ], - "x-ms-client-request-id": [ "37fd5e2c-4250-42fd-a52e-0b54882bdd9b" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "be7d962f-c2e7-4af5-b8d6-70b0677b4452" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6279,42 +6504,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F66C1D40A0\"" ], + "ETag": [ "1DCBCB93C1D5840" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fd208a8-0c35-4976-8cb4-3c306a07a4fd" ], + "x-ms-request-id": [ "f86858f8-ada9-4040-a3d5-8ffe6f705046" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b47cba89-9e80-4331-8a22-b1751fab0e56" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191517Z:b47cba89-9e80-4331-8a22-b1751fab0e56" ], + "x-ms-correlation-request-id": [ "27635b74-10b6-4ba1-b47a-eabc8a80ef30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:27635b74-10b6-4ba1-b47a-eabc8a80ef30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8A21F8FB83E4A5EAD1AE23C38CBBA0F Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 770C09B721FC44FA899C0A8808628951 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8584" ], + "Content-Length": [ "8478" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest5-864zaeovnd\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-864zaeovnd.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:14:40.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest5-864zaeovnd\\\\$Func-PowerShell-NewTest5-864zaeovnd\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest5-864zaeovnd.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01+73": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+76": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "973" ], - "x-ms-client-request-id": [ "4a49255c-b473-40ba-86b9-950826636d66" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "b58e4856-94b3-4386-aaa7-e0435de51c56" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6326,40 +6551,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e6a368a-74a5-4e5e-8c31-30c91d158525" ], + "x-ms-request-id": [ "14d18753-340d-4b56-bd94-e2dd963fc19a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d32e7f61-c774-4ba4-b6b9-05151a82f7a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4335b434-9f4f-4fed-93eb-3a8eb6c95e58" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "372113d9-c5c1-4c3a-bb0f-03f1b0653e10" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191517Z:372113d9-c5c1-4c3a-bb0f-03f1b0653e10" ], + "x-ms-correlation-request-id": [ "ba173383-d9ce-4e66-a952-5cadae6228db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:ba173383-d9ce-4e66-a952-5cadae6228db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F683AEC4FC964232923F0E60EDD2D572 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C2D02E37787A47FBB793F9C21C482039 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"abae86ac-58e7-4a02-a723-743f22d57cbd\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-864zaeovnd\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01+74": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+77": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "974" ], - "x-ms-client-request-id": [ "348c79ad-42fa-4cf8-9f5a-553745b8a271" ], + "x-ms-unique-id": [ "614" ], + "x-ms-client-request-id": [ "64881026-9c01-40b9-9798-065bb9765197" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6371,41 +6596,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7025d36b-256c-4bbd-ba22-7a140d5dab9a" ], + "x-ms-request-id": [ "bf6e2dd3-340d-4ddd-8336-4329c3c253e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12ffd8e2-03b8-45a3-8f34-a981c323ca4b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e4be004d-1a40-4c8c-8cdc-42c55bf99b39" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0616943a-f1d6-4a08-bebc-1d9d0c5e842e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191517Z:0616943a-f1d6-4a08-bebc-1d9d0c5e842e" ], + "x-ms-correlation-request-id": [ "7354ba53-7159-446a-a690-bded73dee0fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:7354ba53-7159-446a-a690-bded73dee0fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B37FBBDB7AB74E0DA83AD2A470814F6E Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0AD2AB9E2E6487B95F9C14D91AB9AEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd/config/web\",\"name\":\"Func-PowerShell-NewTest5-864zaeovnd\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+75": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+78": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "975" ], - "x-ms-client-request-id": [ "96744212-fbb4-4e9d-9a18-2a49ca5b13b2" ], + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "c653512a-6a92-4055-a7d5-c2c972e007e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6417,40 +6642,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bfdd2015-4db5-48d7-b205-909c2ee6c869" ], + "x-ms-request-id": [ "fedc0630-3eb2-4bfb-9fe6-d5a305e2c9ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1c523239-8c98-4146-8081-a67791184ba4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191518Z:1c523239-8c98-4146-8081-a67791184ba4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e619c40f-b693-4d07-b81c-21313270406a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004141Z:e619c40f-b693-4d07-b81c-21313270406a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8F4ED6CD2BA409CA6A9C2B7C1F3EEAB Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56BEE87D10A2423F8FDD66FB7EB080EF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60833,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60833\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:12:42.9666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+76": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+79": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-864zaeovnd?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "976" ], - "x-ms-client-request-id": [ "ee473860-1d5d-4a00-bc62-12fd0fd706da" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "c490d498-acc1-4c3e-80cb-46ad770f5e0b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6461,20 +6686,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F66C1D40A0\"" ], + "ETag": [ "\"1DCBCB93C1D5840\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5035f676-2365-43c5-aea2-88c24b83a166" ], + "x-ms-request-id": [ "be34f322-98a7-4c5d-b233-3014f1f473dc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c168bd20-1d23-428b-890a-6c10e2565c19" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd4e9083-2c9d-4c7f-b007-c5b35d59b0a7" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c565f3e9-e5fd-466d-b406-1a9dbe27bd0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191530Z:c565f3e9-e5fd-466d-b406-1a9dbe27bd0d" ], + "x-ms-correlation-request-id": [ "27a6564a-b886-4528-88bb-43baf0901387" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004149Z:27a6564a-b886-4528-88bb-43baf0901387" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 318722F20411481C9BC9BB58EBECA41D Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3EDEED080924982877122E9EA1FCD4D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6484,19 +6709,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+77": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+80": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "977" ], - "x-ms-client-request-id": [ "2ab285e0-a700-4e16-9798-273803b3efc6" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "28f47389-0dff-4cf3-b1c4-68a20caa423c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6508,40 +6733,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "769b0650-4dab-4f13-9c0c-43b796743ca2" ], + "x-ms-request-id": [ "32cdbcca-ee8e-453e-bcc3-165a12f4c002" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b122447e-b323-45e1-91fd-3d3e0b120398" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191531Z:b122447e-b323-45e1-91fd-3d3e0b120398" ], + "x-ms-correlation-request-id": [ "47087e81-cad6-4e80-9548-67f57b5e531e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004149Z:47087e81-cad6-4e80-9548-67f57b5e531e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7403C7F70F754E158D8AAA7C0D2E6A82 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:31Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C631F3CC50543E2B8C2CBB1243C4A36 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1825" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv\",\"name\":\"Func-Windows-Premium-New3-las2iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60832,\"name\":\"Func-Windows-Premium-New3-las2iv\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60832\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:10:42.9233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01+78": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+81": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-las2iv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "978" ], - "x-ms-client-request-id": [ "dc807cff-7796-45bb-8921-000ef63168d2" ], + "x-ms-unique-id": [ "618" ], + "x-ms-client-request-id": [ "de4367ef-7885-4d00-b3b1-2deb50ac6e17" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6553,18 +6778,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b373a60-18c8-4e66-a4d0-a846c06f1171" ], + "x-ms-request-id": [ "9e3b70c5-ec9c-45b7-9266-090ca4618e6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/577ed9e7-453b-4181-9254-49305fb0cf4f" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "d4ac0c03-f04c-49fe-9262-4028a56fb8d4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191537Z:d4ac0c03-f04c-49fe-9262-4028a56fb8d4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb2d6a18-6647-4f68-8af8-c7ee6fc1d803" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "a4ce55f5-5742-4254-a915-393cbe6bd0c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004154Z:a4ce55f5-5742-4254-a915-393cbe6bd0c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63486308CB5145079B7857E3B18BD5BC Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:31Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E5B171C1807412997BB237923C56123 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:49Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:54 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6574,19 +6799,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+79": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+82": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "979" ], - "x-ms-client-request-id": [ "a0d6550a-1153-438e-9119-63852b064af4" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "8beed760-5b75-4933-8fbf-28c1cd5cf800" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6598,40 +6823,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67025a39-721e-4ebf-9658-c28001fe2ef8" ], + "x-ms-request-id": [ "18593111-a64f-49e3-8fdc-3e6401a4364f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8b4513b2-83c4-4a36-819e-cdbddce150a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191537Z:8b4513b2-83c4-4a36-819e-cdbddce150a8" ], + "x-ms-correlation-request-id": [ "1450b667-ddf2-40f7-853b-06f7e232b15b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004155Z:1450b667-ddf2-40f7-853b-06f7e232b15b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6F3B53EC0AF401F861617DE6B52437C Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6296ABE9123843CAAC2F11DF049F7344 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:54Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1823" ], + "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60833,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60833\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:12:42.9666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+80": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+83": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "980" ], - "x-ms-client-request-id": [ "b4f314c0-c5d8-4c0a-8761-888366051684" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "bd47f2be-ecc5-4d9f-84f7-e72f40ad3a2c" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6643,18 +6868,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a29b0f9e-fa0e-494a-9d4b-49ce34e29367" ], + "x-ms-request-id": [ "23d930e2-5d37-48e3-964a-1a7608fe74a9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44028036-4c62-444c-8e2f-d273e7f64d5e" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "d92b251b-ab61-4d51-9202-0a5157674c7c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191544Z:d92b251b-ab61-4d51-9202-0a5157674c7c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/64803931-3132-43d3-9784-92314a0f6a28" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "49674eb8-80ef-43ad-9ad4-83cd58956e86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004200Z:49674eb8-80ef-43ad-9ad4-83cd58956e86" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA83DE07FEAA4045BC70868EA1E7967A Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3924AEC02999422893A2383F92E15200 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:55Z" ], + "Date": [ "Thu, 26 Mar 2026 00:41:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6663,6 +6888,1793 @@ "Content": null, "isContentBase64": false } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7ce502d6-1bb9-4553-b587-7eeab18c9ff0" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1080e301-a470-4688-859f-f7cc0bd77817" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "400352d0-1d4f-427a-bc8b-1c8d0d66dc65" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004201Z:400352d0-1d4f-427a-bc8b-1c8d0d66dc65" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7008CB24012C4D75A9D211A84D62BDE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "622" ], + "x-ms-client-request-id": [ "5f79cdf8-36ea-4ed5-baae-123045579a34" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "76ee3c87-70ee-4036-be53-8cf2cbc03fe9", "ccea6571-2b01-473b-b767-b5aefcd16172" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "3904526a-0ac8-4c55-8e2a-862df28e7b6c" ], + "x-ms-correlation-request-id": [ "3904526a-0ac8-4c55-8e2a-862df28e7b6c" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004201Z:3904526a-0ac8-4c55-8e2a-862df28e7b6c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3F78A20E571144E0BDED01C66D211BE3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "15498" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "623" ], + "x-ms-client-request-id": [ "d590f395-a893-44a6-90a0-accb464d801c" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "96b7ad4c-f061-42a2-a199-f4f4e844f858" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2ae895ae-2ea7-4660-8188-3d2246d9bea6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:2ae895ae-2ea7-4660-8188-3d2246d9bea6" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 777CB327B1F54E189DD3CA62B5D44EA9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1819" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "624" ], + "x-ms-client-request-id": [ "322aa0c5-a675-4d73-bbe6-e690e2e0889d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b4c45416-1414-4da7-abf5-31816ca10c82" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d941487e-d778-490d-bcb2-5d73e6e8241e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:d941487e-d778-490d-bcb2-5d73e6e8241e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C85381A75536452084D68975DFF25040 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1782" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "625" ], + "x-ms-client-request-id": [ "063e6a0d-e31e-4d6c-9410-7503c64a7e18" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f4ee181e-2c3b-4a85-b72f-b56d7bf37906" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "45c83797-de66-4fc0-a63e-c6e933ccb6b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:45c83797-de66-4fc0-a63e-c6e933ccb6b1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ED532E27C4E0495EADA1F52287EAE5E3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1740" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "626" ], + "x-ms-client-request-id": [ "8c1c2992-7efe-4121-85b4-1d932c5e04fe" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d6efe57a-76f6-4fbe-8217-a554fbf99522" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ac3d6c19-9a4f-43c8-8527-338894d22e0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:ac3d6c19-9a4f-43c8-8527-338894d22e0d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D77D60FD6A7049988B0A19A2A1AC48D5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1754" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "627" ], + "x-ms-client-request-id": [ "26e91e3a-ac54-4659-906c-5545811dcc0b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "7b8ffde4-8822-46d0-9651-de7cc896bc52" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5e5838cc-c94d-455d-8829-0edc3818d0ff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:5e5838cc-c94d-455d-8829-0edc3818d0ff" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4BC676A00E544129B9B01FAC88B13297 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1743" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":4,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "628" ], + "x-ms-client-request-id": [ "e087e8c4-7354-4604-9b93-83f9097782cc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bc267d5a-bcb7-44f6-9260-e9a136da2692" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7fccb453-a93a-4a33-a6bc-28e69acebac2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:7fccb453-a93a-4a33-a6bc-28e69acebac2" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FD51467F136141129689DB59F49743A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1753" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "629" ], + "x-ms-client-request-id": [ "312a1be5-6059-42b1-b4ad-f34d5c0b2fa3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d09b32e7-1e16-4c2d-babf-9dff62c92b6b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "398d718d-d712-4f50-b476-3544e1e1286c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:398d718d-d712-4f50-b476-3544e1e1286c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F8AB350A5DC042B5BE9E4575D8834085 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1821" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "630" ], + "x-ms-client-request-id": [ "c1be0a16-ee07-4d42-b1c0-a7172a8ab92f" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b329b5c7-4081-41b1-9c8a-17826a30e36b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "db083c2a-ea45-4938-bf20-d47283564ddd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:db083c2a-ea45-4938-bf20-d47283564ddd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DE4EA50EECE84865B6AA4476BD61D9FE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "107be8c6-1e6e-4b57-84cb-de16c814b170" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3c6b5a22-58fd-4f46-bc14-332fd8e35c32" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "3489b200-56ca-4b9e-8ff8-26e5b7552e1f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T004203Z:3489b200-56ca-4b9e-8ff8-26e5b7552e1f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6967D3AD6EFC4803AEE32DDCEF69A1C6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "632" ], + "x-ms-client-request-id": [ "4353ab53-ca4a-48d1-83ea-4e8cfe6a0a01" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], + "FullCommandName": [ "Get-AzStorageAccount_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "38024b4b-a12e-490a-a086-bf5f21cc86f0", "87865985-48c6-45dc-b52d-c25a26801c33", "a5ff2dcc-5ca1-44bf-88b6-a9d168d1e183" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "b4570808-a697-4cc1-be3f-a3a43be3ab96" ], + "x-ms-correlation-request-id": [ "b4570808-a697-4cc1-be3f-a3a43be3ab96" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004204Z:b4570808-a697-4cc1-be3f-a3a43be3ab96" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5DE99B45F1A24008B23A54984AC99465 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12363" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+13": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "633" ], + "x-ms-client-request-id": [ "02aaee1b-9e2b-4fce-b2f4-f9e87eab69a5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], + "FullCommandName": [ "Get-AzStorageAccountKey_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-request-id": [ "6d25e6f5-dac3-4921-af75-75adf87ce817" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08697075-ebbc-4960-83f3-282c7c4de65b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "a507506b-4f19-46b2-9684-17379f0f4a3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004204Z:a507506b-4f19-46b2-9684-17379f0f4a3b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F9F82D47FCF8497F928C4655FF68C76E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "288" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"keys\":[{\"keyName\":\"key1\",\"value\":\"SANITIZED-KEY-VALUE\",\"permissions\":\"FULL\"},{\"keyName\":\"key2\",\"value\":\"SANITIZED-KEY-VALUE\",\"permissions\":\"FULL\"}]}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2015-05-01+14": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2015-05-01", + "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "116" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Request-Context": [ "appId=cid-v1:0dd6a9c3-b728-41ca-aa78-7e1962e22331" ], + "Access-Control-Expose-Headers": [ "Request-Context" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c195bf5-1f18-4605-85b3-e235240c22df" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "5b90f69b-d95a-475a-87a3-8079e88e8496" ], + "x-ms-correlation-request-id": [ "5b90f69b-d95a-475a-87a3-8079e88e8496" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004212Z:5b90f69b-d95a-475a-87a3-8079e88e8496" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0EE9B78BBA88460395A80B61B61861FE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1684" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c302d50a-0000-0300-0000-69c480e40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"name\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"AppId\": \"8540f30a-57b1-47d9-aeb9-056bf2ad4dd3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"03f79769-b6f5-460f-a2aa-dfcdd94ab402\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"CreationDate\": \"2026-03-26T00:42:05.3686453+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest7-pz8c2l4wbk_8540f30a-57b1-47d9-aeb9-056bf2ad4dd3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest7-pz8c2l4wbk-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+15": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest7-pz8c2l4wbk\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "1718" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DCBCB963F75F00\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f00c4eb6-83e2-4644-bb30-1dc72bf69fe7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd68a0ae-b396-49b8-bced-18bcf763e905" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "a7cfc160-997b-44be-a5f9-fda9f056dd3e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004255Z:a7cfc160-997b-44be-a5f9-fda9f056dd3e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B8C0A9054EF24142879889E13B51D0E4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:42:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8581" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:13.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+16": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "7423f66c-a677-4e9c-a572-f33d1cca2f75" ], + "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], + "FullCommandName": [ "New-AzFunctionApp_Create" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB97BFBA555" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "604300ab-314b-4b1c-ac0e-c6494bfba27d" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ae2f0c50-12d0-4dcb-b0e4-d9409bfa2942" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004325Z:ae2f0c50-12d0-4dcb-b0e4-d9409bfa2942" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0A84E1885F83431B84715B1E821F0574 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8382" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:54.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+17": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "637" ], + "x-ms-client-request-id": [ "cd4ae5d8-2c73-40a6-aeb5-e6e6c46105b8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB97BFBA555" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "14be2e10-5484-45c1-9022-518b1ff0d83f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2bdee92a-2446-46a6-b589-17b28716fb6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004326Z:2bdee92a-2446-46a6-b589-17b28716fb6c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 04CEB72F32694DE48767309A46BCADD3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8382" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:54.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+18": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "638" ], + "x-ms-client-request-id": [ "c3e4206d-35d7-4e84-85b8-9faeebcbf665" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "706e3496-4b8a-4633-bc4c-5465a8b77450" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc28d0d7-23f4-4c3f-aade-542c2969a5d6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "bd003bd5-8af4-4937-b299-74d3ca1410e9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004326Z:bd003bd5-8af4-4937-b299-74d3ca1410e9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 99AD4C858F9B46DD8C5C7608D1439674 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+19": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "639" ], + "x-ms-client-request-id": [ "586c56de-a865-44ab-8a8e-6e1c116d9bbc" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2f856ea9-ce4d-42a1-a870-9684f3216770" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ddc1004-0283-4b16-9ef5-bb4a75194f6d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6314329a-c978-4937-813a-2f05beb113a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004326Z:6314329a-c978-4937-813a-2f05beb113a5" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 64C599B6FE854F6E9C6609066CA5CF28 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4191" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+20": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "923acfd1-dda1-42c9-af67-a255e80f10ad" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB97BFBA555" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "377b2122-9375-4ef9-b6b2-f52a0eb12765" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1a099a62-e7d3-42b7-81a6-a9b8eab0785b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004327Z:1a099a62-e7d3-42b7-81a6-a9b8eab0785b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 32937631750B440AA2521BE23794E315 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8382" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:54.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+21": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "641" ], + "x-ms-client-request-id": [ "11ee9534-5b2e-4680-91f6-c369c1ba4aa5" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "3641612f-ba4c-4fef-88fa-adf9c590a191" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6491e4c-41d5-4436-ac04-56eb016a0c20" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "4113d84e-5dad-4416-a6b8-8dcf87df8f4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004327Z:4113d84e-5dad-4416-a6b8-8dcf87df8f4f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E43A506AFC844B3183D1148964497675 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+22": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "642" ], + "x-ms-client-request-id": [ "7596703f-941c-40bb-b860-bb777c18af4d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "827151cf-b3d4-4af9-b56f-d4bb9e054120" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a0bcf62-92ec-4758-92d6-0e89b25191ff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b130302e-e18d-4698-819b-db5366fc42e4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004327Z:b130302e-e18d-4698-819b-db5366fc42e4" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DD363595A1E24B13AF932A75DCEAAA29 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4191" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "643" ], + "x-ms-client-request-id": [ "d7055e27-ba19-426c-a596-f948e724da62" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "dd64f2b6-8497-45d0-a513-e847157028fe" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ae77c2b9-9b55-4b4a-bb08-a04ff35cdea9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004328Z:ae77c2b9-9b55-4b4a-bb08-a04ff35cdea9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 531486FD93B64C16B4EB214FE7F2C38E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+24": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "811c62a9-d3d9-4e06-91d5-ea6beae8fa24" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b3be2d88-479b-4f3a-bcda-c4cb89da8aa2" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7123cc31-ed07-4abd-ad7e-69557eba5c58" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3e95d963-5e07-4a7c-a9e0-310b00efa7d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004328Z:3e95d963-5e07-4a7c-a9e0-310b00efa7d8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2C313B47BC364A19B77F37121912036B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+25": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest7-pz8c2l4wbk\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "2043" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DCBCB97BFBA555\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "da2ef8db-b6ee-4239-a191-e09657026522" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/341aeb50-edd9-4725-8b81-1851346fc429" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "0a731055-2f46-4622-afa0-2d5ccf3a02ff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004331Z:0a731055-2f46-4622-afa0-2d5ccf3a02ff" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 89B25E09F4EA4CFB8673AA8302E91369 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:43:30 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9042" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+26": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "646" ], + "x-ms-client-request-id": [ "0b8f3873-5602-4635-b480-88e24716e0d3" ], + "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], + "FullCommandName": [ "Set-AzFunctionApp_Update" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB9916620F5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f0e661d7-17da-4c51-85ed-37191f606369" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0031cbe7-591f-4224-85f2-656a431942a3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:0031cbe7-591f-4224-85f2-656a431942a3" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C58553226AC148DBB0AD1D5ACDC8A24A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8838" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+27": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "95e76b73-c970-4e05-8770-9ad5df27b84a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB9916620F5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a0036cfa-fb00-4f53-867f-f69d7e23c0c7" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2c41e782-b577-490b-ab6b-66e66f812267" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:2c41e782-b577-490b-ab6b-66e66f812267" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 176070383B8C4B37B1C2261DD8CF71B2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8838" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+28": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "648" ], + "x-ms-client-request-id": [ "af90e53e-3ade-4476-8595-360989861e16" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8db08cce-bd3a-4c63-a158-aa0016e2a41b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1f2550c-8509-489c-9ad9-32e52ef13c84" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "9027a7aa-c0bd-4d02-a420-7c7a8a9aa9cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:9027a7aa-c0bd-4d02-a420-7c7a8a9aa9cc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8EE13914549247E19E475D2239C2F0AF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+29": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "649" ], + "x-ms-client-request-id": [ "8838cb7a-9ac8-4854-9edd-5e0778726c75" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0fad9537-c0ad-4c56-a4b9-444ad6847516" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9aa3df4d-5893-4d3d-adbd-44b1f115c66b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7ef04c54-c54d-480e-8d88-ffe1dae24258" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:7ef04c54-c54d-480e-8d88-ffe1dae24258" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0300957D665D4550868B34B29FAFF3B8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4193" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88200,\"xManagedServiceIdentityId\":88201,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+30": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "650" ], + "x-ms-client-request-id": [ "30ce3ad0-a6e2-437d-8448-524cd1c1f6a8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB9916620F5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "805bb5a1-1fb5-4ef4-af85-b4e81b0cf89f" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "50cad2fa-fc9c-4349-87a0-ef6575c049ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:50cad2fa-fc9c-4349-87a0-ef6575c049ac" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B4897981F3F94356B3858F9CFD1E07F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "8838" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+31": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "651" ], + "x-ms-client-request-id": [ "9185b06f-47ac-4e92-bf07-4662a7549129" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "6c5f5a68-1b58-44b7-944a-0e723267da60" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d11826ee-a990-473a-b8c5-283d454fbcfa" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c8451cfa-0808-47cd-b8d7-4c48b4e4cf64" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:c8451cfa-0808-47cd-b8d7-4c48b4e4cf64" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ED388ACFB8DD4E3083163AA413B03E02 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1182" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+32": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "652" ], + "x-ms-client-request-id": [ "1cd2a722-a3b2-416f-93e0-a276bb068c17" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5baf9ffe-b6eb-4aad-968b-a4be81175c25" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56011f6b-f304-4b14-88d2-825dbc8c31d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b6716298-8356-4ac1-9ae7-d71bef423180" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:b6716298-8356-4ac1-9ae7-d71bef423180" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 16C7EBA7E8AE4531BE83414AD6B3BC5B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4193" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88200,\"xManagedServiceIdentityId\":88201,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+33": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "653" ], + "x-ms-client-request-id": [ "72c184d7-a5b2-4141-b920-50a4793d1e01" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "284495b1-e0ca-4bd0-bc47-df42658a20d1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "21d6186f-5ecd-43bf-82eb-25aef28b903d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:21d6186f-5ecd-43bf-82eb-25aef28b903d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F53EA79F948A4FB7B66C398F50F5D824 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1828" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+34": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "654" ], + "x-ms-client-request-id": [ "d58b136c-c7b5-4e06-9042-c86deb787d02" ], + "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], + "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1DCBCB9916620F5\"" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "767bdbdf-76b9-4539-a8fd-228fc7aaf420" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eff6b21d-e177-4b45-888b-245c4efdd32e" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "0dc0f4b1-e17f-47f6-bc86-cb28b585fb09" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004411Z:0dc0f4b1-e17f-47f6-bc86-cb28b585fb09" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 39B3F240D1DE490B80FA150EE87B8CD2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:04Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:10 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+35": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "655" ], + "x-ms-client-request-id": [ "4eeef7b1-999a-45b9-84ad-46bc3a79bf5b" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "e2fd5f37-de4a-4942-8e36-db02212aaa07" ], + "x-ms-correlation-request-id": [ "e2fd5f37-de4a-4942-8e36-db02212aaa07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004411Z:e2fd5f37-de4a-4942-8e36-db02212aaa07" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3E20CD3B55BC46A489B717F4FA4CD0B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "264" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+36": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "656" ], + "x-ms-client-request-id": [ "72bff9a2-0ca4-4a8b-b1a6-029c9a002350" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 404, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ "gateway" ], + "x-ms-request-id": [ "4b4ca2c7-92a5-40e5-9a56-8cf3ab6325db" ], + "x-ms-correlation-request-id": [ "4b4ca2c7-92a5-40e5-9a56-8cf3ab6325db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004411Z:4b4ca2c7-92a5-40e5-9a56-8cf3ab6325db" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FAD06994C9E441D1B892F20B5D15073C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "264" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y?api-version=2023-12-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "657" ], + "x-ms-client-request-id": [ "61ca132c-7ce6-4587-af9f-02dac2eeb574" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], + "FullCommandName": [ "Get-AzFunctionApp_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "1DCBCB52971D260" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "d3da2556-ec61-49e0-bec4-a58776b9cef6" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c39d13ca-7193-4bd9-9ed4-4df084c2a5ce" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T004412Z:c39d13ca-7193-4bd9-9ed4-4df084c2a5ce" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5EF92CB5794F4CE89E6511D2856BCE95 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "9381" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-a50y\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-a50y.azurewebsites.net\"],\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace/sites/Flex-PowerShell-a50y\",\"repositorySiteName\":\"Flex-PowerShell-a50y\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-a50y.azurewebsites.net\",\"flex-powershell-a50y.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-a50y.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-a50y.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:11:58.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaa50y.blob.core.windows.net/app-package-flexpowershella50y-0196397\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-a50y\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-a50y\\\\$Flex-PowerShell-a50y\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"defaultHostName\":\"flex-powershell-a50y.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01+2": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "c689c1bc-c8ab-43da-80f7-8f6050369906" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], + "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "258cec25-d608-499d-b916-a57d370f6d3b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/79a274e3-2c9a-40d4-972c-5fdad5db493e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "44a0b6d3-3129-49d7-ad31-4a41b6d2d81e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T004412Z:44a0b6d3-3129-49d7-ad31-4a41b6d2d81e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E501EDDCBFBA48F3A3DE26352B5B90F8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1011" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "659" ], + "x-ms-client-request-id": [ "c1d14c6b-4eaa-4126-8a34-30c0fb2d8017" ], + "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], + "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "791e3996-8271-40df-97bb-66c43fac6360" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bb135904-0717-404f-973c-1b7ef5f9cbfd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "540799f2-f672-4736-ac25-be1d371bbb2a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T004413Z:540799f2-f672-4736-ac25-be1d371bbb2a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 41A93E4E2AEA40A199F9CD6784EA8A7E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4141" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "660" ], + "x-ms-client-request-id": [ "340b460f-65c0-4772-a2b8-4ab7276b33ff" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "79299c3f-7c55-48a0-ad96-9c40107f4f27" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f2ee4977-03cb-4e73-90df-0260d045077b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T004413Z:f2ee4977-03cb-4e73-90df-0260d045077b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BC431B1F094E4E08A4EFFC07C52FCE60 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:12 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1811" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } } } - diff --git a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.ps1 index a86eadf9e87d..d06fc16a0e2f 100644 --- a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.ps1 @@ -54,7 +54,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $functionApp.AppServicePlan | Should -Be $planName Write-Verbose "Update function app -> enable a SystemAssigned managed identity" -Verbose - $updateFunctionAppJob = Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType SystemAssigned -Force -AsJob + $updateFunctionAppJob = Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -EnableSystemAssignedIdentity $true -Force -AsJob $result = WaitForJobToComplete -JobId $updateFunctionAppJob.Id $result.State | Should -Be "Completed" $result | Remove-Job -ErrorAction SilentlyContinue @@ -122,8 +122,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' Write-Verbose "Identity id: $($identityInfo.Id)" -Verbose Update-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` - -IdentityType UserAssigned ` - -IdentityID $identityInfo.Id ` + -UserAssignedIdentity $identityInfo.Id ` -Force $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName @@ -199,7 +198,7 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' -Runtime PowerShell ` -RuntimeVersion 7.4 ` -FunctionsVersion 4 ` - -IdentityType SystemAssigned ` + -EnableSystemAssignedIdentity ` -Tag $tags Write-Verbose "Run: Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName" -Verbose @@ -240,11 +239,11 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' $functionApp.AppServicePlan | Should -Be $newPlanName # Update test to use -InputObject when https://github.com/Azure/azure-powershell/issues/23266 is fixed - # Update-AzFunctionApp -InputObject $functionApp -IdentityType None -Force - # Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType None -Force + # Update-AzFunctionApp -InputObject $functionApp -EnableSystemAssignedIdentity:$false -Force + # Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -EnableSystemAssignedIdentity:$false -Force Write-Verbose "Update function -> remove SystemAssigned managed identity" -Verbose - Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -IdentityType None -Force + Update-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -EnableSystemAssignedIdentity:$false -Force $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName Write-Verbose "FunctionApp after identity removal. Validate IdentityType" -Verbose @@ -281,4 +280,86 @@ Describe 'New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E' } } } + + It "Update a function app to enable both SystemAssigned and UserAssigned managed identities" { + + try + { + Write-Verbose "Creating function app" -Verbose + $appName = $env.functionNamePowerShellNew7 + Write-Verbose "App name: $appName" -Verbose + + $resourceGroupName = $env.resourceGroupNameWindowsPremium + Write-Verbose "Resource group name: $resourceGroupName" -Verbose + + $planName = $env.planNameWorkerTypeWindows + Write-Verbose "Plan name: $planName" -Verbose + + $storageAccountName = $env.storageAccountWindows + Write-Verbose "Storage account name: $storageAccountName" -Verbose + + New-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -PlanName $planName ` + -StorageAccount $storageAccountName ` + -OSType Windows ` + -Runtime PowerShell ` + -RuntimeVersion 7.4 ` + -FunctionsVersion 4 + + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + $functionApp.OSType | Should -Be "Windows" + $functionApp.Runtime | Should -Be "PowerShell" + + Write-Verbose "Update function app -> enable both SystemAssigned and UserAssigned managed identities" -Verbose + $identityInfo = $env.identityInfo + Write-Verbose "Identity id: $($identityInfo.Id)" -Verbose + Update-AzFunctionApp -Name $appName ` + -ResourceGroupName $resourceGroupName ` + -EnableSystemAssignedIdentity $true ` + -UserAssignedIdentity $identityInfo.Id ` + -Force + + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName + $functionApp.IdentityType | Should -Match "SystemAssigned" + $functionApp.IdentityType | Should -Match "UserAssigned" + + $userAssignedIdentity = $functionApp.IdentityUserAssignedIdentity.AdditionalProperties + $userAssignedIdentity.ContainsKey($identityInfo.Id) | Should -Be $true + + Write-Verbose "Remove function app" -Verbose + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force + + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + $functionApp | Should -Be $null + } + finally + { + $functionApp = Get-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -ErrorAction SilentlyContinue + if ($functionApp) + { + Remove-AzFunctionApp -Name $appName -ResourceGroupName $resourceGroupName -Force -ErrorAction SilentlyContinue + } + } + } + + It "Update-AzFunctionApp should error for Flex Consumption apps" { + + $expectedErrorId = "FlexConsumptionNotSupported" + + $flexAppName = $env.flexFunctionAppName + $flexResourceGroupName = $env.flexResourceGroupName + + Write-Verbose "Flex app name: $flexAppName" -Verbose + Write-Verbose "Flex resource group name: $flexResourceGroupName" -Verbose + + $scriptblock = { + Write-Verbose "Attempting Update-AzFunctionApp on a Flex Consumption app" -Verbose + Update-AzFunctionApp -Name $flexAppName ` + -ResourceGroupName $flexResourceGroupName ` + -Force + } + Write-Verbose "Validate that the expected ErrorId is thrown" -Verbose + $scriptblock | Should -Throw -ErrorId $expectedErrorId + } } diff --git a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json index ea18d5f0cea3..ddb835fbb094 100644 --- a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "981" ], - "x-ms-client-request-id": [ "b95457a0-db78-44e3-aa8d-4d01abafddfd" ], + "x-ms-unique-id": [ "661" ], + "x-ms-client-request-id": [ "0d2a20d6-4bb3-4089-97b3-ab0619ec397b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c6e5320-7b06-4a7e-8a64-77daf5c0df30" ], + "x-ms-request-id": [ "5a854327-7fe8-4010-bfea-f67c3632caf4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/88a37bb2-a9a7-421a-9043-11d7cbbc73ed" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8a20a7fd-3946-45bc-8640-a2a083e46c10" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c625b7f7-1dfd-4f51-b782-b482081075f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191545Z:c625b7f7-1dfd-4f51-b782-b482081075f2" ], + "x-ms-correlation-request-id": [ "553f9cbe-e279-4e37-af4f-2121e4210fc5" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004414Z:553f9cbe-e279-4e37-af4f-2121e4210fc5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 858CD8DEF3FA405986DA6D16BA952D73 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:44Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 238E16A97293468E9CDDE32C43D5E8F6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -63,44 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F69436DB6B\"" ], + "ETag": [ "1DCBCB9AC274A60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f890e88-efb1-4aa0-9cd2-89f9245f2eb4" ], + "x-ms-request-id": [ "d715e7f6-033f-4e8b-8f70-29bd87441fb1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c17b69f8-f389-4a59-b4d2-a882fe4c24a1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12fe736f-8a47-48a4-ba32-ec05ac049de7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "0b231729-b16b-4b72-b490-a0ff003f908c" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T191549Z:0b231729-b16b-4b72-b490-a0ff003f908c" ], + "x-ms-correlation-request-id": [ "6f1b097b-2971-4db2-ae0b-5823d876caf0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004416Z:6f1b097b-2971-4db2-ae0b-5823d876caf0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D626CB2AE78D44ADA5B29EED27F29838 Ref B: MWH011020807031 Ref C: 2025-11-17T19:15:45Z" ], - "Date": [ "Mon, 17 Nov 2025 19:15:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C755F141E2A4857B808A89DC2ECB25B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1911" ], + "Content-Length": [ "1913" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "983" ], - "x-ms-client-request-id": [ "7cfb54c1-2d0a-47ef-9a7b-c9c6396f9659" ], + "x-ms-unique-id": [ "663" ], + "x-ms-client-request-id": [ "df078812-dc4e-40d1-92eb-84f6e4b73197" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b12e5de4-83a2-48e0-8e14-61ab535f61dd" ], + "x-ms-request-id": [ "9586e8c5-2025-4505-adca-c125f1f16d92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c588aa02-62b2-4512-b08c-e536e572b06f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191619Z:c588aa02-62b2-4512-b08c-e536e572b06f" ], + "x-ms-correlation-request-id": [ "3322e0e7-16e3-4891-8a38-b534b09223b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:3322e0e7-16e3-4891-8a38-b534b09223b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A91A0A9317F400AB15AA76DDED76387 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E0BCFDA04F24FE1AEA4D0E27B01D472 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1824" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "984" ], - "x-ms-client-request-id": [ "7cfb54c1-2d0a-47ef-9a7b-c9c6396f9659" ], + "x-ms-unique-id": [ "664" ], + "x-ms-client-request-id": [ "df078812-dc4e-40d1-92eb-84f6e4b73197" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -156,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba8df511-3e86-45a4-a71c-c5e9f25ceae5" ], + "x-ms-request-id": [ "5e8f8aad-4d09-4356-98ae-21517aefbfa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "41c73887-abaa-4f44-a301-0da327cc4353" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191619Z:41c73887-abaa-4f44-a301-0da327cc4353" ], + "x-ms-correlation-request-id": [ "c0c9eee2-f3d8-4571-8f8d-ac346b92a5ba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:c0c9eee2-f3d8-4571-8f8d-ac346b92a5ba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA9460D50BE747F3A31981297AF68AE4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4AB76F2AF82E4806B73F60353EED66B4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1824" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "985" ], - "x-ms-client-request-id": [ "a8926ec8-885c-4794-a668-916b94e61a8f" ], + "x-ms-unique-id": [ "665" ], + "x-ms-client-request-id": [ "b8c6a10f-db49-4b56-94e8-0997c57b6e4a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -201,40 +201,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da66a8af-749f-4847-aae5-9a2c5f1ead91" ], + "x-ms-request-id": [ "bcd0b4d6-01b1-421a-93e2-10d5132b5f6e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "85f3a88e-3e1f-4aab-b769-e5292c747c35" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191620Z:85f3a88e-3e1f-4aab-b769-e5292c747c35" ], + "x-ms-correlation-request-id": [ "5219365e-7186-47c5-a25d-d97f8dc5ef44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:5219365e-7186-47c5-a25d-d97f8dc5ef44" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 272CB67979EE438EA50825FD320BC6F7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1AF1BBBF6DD4A82B48FFEF2ACE46CF4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1824" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "986" ], - "x-ms-client-request-id": [ "f25529bd-2e26-47e3-aba7-18819e4c8092" ], + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "3d04fa42-6fbf-4bb8-b769-3a334577dc2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -246,31 +246,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dffc06be-5f69-435f-86ca-4972d7f33397" ], + "x-ms-request-id": [ "70ffa223-2f7e-4ef6-ba4f-80aaa2de9c1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "46d72270-63f7-48d8-a2ee-ca18ce27b289" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191620Z:46d72270-63f7-48d8-a2ee-ca18ce27b289" ], + "x-ms-correlation-request-id": [ "47afbcc8-dd50-40cf-a31f-b8356f6e0dc1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:47afbcc8-dd50-40cf-a31f-b8356f6e0dc1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A45E904FFC33483599443614F14BAC83 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DA6DEB59D1840E78434E1EF558BADF4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1824" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 5,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP3\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -286,42 +286,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94decd4f-98e1-418f-8b75-cc13ea4ba8b9" ], + "x-ms-request-id": [ "32715046-e149-47ab-8d6d-cfb9e86f616b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bcfd6809-a1e1-4494-973a-ccf2c736fa2a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef118b66-5c58-4822-8a8d-3f262d1ec3fa" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4eae6d42-5b5b-4579-842e-17021ad0c7db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191622Z:4eae6d42-5b5b-4579-842e-17021ad0c7db" ], + "x-ms-correlation-request-id": [ "e9b6d1b6-64bd-4c87-bdbb-1932ed495fcb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004449Z:e9b6d1b6-64bd-4c87-bdbb-1932ed495fcb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E068DFFE4FAB4759AE70D0F90820F854 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2CDAE94399A24D0396B5D5E631C7CDAC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:44:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1905" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+8": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "988" ], - "x-ms-client-request-id": [ "1e884e3d-652a-4884-a3f4-fef12b73cfa7" ], + "x-ms-unique-id": [ "668" ], + "x-ms-client-request-id": [ "fd2dbbec-dcb6-42cf-aed6-98e8421475d4" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -332,41 +332,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4aa336a3-a739-4511-a6c9-19f6856abf26" ], + "x-ms-request-id": [ "70b11c31-bc98-4fe4-964d-f4adb02274bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "41e355a9-4e31-48e1-9c29-330cd274ad39" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191652Z:41e355a9-4e31-48e1-9c29-330cd274ad39" ], + "x-ms-correlation-request-id": [ "5db82760-bb20-48ef-8d0f-dcb538a221d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004520Z:5db82760-bb20-48ef-8d0f-dcb538a221d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B2C9826470C40CCABA58C2394C750F6 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABA446A857E04FE292CA923F12504A51 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:45:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+9": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "989" ], - "x-ms-client-request-id": [ "1e884e3d-652a-4884-a3f4-fef12b73cfa7" ], + "x-ms-unique-id": [ "669" ], + "x-ms-client-request-id": [ "fd2dbbec-dcb6-42cf-aed6-98e8421475d4" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -377,40 +377,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b936b064-e246-4620-8723-292c68b4e81b" ], + "x-ms-request-id": [ "8b96fdc2-4696-4e7c-af2d-5d0a0c3ff7ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "181db213-8a0c-469d-ba2e-d5b6e4facf9a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191652Z:181db213-8a0c-469d-ba2e-d5b6e4facf9a" ], + "x-ms-correlation-request-id": [ "f502aeb2-fa82-4a6f-bb7a-69d12ee42f83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004522Z:f502aeb2-fa82-4a6f-bb7a-69d12ee42f83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E686321728DF41A6ABB52B6A68040556 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8C6BC1A841A4B5A900F34D3EEE348C0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:45:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+10": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "990" ], - "x-ms-client-request-id": [ "e444770b-482e-4e0c-85b3-f8684026de80" ], + "x-ms-unique-id": [ "670" ], + "x-ms-client-request-id": [ "9e50f0c4-b8c4-4c69-b5bf-ae7ced98b823" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -422,40 +422,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3342f50-2aee-45eb-9126-57c9be63eb51" ], + "x-ms-request-id": [ "20e47389-e69a-4495-beb7-1153809a04d1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f40e4dba-c6f0-45a4-9b9a-db358cf0f012" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191652Z:f40e4dba-c6f0-45a4-9b9a-db358cf0f012" ], + "x-ms-correlation-request-id": [ "ea13635d-62f7-41c0-8c6e-3293bef9a441" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004522Z:ea13635d-62f7-41c0-8c6e-3293bef9a441" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6D3AD6E7A6A495C89A2618112A6EC7E Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 341BA032CA134299AB0E3C7C7CBCA8DC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:45:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+11": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "991" ], - "x-ms-client-request-id": [ "387ea671-fb54-4779-84a3-6a97ccde9f2f" ], + "x-ms-unique-id": [ "671" ], + "x-ms-client-request-id": [ "a83b3a9f-c1c4-4661-a92d-7c8d5c814b95" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -467,40 +467,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c81dfd22-34bc-4985-8369-2edef31836c8" ], + "x-ms-request-id": [ "1e1f7727-7676-4899-b695-e3af63e2b525" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "65ea6c30-b466-4589-8565-5a65724381e5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191653Z:65ea6c30-b466-4589-8565-5a65724381e5" ], + "x-ms-correlation-request-id": [ "70408b73-d766-47bb-b3f9-e98bb61b7616" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004522Z:70408b73-d766-47bb-b3f9-e98bb61b7616" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D14E75C83704441A49E7E25310D011B Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C527B61139AE464D91DAFECC7B6E41C5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:45:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60834,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60834\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:15:46.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+12": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+12": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "992" ], - "x-ms-client-request-id": [ "7ecff04f-e649-451c-83f3-2d4a41432936" ], + "x-ms-unique-id": [ "672" ], + "x-ms-client-request-id": [ "6a22b29d-6adf-43df-a9b4-bf67d04344d3" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -512,18 +512,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "324da3af-b5e1-4c45-9f10-145c292773d4" ], + "x-ms-request-id": [ "72fe2ed7-42f1-4107-ba60-1169edc286ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed7d8a38-b2a8-4496-8068-4e68f4446f33" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2ed7bd40-a130-46c1-8262-40bb6aeefe8a" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "409fb8b5-fc33-494d-8814-247c2e31bca6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191659Z:409fb8b5-fc33-494d-8814-247c2e31bca6" ], + "x-ms-correlation-request-id": [ "d750742f-1e70-493e-8cde-edff509fc880" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004528Z:d750742f-1e70-493e-8cde-edff509fc880" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31F5E785E2B04BF6AF6ACE6F44059592 Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:53Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 783BB135ED8E4C1FB45A21480D822736 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:45:27 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -540,12 +540,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "993" ], - "x-ms-client-request-id": [ "3189926f-5ce9-40cf-9a20-853963fa2292" ], + "x-ms-unique-id": [ "673" ], + "x-ms-client-request-id": [ "f58a248b-84f2-4d7b-8f3d-f4d937c6eccf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -557,32 +557,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "442ab264-4dc3-4e06-ae06-adbd762b4453" ], + "x-ms-request-id": [ "afc09fe9-cf69-4333-ad49-e2f38f973572" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e35b83d0-d608-475e-b8f8-f941a15f597c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6d662d39-2d67-4cae-ade4-36c6e2300b06" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ff8b1095-1860-4782-8c92-0d113327ba7b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191659Z:ff8b1095-1860-4782-8c92-0d113327ba7b" ], + "x-ms-correlation-request-id": [ "4a172159-d47d-4db5-9557-3e49c19381e0" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004528Z:4a172159-d47d-4db5-9557-3e49c19381e0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EDCA7EE1B4EF4859B9FD6ECD72A19DDE Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:16:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 239995605A9042F4A251F939BBA36846 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:45:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -597,44 +597,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F6C0A9D840\"" ], + "ETag": [ "1DCBCB9D8C275AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7bfdeb2a-2e10-4323-8715-a0de30e7e4bf" ], + "x-ms-request-id": [ "b591d1bb-a228-449a-9b9e-5638a17841da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8884306d-f84f-46b8-806e-163dcfce03cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7469bf4c-26f8-4c9c-af71-75d232190e88" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "97965786-83da-4351-98a8-3eeab9bec0b9" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T191702Z:97965786-83da-4351-98a8-3eeab9bec0b9" ], + "x-ms-correlation-request-id": [ "88c51c6f-5c18-4284-ba77-a61a1d3396d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004531Z:88c51c6f-5c18-4284-ba77-a61a1d3396d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FDBE556ABADC4110A340A183FE578D7A Ref B: MWH011020807031 Ref C: 2025-11-17T19:16:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:17:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55965BCE069A42458825CF51706BD900 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:45:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1906" ], + "Content-Length": [ "1913" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "995" ], - "x-ms-client-request-id": [ "a55ccb76-d22a-4cfa-a15e-77f78c73d25c" ], + "x-ms-unique-id": [ "675" ], + "x-ms-client-request-id": [ "0e627b3a-6538-469d-a80a-a6de02e6dae7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -645,41 +645,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cde2ccbd-4c10-4141-b5fb-f985a6158edc" ], + "x-ms-request-id": [ "e49db175-cb0d-416d-820c-cc0bc0754406" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a9f5ea64-1970-4e54-95ad-10fdfa2f742d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191733Z:a9f5ea64-1970-4e54-95ad-10fdfa2f742d" ], + "x-ms-correlation-request-id": [ "1872f4e7-b85b-4498-802c-860e238ffe41" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004601Z:1872f4e7-b85b-4498-802c-860e238ffe41" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC91891C1886416088E01765356FDC24 Ref B: MWH011020807031 Ref C: 2025-11-17T19:17:32Z" ], - "Date": [ "Mon, 17 Nov 2025 19:17:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C983B6690081402CA6F514DB532C497A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1824" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "996" ], - "x-ms-client-request-id": [ "a55ccb76-d22a-4cfa-a15e-77f78c73d25c" ], + "x-ms-unique-id": [ "676" ], + "x-ms-client-request-id": [ "0e627b3a-6538-469d-a80a-a6de02e6dae7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -690,40 +690,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a86f15c5-15b1-4551-aa5e-069df9c738d6" ], + "x-ms-request-id": [ "6cf5191c-104c-44e3-8f5e-814ab7949d03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "72d91b83-60a1-4629-abce-731aa72ef943" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191733Z:72d91b83-60a1-4629-abce-731aa72ef943" ], + "x-ms-correlation-request-id": [ "7cb8f18f-9c73-412b-b093-36f27c089d57" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004602Z:7cb8f18f-9c73-412b-b093-36f27c089d57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 049BE23E4D114E728659EA6A302EEC18 Ref B: MWH011020807031 Ref C: 2025-11-17T19:17:33Z" ], - "Date": [ "Mon, 17 Nov 2025 19:17:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A51F974131E747ABB85D7701DF842D76 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1824" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "997" ], - "x-ms-client-request-id": [ "d7deb2d5-3b45-4e51-80b3-10d3f68f8e9b" ], + "x-ms-unique-id": [ "677" ], + "x-ms-client-request-id": [ "ddcd1edf-a868-4fb2-bf00-ea40d269d80b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -735,31 +735,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41ec0bc3-ecee-40c3-b179-d14543445a0d" ], + "x-ms-request-id": [ "816b62f6-0c3a-487e-b825-0d635001b5f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "21b2ee48-0a1f-4f2c-91dd-29a4c7717cf1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191734Z:21b2ee48-0a1f-4f2c-91dd-29a4c7717cf1" ], + "x-ms-correlation-request-id": [ "ce8fca44-a823-46c7-be1d-393e1441a8b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004602Z:ce8fca44-a823-46c7-be1d-393e1441a8b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A291FB316164E1F907ECA88FDA266AF Ref B: MWH011020807031 Ref C: 2025-11-17T19:17:33Z" ], - "Date": [ "Mon, 17 Nov 2025 19:17:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E710C5F07EA470CA2A0D6E6F818C9B7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1817" ], + "Content-Length": [ "1824" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 7,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP2\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -775,42 +775,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2770a477-ddfa-42f7-a25d-0e9eab836245" ], + "x-ms-request-id": [ "e98e7c01-d061-426b-900f-cd7159cac853" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/268140a7-a662-41bd-a3d6-415a44723194" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0dbdd69b-c050-41a2-9d69-1240fb31e274" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "42cd0615-d3a7-4242-b237-7053ceb761bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191736Z:42cd0615-d3a7-4242-b237-7053ceb761bf" ], + "x-ms-correlation-request-id": [ "15f169b2-0d45-4038-a0c8-6ab0c8b56cdc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004603Z:15f169b2-0d45-4038-a0c8-6ab0c8b56cdc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A93D68C98FDD49949881DF73E06B41B0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:17:34Z" ], - "Date": [ "Mon, 17 Nov 2025 19:17:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 370A714DE9A64103BD0C90EE652F27AD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:02Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1900" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "999" ], - "x-ms-client-request-id": [ "2d5a20eb-a189-4784-b9f2-ca2900369dc1" ], + "x-ms-unique-id": [ "679" ], + "x-ms-client-request-id": [ "7cac1af0-fc87-4af7-afd2-9fdda86ab482" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -821,41 +821,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "219a21b3-5d68-40e6-bfe8-864febbe83c8" ], + "x-ms-request-id": [ "f124a4b0-0187-4f0b-8b1c-02993cdec6ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc0a8e1b-1e96-410e-92d3-2ab268500996" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191806Z:dc0a8e1b-1e96-410e-92d3-2ab268500996" ], + "x-ms-correlation-request-id": [ "cdbadcb2-55ae-4520-976d-d8d379d73e75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004634Z:cdbadcb2-55ae-4520-976d-d8d379d73e75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F26BDDA25BEB467EBF64B67356087B8F Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:06Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 16F01E24DDE34B10BA99B4DD649902E5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1815" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+8": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1000" ], - "x-ms-client-request-id": [ "2d5a20eb-a189-4784-b9f2-ca2900369dc1" ], + "x-ms-unique-id": [ "680" ], + "x-ms-client-request-id": [ "7cac1af0-fc87-4af7-afd2-9fdda86ab482" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -866,40 +866,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d05fb616-b160-4631-8a2e-7bcda5312a99" ], + "x-ms-request-id": [ "037df80d-01c1-4639-a8c4-873083f1418c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f3114e8c-7d3e-4814-9104-0e5fa06bf37b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191806Z:f3114e8c-7d3e-4814-9104-0e5fa06bf37b" ], + "x-ms-correlation-request-id": [ "58acfa29-58c8-4e74-9240-81fe52cf075e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004634Z:58acfa29-58c8-4e74-9240-81fe52cf075e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E5C13431F5340E88F611A58EAEB0594 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:06Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3BC8FB18A5994CE69D4D58514233712A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1815" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+9": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1001" ], - "x-ms-client-request-id": [ "6232f6f3-d56c-4e1b-b29d-de7d25d75cf6" ], + "x-ms-unique-id": [ "681" ], + "x-ms-client-request-id": [ "80772101-9cc6-4af8-919f-02df1e745c45" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -911,40 +911,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c93588c2-1850-4c54-b961-5e1f042fb774" ], + "x-ms-request-id": [ "442343e6-3be0-4d61-8d0f-7e4062f6a716" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "265fce1a-0059-4587-ba2a-f6c2f517e483" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191806Z:265fce1a-0059-4587-ba2a-f6c2f517e483" ], + "x-ms-correlation-request-id": [ "74a45a7c-db49-4582-aaec-926679656784" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004634Z:74a45a7c-db49-4582-aaec-926679656784" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD019F3EFC62499FA6CBAD2AEB17573D Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:06Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6F5D971DDB24DD694D7C6C81C76BB16 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1815" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60835,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60835\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:17:01.21\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+10": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1002" ], - "x-ms-client-request-id": [ "afea4482-e5d6-47a4-8555-cc71a1b687f4" ], + "x-ms-unique-id": [ "682" ], + "x-ms-client-request-id": [ "be2887f0-9389-43a1-b935-60ed38928c06" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -956,18 +956,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b292191f-1da3-4fb2-902b-00b80bfa6123" ], + "x-ms-request-id": [ "5bc22089-ef53-4334-8f48-68d01fcc79a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c2b5b6a-6d14-4332-bf12-99e5450a5eae" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "47edb585-2f0b-4436-8a2c-c91268c5fe7e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191817Z:47edb585-2f0b-4436-8a2c-c91268c5fe7e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/871f7aa2-a8bf-4a4b-b7ef-6593170809c4" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "b0539855-97e4-4613-ac45-72f66feb1b76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004639Z:b0539855-97e4-4613-ac45-72f66feb1b76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 910844EC076D417AB2D4004699E23943 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:06Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABC94B3BA57D4AB59EB6FD13EC5AD87A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -977,19 +977,19 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+11": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1003" ], - "x-ms-client-request-id": [ "aa9fc336-53e8-4397-8e56-7ea28c93c0c6" ], + "x-ms-unique-id": [ "683" ], + "x-ms-client-request-id": [ "c5cbb1ac-6db5-4ed6-8bf3-6c0a1f948d47" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1001,37 +1001,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "e50d2d93-9886-446d-8ff3-e5c78c3e473e" ], - "x-ms-correlation-request-id": [ "e50d2d93-9886-446d-8ff3-e5c78c3e473e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191817Z:e50d2d93-9886-446d-8ff3-e5c78c3e473e" ], + "x-ms-request-id": [ "e991e52b-b74c-4b09-9bdb-a6da95b86ed6" ], + "x-ms-correlation-request-id": [ "e991e52b-b74c-4b09-9bdb-a6da95b86ed6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004639Z:e991e52b-b74c-4b09-9bdb-a6da95b86ed6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E708E0D57384480785DE37B06C5375A4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2988263B07F746BC8394E0C22DCA51B5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-z421i6\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+12": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1004" ], - "x-ms-client-request-id": [ "0ee3dcd7-9748-404b-9377-76043c957f60" ], + "x-ms-unique-id": [ "684" ], + "x-ms-client-request-id": [ "cb2f37b0-9335-4ac7-80c8-c1f900c7d9e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1043,21 +1043,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "5e3e617b-4dae-4723-a69d-57795d96b7af" ], - "x-ms-correlation-request-id": [ "5e3e617b-4dae-4723-a69d-57795d96b7af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191817Z:5e3e617b-4dae-4723-a69d-57795d96b7af" ], + "x-ms-request-id": [ "dc664376-c7ad-45e9-9b05-6340c00f4cbe" ], + "x-ms-correlation-request-id": [ "dc664376-c7ad-45e9-9b05-6340c00f4cbe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004640Z:dc664376-c7ad-45e9-9b05-6340c00f4cbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91CAF66517514E15AEF0B5C1445670C0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C46812F72B7F49E29E97597EB7D5858A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-z421i6\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1068,12 +1068,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1005" ], - "x-ms-client-request-id": [ "f7fd2cc2-7b15-4323-b5fb-65c3edd11383" ], + "x-ms-unique-id": [ "685" ], + "x-ms-client-request-id": [ "ae7407cb-2a28-4ca3-9723-ec2bad2d8ec9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1085,33 +1085,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ce6e360-cfcc-488f-b24d-93b7852f7bf4" ], + "x-ms-request-id": [ "940b58bc-e80d-4769-ac65-8ec326ba4f5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/326deca8-2af7-4920-b466-ca4859afdcfd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/680db81e-6195-43c9-a267-3fdcba3e41b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "56fbbb9a-dd0a-450b-a930-b87b63e0ad6a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191817Z:56fbbb9a-dd0a-450b-a930-b87b63e0ad6a" ], + "x-ms-correlation-request-id": [ "9fd84ca0-95a4-4d81-932e-13ebbaecea24" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004640Z:9fd84ca0-95a4-4d81-932e-13ebbaecea24" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F98C2838C3434DD38385BBDCEB1FE47F Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7F369A747D34E759F13F3C1B96FFA8F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", - "Content": "{\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "Content": "{\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1125,44 +1125,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F6EF453355\"" ], + "ETag": [ "1DCBCBA033BDF6B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1bdb979c-7c69-4174-986b-4a5c9306418e" ], + "x-ms-request-id": [ "a86e75f2-6c8d-407c-9e20-273912e9e12d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0967950f-6b92-4d4c-b09a-a2d9da1f90bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89557a40-a690-4990-b414-ad112680bffa" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c036541d-fd82-43b9-82f9-7b3709b973cf" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T191822Z:c036541d-fd82-43b9-82f9-7b3709b973cf" ], + "x-ms-correlation-request-id": [ "33662609-44a1-4fc5-9282-8995fd394cf3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004642Z:33662609-44a1-4fc5-9282-8995fd394cf3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E147EED5C0B4712B287E70B443B7EE9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFDEA56711E64E2FB9E5903A8C6A3948 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:46:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2013" ], + "Content-Length": [ "2015" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1007" ], - "x-ms-client-request-id": [ "46a8d44b-4bb2-46ba-9f56-d900f9584ad9" ], + "x-ms-unique-id": [ "687" ], + "x-ms-client-request-id": [ "e56af594-f89a-4507-8459-860f8fc775f0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -1173,41 +1173,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42c6ae8e-9de6-4ca1-b221-e0b4fabbbe18" ], + "x-ms-request-id": [ "ba96c602-20b2-4ae9-b89d-ab1e7b90a172" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bcb07c6b-5b4b-4f97-be39-151358a60e40" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191852Z:bcb07c6b-5b4b-4f97-be39-151358a60e40" ], + "x-ms-correlation-request-id": [ "13751dfa-8e49-41ae-9489-364fd560d218" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:13751dfa-8e49-41ae-9489-364fd560d218" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FFA52E98691434FA5A54E9008A7BF70 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C62C3D39FFF41C3A7CE92875C882E3B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1924" ], + "Content-Length": [ "1926" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1008" ], - "x-ms-client-request-id": [ "46a8d44b-4bb2-46ba-9f56-d900f9584ad9" ], + "x-ms-unique-id": [ "688" ], + "x-ms-client-request-id": [ "e56af594-f89a-4507-8459-860f8fc775f0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -1218,40 +1218,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "717c5206-36d1-4128-bbb5-d82b4083662b" ], + "x-ms-request-id": [ "93f81795-fe2f-427a-a534-457b8d7cc544" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2f3d5ad6-0f09-4122-8d78-4ec9d64a7165" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191852Z:2f3d5ad6-0f09-4122-8d78-4ec9d64a7165" ], + "x-ms-correlation-request-id": [ "518acde5-8842-498c-8948-3e3c0748405b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:518acde5-8842-498c-8948-3e3c0748405b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13F94E8B5AD146C0B980F21B2B43B67E Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:52Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA2672EF675E46E0B8FDA26927135A29 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1924" ], + "Content-Length": [ "1926" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1009" ], - "x-ms-client-request-id": [ "8349b36d-2ad6-4e48-833a-bf40ac40baf1" ], + "x-ms-unique-id": [ "689" ], + "x-ms-client-request-id": [ "e5b098f1-6a45-461d-b1e1-89e981df9f92" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1263,40 +1263,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b94bd83-7f50-4ea5-8dfb-7b301f96e1e1" ], + "x-ms-request-id": [ "0e301241-2caf-4bd6-9e3f-229d0d230e6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "344170fd-efc2-4b3d-92b9-a2a9c3dfad59" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191854Z:344170fd-efc2-4b3d-92b9-a2a9c3dfad59" ], + "x-ms-correlation-request-id": [ "01c7ee12-fc15-42fd-8338-71e4bc88642d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:01c7ee12-fc15-42fd-8338-71e4bc88642d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 733DC32D3D304B408EBB9FE8AEB52CB1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:53Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F58F79B40BE4D6391F07F54AE30A59C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1924" ], + "Content-Length": [ "1926" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1010" ], - "x-ms-client-request-id": [ "4cba2f94-13b0-4621-a348-7eec2f3a22d3" ], + "x-ms-unique-id": [ "690" ], + "x-ms-client-request-id": [ "a78fd997-4f2d-4c9e-a8cb-bd09b7e14c04" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1308,31 +1308,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ed5da51-f3da-4168-93b1-c07f1909fd1e" ], + "x-ms-request-id": [ "135507ba-22e5-47a1-8f29-429eeee68bb5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db85dda7-2995-4bde-930d-77115973587c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191854Z:db85dda7-2995-4bde-930d-77115973587c" ], + "x-ms-correlation-request-id": [ "2826431c-4b78-4ae5-8f59-0e5a5d1c52d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:2826431c-4b78-4ae5-8f59-0e5a5d1c52d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF05CB7412C74CFB8115800BBAFF083D Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:54Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F61C07102CE74CD490E2769AACD62AF6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1924" ], + "Content-Length": [ "1926" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP2\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1348,42 +1348,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4bf7c8b3-840c-4c75-8999-7e9709c545db" ], + "x-ms-request-id": [ "ad1a964e-41a0-49d3-b1e4-21215979bc2d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ba519980-2024-47ee-96d0-99b566cd81a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df7e58ba-e49c-471f-8ca3-7438af114e13" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "6d3d5567-71eb-43c3-91f2-f48205ca8445" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191855Z:6d3d5567-71eb-43c3-91f2-f48205ca8445" ], + "x-ms-correlation-request-id": [ "8eac33f5-d70e-4728-b28d-1baa6aab3873" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004715Z:8eac33f5-d70e-4728-b28d-1baa6aab3873" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0871F410858B4422AEEC5C7203518354 Ref B: MWH011020807031 Ref C: 2025-11-17T19:18:54Z" ], - "Date": [ "Mon, 17 Nov 2025 19:18:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53DDEA29106A4E65998B43F3DDF8DF9B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2007" ], + "Content-Length": [ "2009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+8": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1012" ], - "x-ms-client-request-id": [ "54f09a5b-3db1-4a81-86c5-b878975db7f7" ], + "x-ms-unique-id": [ "692" ], + "x-ms-client-request-id": [ "36771d7b-6bfc-4d74-8c51-6988156aaacc" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -1394,41 +1394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eccb59d2-2c1e-42c4-8b8e-c4bacb846c6c" ], + "x-ms-request-id": [ "c68474ae-79dd-42a5-84ac-50907eae1d8c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37d4853e-45cf-4923-b264-720472629553" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191926Z:37d4853e-45cf-4923-b264-720472629553" ], + "x-ms-correlation-request-id": [ "33c5ed0b-ecc6-4be0-8436-fd891ab33665" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004746Z:33c5ed0b-ecc6-4be0-8436-fd891ab33665" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A29EB769FF52422AA1AA5BB8F1E3C0CC Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C65688CB2A94738A84285B8A1862AC8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1922" ], + "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+9": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1013" ], - "x-ms-client-request-id": [ "54f09a5b-3db1-4a81-86c5-b878975db7f7" ], + "x-ms-unique-id": [ "693" ], + "x-ms-client-request-id": [ "36771d7b-6bfc-4d74-8c51-6988156aaacc" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -1439,40 +1439,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5729ed4-5e29-45f2-b1fb-d5d5df88fc11" ], + "x-ms-request-id": [ "1c01bccb-30e0-41f7-ab15-a41fc9a7f9d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a50343a6-b14f-41e3-b792-fc2ac1948c6d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191926Z:a50343a6-b14f-41e3-b792-fc2ac1948c6d" ], + "x-ms-correlation-request-id": [ "9afc3acb-970f-4c04-ac5c-6dfb8e35d50a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004746Z:9afc3acb-970f-4c04-ac5c-6dfb8e35d50a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D092D11168B248A08E757B8866AE3337 Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AAB4C96E0AED41F1A85F7BE321970AAF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1922" ], + "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+10": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1014" ], - "x-ms-client-request-id": [ "11222676-636d-459a-86a7-7a7bec5f6b3b" ], + "x-ms-unique-id": [ "694" ], + "x-ms-client-request-id": [ "5e3a35dd-e825-4fc5-a0d2-6a46a14457ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1484,40 +1484,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "453172a6-0890-4f91-b191-d1decc2a2d00" ], + "x-ms-request-id": [ "4347fe90-c483-4897-9626-16aa7e4abf63" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a86ef0a3-4457-404d-8e14-27ccc892d29a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191927Z:a86ef0a3-4457-404d-8e14-27ccc892d29a" ], + "x-ms-correlation-request-id": [ "06a88881-16c4-4e84-bf97-046d0ed5351c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004747Z:06a88881-16c4-4e84-bf97-046d0ed5351c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F16F739A83DF457E806472D7B6CD98EC Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:27Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F99AF7990FFC4E70AD19304D3DA85235 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1922" ], + "Content-Length": [ "1924" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6\",\"name\":\"Func-Windows-Premium-New-z421i6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":60836,\"name\":\"Func-Windows-Premium-New-z421i6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60836\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:18:19.2833333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+11": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+11": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1015" ], - "x-ms-client-request-id": [ "32d4139b-7a7c-4eae-b04b-bd62cc983f1a" ], + "x-ms-unique-id": [ "695" ], + "x-ms-client-request-id": [ "df255a0b-a03f-4e6f-9284-5e03f3433ddb" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1529,18 +1529,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5154e07-b2b9-4d95-ad16-77dbc502d4fc" ], + "x-ms-request-id": [ "e417f103-f871-462c-967d-fb1ff175ca69" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0feb1c74-cfe9-4b7a-9eb2-dac956c2030b" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "4ef28275-c93d-444b-a77b-02f2ec70d33d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191937Z:4ef28275-c93d-444b-a77b-02f2ec70d33d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db10ba08-178a-418d-afae-d254ba11bdeb" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "6f4e6d4e-e60d-410e-8c87-da8ecb5d720c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004753Z:6f4e6d4e-e60d-410e-8c87-da8ecb5d720c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA3A2E30EBE343E3800232FC52B7CBEB Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:27Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A6AD55734DD4BB8AD0AC9AA9ED882CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:52 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1550,19 +1550,19 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+12": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1016" ], - "x-ms-client-request-id": [ "8b096d82-fbee-41e1-869a-1b722ee617e5" ], + "x-ms-unique-id": [ "696" ], + "x-ms-client-request-id": [ "131b2c53-1a1b-488b-ba03-1bcc3e16a5a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1574,37 +1574,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "e5867e0c-ab82-4de2-b937-37394f9e9f54" ], - "x-ms-correlation-request-id": [ "e5867e0c-ab82-4de2-b937-37394f9e9f54" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191937Z:e5867e0c-ab82-4de2-b937-37394f9e9f54" ], + "x-ms-request-id": [ "f81b74f3-9faf-45c4-a280-875127af249f" ], + "x-ms-correlation-request-id": [ "f81b74f3-9faf-45c4-a280-875127af249f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004753Z:f81b74f3-9faf-45c4-a280-875127af249f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 36EDD50FD2124A3F8C57F98DE51B8492 Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48B0AE874F084A8D8F1253E91D4360A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-z421i6\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01+13": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-z421i6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1017" ], - "x-ms-client-request-id": [ "52d4ec95-96d3-46a6-b98b-0cfa0988a692" ], + "x-ms-unique-id": [ "697" ], + "x-ms-client-request-id": [ "6ab5a1b1-a81a-47f1-bed7-cfa1b2f9d900" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1616,21 +1616,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "0b36f49e-bc0c-4dac-bd11-cff9b3b362cf" ], - "x-ms-correlation-request-id": [ "0b36f49e-bc0c-4dac-bd11-cff9b3b362cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191937Z:0b36f49e-bc0c-4dac-bd11-cff9b3b362cf" ], + "x-ms-request-id": [ "119b4664-e497-43be-a05e-d5aaf191c693" ], + "x-ms-correlation-request-id": [ "119b4664-e497-43be-a05e-d5aaf191c693" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004753Z:119b4664-e497-43be-a05e-d5aaf191c693" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81986ADA4E754EDDB79714FA92D53C25 Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:37Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A127E9DE24043009FFD4EDE836DD38F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-z421i6\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json index c0c22c0a6da6..1e1b1bf0be02 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1018" ], - "x-ms-client-request-id": [ "ee8deeb8-b3cb-4316-98d1-b84a83bf621c" ], + "x-ms-unique-id": [ "698" ], + "x-ms-client-request-id": [ "c82f5f74-73af-4aeb-a3ed-3ac58347aaf9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,32 +23,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf6aca4d-ebb4-463b-8b04-7c63dbe381d6" ], + "x-ms-request-id": [ "7cbc2f2e-a1e9-439f-ac56-6b15deeaadbb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/374619af-c9a8-42de-bb6b-07a8010fa853" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9e08aa71-3890-43f8-8ebc-562371718aa6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "469e68c1-048d-4214-b1d0-f0e06d0a8cf4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T191938Z:469e68c1-048d-4214-b1d0-f0e06d0a8cf4" ], + "x-ms-correlation-request-id": [ "90cd174c-db25-4364-9ced-8934d66b2218" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004753Z:90cd174c-db25-4364-9ced-8934d66b2218" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 311108B27D3B4B04BE05F53D9B5FB1C9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:38Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B47CB8DA31EE48C2A9E1C9DAF2531CE3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "36863" ], + "Content-Length": [ "38055" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;FCZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioinw-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+2": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -63,44 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F71F31C68B\"" ], + "ETag": [ "1DCBCBA2F610A60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c492b98c-b99c-493f-a309-137a52cecf96" ], + "x-ms-request-id": [ "b1b99b4e-3821-4a05-8548-6a082ee420f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/957c8a37-ffcc-47de-9d36-19b26a569204" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83fcc397-2a81-4127-9128-598d32ac422e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c5d5cab8-3b61-470e-8b9c-3ff3277f40b8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T191942Z:c5d5cab8-3b61-470e-8b9c-3ff3277f40b8" ], + "x-ms-correlation-request-id": [ "b06d7da3-e3ba-4e41-9687-1d9bec5dc922" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004757Z:b06d7da3-e3ba-4e41-9687-1d9bec5dc922" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81444832A1324C3C9E56743615EC5E15 Ref B: MWH011020807031 Ref C: 2025-11-17T19:19:38Z" ], - "Date": [ "Mon, 17 Nov 2025 19:19:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E106CE1936A34B29BA86910A4D2DE4AA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:47:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1909" ], + "Content-Length": [ "1910" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":60837,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T19:19:39.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+3": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1020" ], - "x-ms-client-request-id": [ "c9617495-8251-4440-ae71-b777c1a7726b" ], + "x-ms-unique-id": [ "700" ], + "x-ms-client-request-id": [ "c956f8b5-ca45-46f2-bb1c-b38826030a6f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8c47eb6-4455-48ab-b27c-6e60aa3f4bc3" ], + "x-ms-request-id": [ "5db509cc-3b16-4c6c-87f6-e467f7794a42" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ab85a016-5a54-473d-bed5-1d7a6c711937" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T192012Z:ab85a016-5a54-473d-bed5-1d7a6c711937" ], + "x-ms-correlation-request-id": [ "632a9c2a-9752-4fdf-9c45-e46c0b29a792" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004827Z:632a9c2a-9752-4fdf-9c45-e46c0b29a792" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A40B0106C16544E7A5F8C0A8D4AD9520 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00F46F69AE8B488FB2DF0887CBF2FFDC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60837,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:19:39.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+4": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1021" ], - "x-ms-client-request-id": [ "c9617495-8251-4440-ae71-b777c1a7726b" ], + "x-ms-unique-id": [ "701" ], + "x-ms-client-request-id": [ "c956f8b5-ca45-46f2-bb1c-b38826030a6f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -156,24 +156,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d6b0218-18e5-4d3a-af06-ac57a7e167eb" ], + "x-ms-request-id": [ "0e8e624c-7778-4b51-aeaf-1240f9dc9b20" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c37f7b64-3fde-42fc-bb9f-0412b05cb671" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192012Z:c37f7b64-3fde-42fc-bb9f-0412b05cb671" ], + "x-ms-correlation-request-id": [ "aa7b78f0-7e1a-495f-8109-848b70cf0132" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004828Z:aa7b78f0-7e1a-495f-8109-848b70cf0132" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D75CC51F80624160B57754E5F6FFCD3F Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 639FF594C4B049449566BA32A4A9FD91 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60837,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:19:39.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -181,7 +181,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-lgj9k87dn6\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -196,18 +196,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aea33f6b-50ad-493d-953b-fa2d8ef5e9d5" ], + "x-ms-request-id": [ "2602b58e-908a-486e-8e54-a1fb6e7767bf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e683db72-e080-4898-abc1-535708877f5e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c438d9b9-2a3b-47cd-b3c9-ee7bad82985e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93587db7-29c3-46d0-9507-06abe8485fa7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192013Z:93587db7-29c3-46d0-9507-06abe8485fa7" ], + "x-ms-correlation-request-id": [ "92f831aa-2a46-4c8c-8abd-a06830734938" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004828Z:92f831aa-2a46-4c8c-8abd-a06830734938" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E78C865D1F1947779352220CABC0AF8D Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F528ABD8A36B488EB304823E8E838454 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -225,12 +225,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1023" ], - "x-ms-client-request-id": [ "43b4c34c-ee11-47a1-b4f0-042e0a6311e8" ], + "x-ms-unique-id": [ "703" ], + "x-ms-client-request-id": [ "484ed214-1259-4733-9427-093ea1073a45" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -241,40 +241,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "08210cd6-d780-4dd0-bb1a-77be5609adfc", "ab7fdb53-dffc-4aa8-b038-a970f7a80460" ], + "x-ms-original-request-ids": [ "d2d0f8bc-8ee0-46ff-acdd-ac884bb4b902", "2bed07f5-872d-47b6-837f-3bcec640c8d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "944d7e73-50da-46ff-8378-71be0685b5ec" ], - "x-ms-correlation-request-id": [ "944d7e73-50da-46ff-8378-71be0685b5ec" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T192014Z:944d7e73-50da-46ff-8378-71be0685b5ec" ], + "x-ms-request-id": [ "1c9dc1ae-0359-4fd4-9596-0fd6587acf7e" ], + "x-ms-correlation-request-id": [ "1c9dc1ae-0359-4fd4-9596-0fd6587acf7e" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004829Z:1c9dc1ae-0359-4fd4-9596-0fd6587acf7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB9055D48DEF48139F87FFF18AAC7704 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:13Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 685C0D9C179D41ABB89AF14BE97DB4D3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "17140" ], + "Content-Length": [ "17263" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511640,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511636,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511737,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511677,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511732,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511744,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511629,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511774,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":6511626,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1299630,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046240,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1024" ], - "x-ms-client-request-id": [ "f7451c3b-0197-42f4-aa24-cec125400bc7" ], + "x-ms-unique-id": [ "704" ], + "x-ms-client-request-id": [ "e814fb50-efcb-4964-8697-ac11acc303df" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -286,40 +286,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "00ee171f-4d74-4cad-bb1a-9dd276b111e0" ], + "x-ms-request-id": [ "37a72134-7ac5-4a31-bc2e-707fb97bec57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bfac1ce5-c83c-4fca-930a-75b3d2dbe171" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T192014Z:bfac1ce5-c83c-4fca-930a-75b3d2dbe171" ], + "x-ms-correlation-request-id": [ "1039390a-a073-4695-b74a-535119cb9724" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:1039390a-a073-4695-b74a-535119cb9724" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD5247CEF796464E95EF062DDEF51084 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 642435478B734E1EB4C8C7522D799D59 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1812" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":68439,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_68439\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:13:26.72\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1025" ], - "x-ms-client-request-id": [ "05bea3d6-4a1f-43e5-9f89-0f8b8076f679" ], + "x-ms-unique-id": [ "705" ], + "x-ms-client-request-id": [ "7e7d15d2-e617-4e40-84b2-490701851887" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -331,40 +331,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a056be2-b5ba-40d7-9192-5f65ceee6e66" ], + "x-ms-request-id": [ "f2d9d68a-7d0e-4f06-bd18-850f1294843a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fb19db42-94e3-4e50-95be-4c1cbf6b6d8c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192014Z:fb19db42-94e3-4e50-95be-4c1cbf6b6d8c" ], + "x-ms-correlation-request-id": [ "949e62b0-1a8d-475c-8e79-06a82e0ad388" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:949e62b0-1a8d-475c-8e79-06a82e0ad388" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A1F954BAA9542308594881566AF7D44 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C2EAF7493B049579A444BEF92487F37 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1782" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66009,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66009\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:12:02.8233333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01+9": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1026" ], - "x-ms-client-request-id": [ "94b7fb0c-28c3-44ea-9ae8-20fb5d183ba1" ], + "x-ms-unique-id": [ "706" ], + "x-ms-client-request-id": [ "668ea38c-6c0d-49b6-9d71-1a2044c45be7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -376,40 +376,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0e9e256-ac27-4fd0-af0b-c20010a99af7" ], + "x-ms-request-id": [ "71c2eb33-4c1a-4a83-a6f2-17d186bee9a4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b275d517-2029-44cf-a508-be590cfce202" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192014Z:b275d517-2029-44cf-a508-be590cfce202" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "015ff9bf-567f-49ea-80fa-3a7db0660a05" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:015ff9bf-567f-49ea-80fa-3a7db0660a05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0DB2304790A84412AE0690654EE2B4A4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 32133D76F4C84487AA2FD3E1C311E23B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1740" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/Default1fp\",\"name\":\"Default1fp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":66015,\"name\":\"Default1fp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-331_66015\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:03:37.43\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01+10": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1027" ], - "x-ms-client-request-id": [ "a4f0e4ba-af4e-4665-8bb0-6020f9d74486" ], + "x-ms-unique-id": [ "707" ], + "x-ms-client-request-id": [ "6351b652-f837-4479-8a67-eada81a1ba98" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -421,40 +421,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee1415cf-020f-4ae2-82aa-db674b0ec898" ], + "x-ms-request-id": [ "85775fa2-4967-4b4f-a1d2-b63f32670617" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f457dcf2-7428-4657-9b8a-d4b5b12ec914" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192014Z:f457dcf2-7428-4657-9b8a-d4b5b12ec914" ], + "x-ms-correlation-request-id": [ "7be6aa05-2526-4d0d-a706-33e366ca61e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:7be6aa05-2526-4d0d-a706-33e366ca61e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 096D34B00CA343A685EE30C6B28DFC11 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B28D2FB6DE641CA90FA1F9E42F41332 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1746" ], + "Content-Length": [ "1754" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Default1ji\",\"name\":\"Default1ji\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60829,\"name\":\"Default1ji\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":4,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60829\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:31:25.2033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01+11": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1028" ], - "x-ms-client-request-id": [ "35fc093f-401e-42fe-b986-a924803b60af" ], + "x-ms-unique-id": [ "708" ], + "x-ms-client-request-id": [ "88d78a8a-8c5b-4fdf-874e-25c471d18051" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -466,40 +466,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ef58320-985f-4f18-869c-1b73fea62fc6" ], + "x-ms-request-id": [ "3db4cedf-e3df-4d1e-ad8f-fe0b7358d54f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6fa6d27f-8d61-4e31-aa1a-fe0d1d3fa0e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192015Z:6fa6d27f-8d61-4e31-aa1a-fe0d1d3fa0e4" ], + "x-ms-correlation-request-id": [ "f9be34c2-c398-4281-bc09-14ee31bbe5d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:f9be34c2-c398-4281-bc09-14ee31bbe5d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A7F83880D17408699EF36FE50F40F85 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B556C29B38AC431CA0541F1D04F45ABA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1743" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Default1me\",\"name\":\"Default1me\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":92318,\"name\":\"Default1me\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-223_92318\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:00:23.2133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":7,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01+12": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1029" ], - "x-ms-client-request-id": [ "b4b4b754-4f2d-4fd1-8f40-2e3301cd91f9" ], + "x-ms-unique-id": [ "709" ], + "x-ms-client-request-id": [ "0a40ec88-0612-4fea-81ff-76ab91cf45ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -511,40 +511,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69f65267-c376-4254-b689-bf8a22b17629" ], + "x-ms-request-id": [ "e9260728-d6e6-4c6a-bf93-646323cb5be3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93b43f70-bb9f-49f3-ae80-d8fec8d8b116" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192015Z:93b43f70-bb9f-49f3-ae80-d8fec8d8b116" ], + "x-ms-correlation-request-id": [ "9ec121f1-90e7-4c75-9b86-9a7b56f644ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:9ec121f1-90e7-4c75-9b86-9a7b56f644ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83AE0B6B88724FDBA59FBEF238503C31 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2246F36338324B13B9430DEB9F42B79C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1747" ], + "Content-Length": [ "1753" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/Default1zp\",\"name\":\"Default1zp\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":81026,\"name\":\"Default1zp\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-317_81026\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:07:41.74\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01+13": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1030" ], - "x-ms-client-request-id": [ "1250e8e2-711c-4e56-9aec-a4bc53deb58f" ], + "x-ms-unique-id": [ "710" ], + "x-ms-client-request-id": [ "0062a939-7d22-4bd0-b8b5-602627c999b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -556,40 +556,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9dcac046-eeb6-4a10-8e2b-da64c1379c6c" ], + "x-ms-request-id": [ "ea1a69ce-4fd8-44c2-86be-ad80ac604732" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "dbcb85b9-dc60-4feb-8ed4-dbaed7f24116" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192015Z:dbcb85b9-dc60-4feb-8ed4-dbaed7f24116" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9b76d0bb-a16a-47ca-9889-5b3daa026ffa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:9b76d0bb-a16a-47ca-9889-5b3daa026ffa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69AF4AE871D44294B3EADFA03095A56F Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D7FA28BE11944BAB7AB6E0127507B99 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"name\":\"Functions-Linux-Premium-io68qa\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":50697,\"name\":\"Functions-Linux-Premium-io68qa\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-123_50697\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:56.3933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+14": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1031" ], - "x-ms-client-request-id": [ "7e383a41-729f-4317-bdce-76e681c27350" ], + "x-ms-unique-id": [ "711" ], + "x-ms-client-request-id": [ "d23c17a0-b7e7-4396-881f-9c2fa1a21529" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -601,40 +601,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1996f830-456b-4bd5-8d90-9bf2edcbcef9" ], + "x-ms-request-id": [ "4636a200-5cf4-467d-8008-aa73ab13d14c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "85cd9cb0-7f14-4873-9fc3-273171e9bd32" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192015Z:85cd9cb0-7f14-4873-9fc3-273171e9bd32" ], + "x-ms-correlation-request-id": [ "4a4d822d-cf73-4c37-b34d-cbd8ff37c69f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:4a4d822d-cf73-4c37-b34d-cbd8ff37c69f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BEE34C56EE7546CD81A986DB7DCFD2C5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC6A287786764C289327446A1AA287F7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60837,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:19:39.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01+15": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1032" ], - "x-ms-client-request-id": [ "6a73046f-ab2a-468e-adf2-9e5aa04ecc48" ], + "x-ms-unique-id": [ "712" ], + "x-ms-client-request-id": [ "83341b85-f21f-46a2-8583-cbd4dc59ce75" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -646,40 +646,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48cadfb1-dd3d-41c0-bb9e-42fd794dd101" ], + "x-ms-request-id": [ "2c2d6df7-7279-435b-8e5f-d1b791f2de2d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "52820599-390b-4eab-9d69-c711d421a9ae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192015Z:52820599-390b-4eab-9d69-c711d421a9ae" ], + "x-ms-correlation-request-id": [ "3427c3ab-23f2-4951-ac15-b2b00f893b61" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:3427c3ab-23f2-4951-ac15-b2b00f893b61" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60714465B01849B7A1E9B407B0653A2D Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C97626FBEB7040B99D7A5DEABF6A9137 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"name\":\"Functions-Windows-Premium-arx9yi\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60827,\"name\":\"Functions-Windows-Premium-arx9yi\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60827\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:08:19.03\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01+16": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1033" ], - "x-ms-client-request-id": [ "c396115c-c02e-4385-a521-e3870f893145" ], + "x-ms-unique-id": [ "713" ], + "x-ms-client-request-id": [ "c8cde0f4-8b9d-439b-bce5-d12189495088" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -691,24 +691,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c8b6e95-ec1c-48cc-b001-e66d4bdcba85" ], + "x-ms-request-id": [ "fb735a25-28b7-43ff-ac94-7d36ddfe36f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "51099849-3241-41b9-88cc-cea0677c1f9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192016Z:51099849-3241-41b9-88cc-cea0677c1f9f" ], + "x-ms-correlation-request-id": [ "f35efad5-b0e4-445e-9d3b-05c071f07c1b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260326T004831Z:f35efad5-b0e4-445e-9d3b-05c071f07c1b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A4CDC78A40A466092A2B034488027DC Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:15Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78F835B6D9AC4B6DB4556FC9F3387013 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1697" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/Default1ow\",\"name\":\"Default1ow\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1147,\"name\":\"Default1ow\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-w8x9-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_1147\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:33:14.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -719,12 +719,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1034" ], - "x-ms-client-request-id": [ "34eec2dc-8d78-4a57-a1bc-53de8b9bbe88" ], + "x-ms-unique-id": [ "714" ], + "x-ms-client-request-id": [ "b194dddb-b92f-44e7-ba00-843428bdb2ff" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -735,40 +735,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "379d787a-f28d-4eea-bfe7-c220d6756f41", "536fd0f9-2928-4798-8d10-e90d1affb347", "51f52370-62e3-468a-812c-b086bb250536" ], + "x-ms-original-request-ids": [ "636d99a1-911a-4422-b2a8-5c848d231e9e", "14011ea2-88e6-4016-a614-a36f25b7e2e4", "f2ea0b5d-3792-4cec-a283-f0fcbc975b74" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "54e3aa07-480d-45a6-97ae-0ff2fba08c2a" ], - "x-ms-correlation-request-id": [ "54e3aa07-480d-45a6-97ae-0ff2fba08c2a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T192017Z:54e3aa07-480d-45a6-97ae-0ff2fba08c2a" ], + "x-ms-request-id": [ "d27d7f8f-1cae-4960-b127-fd6037e7b44e" ], + "x-ms-correlation-request-id": [ "d27d7f8f-1cae-4960-b127-fd6037e7b44e" ], + "x-ms-routing-request-id": [ "WESTUS2:20260326T004832Z:d27d7f8f-1cae-4960-b127-fd6037e7b44e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F11337F931634D8B92A8C33193D33407 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 685304E0E465435984BD9B873AFC181A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01+18": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1035" ], - "x-ms-client-request-id": [ "77b3e251-6682-489d-895f-f75b47f84781" ], + "x-ms-unique-id": [ "715" ], + "x-ms-client-request-id": [ "26d0329d-049a-424a-aa75-fcc3a03176c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -779,16 +779,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9d68c5b1-3437-4dbc-bef8-341be19740be" ], + "x-ms-request-id": [ "7519150b-e6ee-4d29-8c3d-818868a2d909" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c8f3cb61-9348-4e1e-94ba-b14d9c2289a4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/281e723e-10d5-47e1-8a06-5d3bbe659410" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a7f15db2-ab31-44e8-bf3f-4f29addaccb7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T192017Z:a7f15db2-ab31-44e8-bf3f-4f29addaccb7" ], + "x-ms-correlation-request-id": [ "55a50f96-1fc0-499e-8c78-dc64b1825c37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004832Z:55a50f96-1fc0-499e-8c78-dc64b1825c37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D106C62951F4488DAC704DCECAFE91DD Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A0C376BE88B4709AFE1D7D2B6A0E9CC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -799,10 +799,10 @@ "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2015-05-01+19": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2015-05-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -822,30 +822,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb953c88-80cd-4c03-9440-cd4f9435cd89" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70b9070b-8d00-44dc-9b7d-074425e6ac61" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "03db0e97-c2ad-4f72-b983-01b5f638b7c5" ], - "x-ms-correlation-request-id": [ "03db0e97-c2ad-4f72-b983-01b5f638b7c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192022Z:03db0e97-c2ad-4f72-b983-01b5f638b7c5" ], + "x-ms-request-id": [ "eca03004-e2e2-495f-ae59-3b12e7fa6072" ], + "x-ms-correlation-request-id": [ "eca03004-e2e2-495f-ae59-3b12e7fa6072" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004838Z:eca03004-e2e2-495f-ae59-3b12e7fa6072" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 115A433DC02D46BF89853A7EB692D614 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:20:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D54D9F0A0104F98AC6E84D8F391AE42 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:48:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1684" ], + "Content-Length": [ "1683" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"a400423c-0000-0300-0000-691b75760000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest4-lgj9k87dn6\",\r\n \"name\": \"Func-PowerShell-NewTest4-lgj9k87dn6\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-lgj9k87dn6\",\r\n \"AppId\": \"915b1217-2539-46ae-9c14-9e5f9292cba3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"27766a8b-4171-467e-846a-c24eeedc8c2b\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest4-lgj9k87dn6\",\r\n \"CreationDate\": \"2025-11-17T19:20:18.3591928+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest4-lgj9k87dn6_915b1217-2539-46ae-9c14-9e5f9292cba3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-lgj9k87dn6-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c3029539-0000-0300-0000-69c482660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"name\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"AppId\": \"085f874f-ead2-462c-8470-ff4b3ffa4297\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3675b64b-6001-40f3-ac71-8697ec12215f\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"CreationDate\": \"2026-03-26T00:48:33.553951+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest4-t5dnwqpf7r_085f874f-ead2-462c-8470-ff4b3ffa4297_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-t5dnwqpf7r-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01+20": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-lgj9k87dn6\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-t5dnwqpf7r\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -859,43 +859,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7398FC155\"" ], + "ETag": [ "\"1DCBCBA4A4BE8E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45e6defa-1b88-47bd-8905-2312daad4af2" ], + "x-ms-request-id": [ "c4664567-4551-4634-9911-601a98911e0e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/78506413-2311-4c31-a07c-7905ac32bc31" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90a34c83-68be-4a5c-a9e9-faa1fbb8ed63" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "f42e9e5c-787e-4abe-9c61-f62c3a79bf31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192104Z:f42e9e5c-787e-4abe-9c61-f62c3a79bf31" ], + "x-ms-correlation-request-id": [ "ca34107d-95e0-4236-a264-a7d06bc207de" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004920Z:ca34107d-95e0-4236-a264-a7d06bc207de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 081BC4CE64E74955BA67D7EB79D89508 Ref B: MWH011020807031 Ref C: 2025-11-17T19:20:22Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3E64FDFF11D4140A039582E421B71FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8509" ], + "Content-Length": [ "8581" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:20:24.01\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-lgj9k87dn6\\\\$Func-PowerShell-NewTest4-lgj9k87dn6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:48:40.29\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01+21": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "1038" ], - "x-ms-client-request-id": [ "eabf4d39-02d3-439a-8647-f08fe661d431" ], + "x-ms-unique-id": [ "718" ], + "x-ms-client-request-id": [ "4a9da575-9a58-467d-b714-05ea8bb8cca4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] }, "ContentHeaders": { } @@ -905,42 +905,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F750FD7A00\"" ], + "ETag": [ "1DCBCBA61D28DC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48fe677e-4535-4171-889f-3f83869e4646" ], + "x-ms-request-id": [ "d8865472-d5ab-4b63-9484-9396c15711c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b53a32bd-304b-4c29-8112-f8a7d269ec38" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192134Z:b53a32bd-304b-4c29-8112-f8a7d269ec38" ], + "x-ms-correlation-request-id": [ "dd221cb8-36b0-4aec-917c-7e3615d1ac25" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004951Z:dd221cb8-36b0-4aec-917c-7e3615d1ac25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9843328ED9B3494892378D77854BA06D Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:34Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EF947C44B124C9EA7A882E3B91544BD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:04.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-lgj9k87dn6\\\\$Func-PowerShell-NewTest4-lgj9k87dn6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:49:20.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01+22": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1039" ], - "x-ms-client-request-id": [ "9097f2ba-6d9a-4341-9668-0d411d61fdab" ], + "x-ms-unique-id": [ "719" ], + "x-ms-client-request-id": [ "0347ff16-df93-4415-ae48-3d930b9ad27d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -951,42 +951,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F750FD7A00\"" ], + "ETag": [ "1DCBCBA61D28DC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f783b18d-2e2d-4607-b9b5-6dc1745ecefc" ], + "x-ms-request-id": [ "0ade0378-0d58-4434-b3e0-c4f2b85b6c24" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "982de147-962e-4dfe-a112-431603638a1a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192135Z:982de147-962e-4dfe-a112-431603638a1a" ], + "x-ms-correlation-request-id": [ "dabfa9ad-c89c-4640-85e6-b2df92b8720e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004951Z:dabfa9ad-c89c-4640-85e6-b2df92b8720e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 878D36A446F8486B818A78AD4B4CFF84 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:34Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C008D0729D55461E81A24C515A8A29F6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:04.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-lgj9k87dn6\\\\$Func-PowerShell-NewTest4-lgj9k87dn6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:49:20.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/appsettings/list?api-version=2023-12-01+23": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1040" ], - "x-ms-client-request-id": [ "4ac48822-9b75-4d64-9680-71b1084b35a3" ], + "x-ms-unique-id": [ "720" ], + "x-ms-client-request-id": [ "02edfc2f-e751-41eb-a775-c9aad42c3572" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -998,40 +998,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9ef0b78-f9ef-4aad-8759-8e3b4d84ebbb" ], + "x-ms-request-id": [ "c5f3ed98-1525-480d-80f0-03697908751c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75d38046-fb72-4737-861b-0cbcd00ee066" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24a72b93-2c04-4cf5-b8d3-05d56cfff462" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9034fe9b-f682-4140-840a-da4bb902f56a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192135Z:9034fe9b-f682-4140-840a-da4bb902f56a" ], + "x-ms-correlation-request-id": [ "73ce3fba-fb19-4d0d-94f7-ffc2fcd7ced8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004951Z:73ce3fba-fb19-4d0d-94f7-ffc2fcd7ced8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 531AF83084A349DDAB628CC9884CF7B3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E7EDC5DC805A48D88899ECEE4C4B3614 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-lgj9k87dn6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-t5dnwqpf7r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/web?api-version=2023-12-01+24": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1041" ], - "x-ms-client-request-id": [ "6cceb4b0-085e-4926-abfa-e17ee3acd34f" ], + "x-ms-unique-id": [ "721" ], + "x-ms-client-request-id": [ "67f27abb-6f75-47bf-9f83-e1816652d2ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1043,41 +1043,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5d0cf92b-893e-43d4-b52e-5abac102e38c" ], + "x-ms-request-id": [ "4e6be626-aa92-4748-bd0b-4fb335f934e0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ec96896-1c8b-4223-8c7d-d46018e8d037" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a8849c5-9faf-45ef-a821-dd8bf6e431e9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9ffd8e7d-7ebd-47c0-8a55-f355ff266d9b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192135Z:9ffd8e7d-7ebd-47c0-8a55-f355ff266d9b" ], + "x-ms-correlation-request-id": [ "1406877f-d925-4f7a-a5fa-cd0b1c2f5ec6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:1406877f-d925-4f7a-a5fa-cd0b1c2f5ec6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B02AE82B1DE49AEB8A01FE5E7C19299 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0EE8144645047D8B71317CD7D8E5592 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/web\",\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01+25": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1042" ], - "x-ms-client-request-id": [ "883b19d8-9cd9-40b3-9c6b-5845ac02b8cd" ], + "x-ms-unique-id": [ "722" ], + "x-ms-client-request-id": [ "fae98c07-48e1-4b9f-80ca-1581377cbac4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1088,42 +1088,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F750FD7A00\"" ], + "ETag": [ "1DCBCBA61D28DC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "86a41793-b6d4-4fdd-8397-8dcd2ccb6c72" ], + "x-ms-request-id": [ "c9c737a1-5738-4f5e-80ee-677dd5942278" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d19df202-c71d-4125-97be-0ce1abe8125a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192135Z:d19df202-c71d-4125-97be-0ce1abe8125a" ], + "x-ms-correlation-request-id": [ "b3cd3954-27e3-4627-8b62-7075b04e11f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:b3cd3954-27e3-4627-8b62-7075b04e11f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6C13E89B96B4059AA055D9EDF626434 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8D226A6B897140BA9D6B695FF3E79BD9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Func-PowerShell-NewTest4-lgj9k87dn6\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-lgj9k87dn6.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:04.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Func-PowerShell-NewTest4-lgj9k87dn6\\\\$Func-PowerShell-NewTest4-lgj9k87dn6\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"func-powershell-newtest4-lgj9k87dn6.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:49:20.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/appsettings/list?api-version=2023-12-01+26": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01+26": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1043" ], - "x-ms-client-request-id": [ "fa4aff69-33c6-4f6b-97e6-9eb568cc879c" ], + "x-ms-unique-id": [ "723" ], + "x-ms-client-request-id": [ "67a24a87-6d93-426e-b6fe-4e9054534747" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1135,40 +1135,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "88cc250f-965b-4e80-a3fa-e4ecf3adc749" ], + "x-ms-request-id": [ "48c38245-a821-492d-90eb-7d181e89f07e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8dcdbac4-6925-4ded-9663-bf4329277128" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9da6041d-60bb-4fa9-b8af-f08678fa27f9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dfb336f6-daee-45d0-8589-ae6881b767f5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192136Z:dfb336f6-daee-45d0-8589-ae6881b767f5" ], + "x-ms-correlation-request-id": [ "d0d189b5-07b1-490b-a3e4-0312c2ea8808" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:d0d189b5-07b1-490b-a3e4-0312c2ea8808" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F95C344284543AEA6E6033D01002FEA Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:35Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04CB2AB93FB14D95A482813E5CB70CD4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-lgj9k87dn6\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-t5dnwqpf7r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/web?api-version=2023-12-01+27": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1044" ], - "x-ms-client-request-id": [ "cbc87152-5463-4c39-a45f-1016a554d08d" ], + "x-ms-unique-id": [ "724" ], + "x-ms-client-request-id": [ "a7b4c89f-a5d5-4ff1-b6ff-27ded13ceaaf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1180,41 +1180,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c976a653-4b5f-42a2-8000-715a9e6fa278" ], + "x-ms-request-id": [ "5e2215e0-f4cf-435f-b44e-b950bc59d2c9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/823e10f2-6493-4b50-b602-b9a52d8d900f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8021cf48-3f31-40a6-9b2e-4f171b1bfadf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "06b717d4-7668-4716-bc6e-9ee1ab7d029d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192136Z:06b717d4-7668-4716-bc6e-9ee1ab7d029d" ], + "x-ms-correlation-request-id": [ "2af15290-1b42-4080-9de6-44c3c016c568" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:2af15290-1b42-4080-9de6-44c3c016c568" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF1DB9D4B69D497CB7AF33F282107849 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58E65E3E007D481FB05CF7F6C2E81E1B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6/config/web\",\"name\":\"Func-PowerShell-NewTest4-lgj9k87dn6\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+28": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1045" ], - "x-ms-client-request-id": [ "1e44b236-ac70-4ea9-9d9b-2267a60d5f33" ], + "x-ms-unique-id": [ "725" ], + "x-ms-client-request-id": [ "28a1c2b6-5030-499e-8aa5-5f48b84d2bbe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1226,40 +1226,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b79b17de-8265-4f18-a336-7e2d8d907c29" ], + "x-ms-request-id": [ "2b1b4c02-7edc-4a75-b942-b32d09b1452d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e37d5063-fa61-42f9-a9bb-e95c119aa10f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192136Z:e37d5063-fa61-42f9-a9bb-e95c119aa10f" ], + "x-ms-correlation-request-id": [ "b0f3fc84-86b3-44fb-8f64-7e16c51d9eba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:b0f3fc84-86b3-44fb-8f64-7e16c51d9eba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E34D8996C1F499EA783260ACB35F2CD Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72B7E3EF0482495E96119C2BEB7745FA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], + "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60837,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:19:39.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1046" ], - "x-ms-client-request-id": [ "0febcfce-d15a-4add-87ff-83e0519d1825" ], + "x-ms-unique-id": [ "726" ], + "x-ms-client-request-id": [ "1d8e6757-1a93-43f6-a76f-73146981bcd4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1270,20 +1270,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F750FD7A00\"" ], + "ETag": [ "\"1DCBCBA61D28DC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "15213179-944b-4137-97c6-c1bc97c7b6b2" ], + "x-ms-request-id": [ "7522738a-4847-4648-ab4c-7fe865a65f3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16a54dd6-0184-4679-bba0-5d2b2d771d25" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "7df8271f-97f8-4017-a1f6-f8dffc934d81" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192147Z:7df8271f-97f8-4017-a1f6-f8dffc934d81" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2448883-99b8-406a-a58d-b16f3b95fb8e" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "fe53d6a0-bb60-4d8d-834c-895de1a68d70" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005000Z:fe53d6a0-bb60-4d8d-834c-895de1a68d70" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB4E9ABF5656488CA1D5A3B2929D2760 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:36Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9404CCAE64A0424AA480E37C42C8ABDA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:53Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1293,19 +1293,19 @@ "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+30": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1047" ], - "x-ms-client-request-id": [ "9547e786-1be9-4942-bf42-a39c4eef4299" ], + "x-ms-unique-id": [ "727" ], + "x-ms-client-request-id": [ "053897fb-3ce4-4fd4-a4f2-c8fbb978349b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1317,40 +1317,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5dd1c5f8-64d2-40e9-9ca9-c358850ac0f2" ], + "x-ms-request-id": [ "62136de5-d756-45e5-aaa0-f614c8553550" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0e371285-e6c7-4a2e-88b3-93e83c67bff0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192147Z:0e371285-e6c7-4a2e-88b3-93e83c67bff0" ], + "x-ms-correlation-request-id": [ "0f6769d2-2720-4c84-a5a6-c013e0fac1d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005000Z:0f6769d2-2720-4c84-a5a6-c013e0fac1d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 51562A9B1EB84526AED07E2ABDC175D1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:47Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6E4B2BD6E594ADC903CBD8D36CD5A81 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60837,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:19:39.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01+31": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1048" ], - "x-ms-client-request-id": [ "281053e7-a10d-4bda-9fd1-594c3b26928e" ], + "x-ms-unique-id": [ "728" ], + "x-ms-client-request-id": [ "c68b9e50-b0f2-4a7f-92ea-d734bc7e2b69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1362,37 +1362,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "9ce00566-71ee-4a58-bf84-b4a5c1696fbc" ], - "x-ms-correlation-request-id": [ "9ce00566-71ee-4a58-bf84-b4a5c1696fbc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192147Z:9ce00566-71ee-4a58-bf84-b4a5c1696fbc" ], + "x-ms-request-id": [ "a508442c-a35f-4cba-a3af-7af063039942" ], + "x-ms-correlation-request-id": [ "a508442c-a35f-4cba-a3af-7af063039942" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005000Z:a508442c-a35f-4cba-a3af-7af063039942" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E79A5146A9994E9FACE994A4D58E22E5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:47Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 026889A1691B48F88C8E65B788A8D4CC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest4-lgj9k87dn6\u0027 under resource group \u0027Functions-Test-Windows-Premium-y9jkp1\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+32": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1049" ], - "x-ms-client-request-id": [ "d78c4a48-0125-43bb-9611-3cd24b13002e" ], + "x-ms-unique-id": [ "729" ], + "x-ms-client-request-id": [ "deb58705-700f-477d-a21c-dce9f293dc18" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1404,40 +1404,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ffd13bb-4f80-4c83-9240-bf770e15c084" ], + "x-ms-request-id": [ "00374282-1fe6-4e12-a950-0f73f1972ffe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7f0be6c2-7e90-4203-af92-a412e8982d61" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192148Z:7f0be6c2-7e90-4203-af92-a412e8982d61" ], + "x-ms-correlation-request-id": [ "adc294a2-e377-4a68-8fac-96e60e4ba2b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005001Z:adc294a2-e377-4a68-8fac-96e60e4ba2b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 653E916A2607452BACAC082D3926268C Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:47Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCC32823629548B2BEB55B327FDE6210 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:00Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1820" ], + "Content-Length": [ "1821" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz\",\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":60837,\"name\":\"Functions-MyTestPlan2-5l397gfkhz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-005_60837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T19:19:39.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01+33": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+33": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-5l397gfkhz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1050" ], - "x-ms-client-request-id": [ "7719126d-da14-4669-9196-f3945b5bc649" ], + "x-ms-unique-id": [ "730" ], + "x-ms-client-request-id": [ "1b5a6150-ca83-4f28-8093-0f48db3dd282" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1449,18 +1449,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36876721-ea81-4b66-9233-ef0fb6e2b78b" ], + "x-ms-request-id": [ "4460ede5-3e47-46f4-becd-bd0db4aea49e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6503d78-a7a8-418d-89bd-3c6737a6b82d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e4be55d2-a7a4-4732-a902-fcfe109d6ac1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "266e7601-8c1c-423c-b02a-7262ee2bad04" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192153Z:266e7601-8c1c-423c-b02a-7262ee2bad04" ], + "x-ms-correlation-request-id": [ "c1095895-4818-417c-be42-bbeee7547c23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005006Z:c1095895-4818-417c-be42-bbeee7547c23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5B5D07958D44E7394276C5E212BB280 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:48Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1B8F112EB764EE693926229447AB08B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:01Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1471,4 +1471,3 @@ } } } - diff --git a/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json index 8c3357f1b910..f0c9d6f8458f 100644 --- a/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json @@ -1,17 +1,17 @@ { - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1051" ], - "x-ms-client-request-id": [ "68b9f755-7b4d-4ef8-acd0-8b0559958fbe" ], + "x-ms-unique-id": [ "731" ], + "x-ms-client-request-id": [ "ff64c301-bed5-4ab6-9add-fa5af01480f3" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "381540fa-24b1-4a10-b108-2655a1026110" ], + "x-ms-request-id": [ "d31d7cc0-c1c2-40b8-9b75-a57c00daf47c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/03f513e7-086c-46b5-9927-e81dcec40a58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c2c1b11-4370-48d6-8f89-5e3c542297dc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "9fe718ab-f2b1-4896-a653-26e4455d733f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192155Z:9fe718ab-f2b1-4896-a653-26e4455d733f" ], + "x-ms-correlation-request-id": [ "4ad4e4d4-36ec-4df2-834c-21ebd934df19" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005008Z:4ad4e4d4-36ec-4df2-834c-21ebd934df19" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC61F9205B5E470A9FF974809996F19A Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:55Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA2F8DAFCC5348CFB76351358DF1BEA6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:08 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -44,19 +44,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1052" ], - "x-ms-client-request-id": [ "274e56a5-9e06-4ac6-af1a-13dd0a521fd6" ], + "x-ms-unique-id": [ "732" ], + "x-ms-client-request-id": [ "40654a8e-4185-42ea-96bd-a3b44ca6ce77" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -67,42 +67,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F76F8FB5A0\"" ], + "ETag": [ "1DCBCBA7E4AA8F5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d01c5f0c-09d0-4f8a-a73c-753b3f0fdb49" ], + "x-ms-request-id": [ "885c4ecd-329d-431c-be51-416e97b96d4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "197ddd65-712f-441e-b97f-5bf3df54ff9d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192155Z:197ddd65-712f-441e-b97f-5bf3df54ff9d" ], + "x-ms-correlation-request-id": [ "c107cc09-b12c-4c9e-9ae4-b9f912440b17" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005008Z:c107cc09-b12c-4c9e-9ae4-b9f912440b17" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F1406BD992BC457EAB5BA6E48D2EE79B Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:55Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2A3FB1100094223A3C4B91FE45E7009 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8413" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:55.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:08.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1053" ], - "x-ms-client-request-id": [ "e34f7562-0a95-4131-a197-4c56584480a2" ], + "x-ms-unique-id": [ "733" ], + "x-ms-client-request-id": [ "67f72d76-d041-42ff-82ef-7d1bfee1517d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -114,40 +114,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6965f9cb-a107-4b2a-8110-95944d384cf4" ], + "x-ms-request-id": [ "4fda33e4-c7a1-42d5-9ae4-7b775d88f3ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d58efcb4-ac7d-421e-b276-748f2c9263e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8d9099b-903f-40ac-ae5f-67f4812b69fd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dc5ab652-e202-4d7c-8a19-2ce75abdf333" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192156Z:dc5ab652-e202-4d7c-8a19-2ce75abdf333" ], + "x-ms-correlation-request-id": [ "bc03cee2-ee8d-4b5c-8c97-857888caeaa6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005008Z:bc03cee2-ee8d-4b5c-8c97-857888caeaa6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D9ECB5842248427796588BC75E64D7A4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:55Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70D03C6B9C7A4D6BB8031D6A2BDC12E3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1054" ], - "x-ms-client-request-id": [ "4ac343ec-4b8f-4e23-b0f1-acf95228346b" ], + "x-ms-unique-id": [ "734" ], + "x-ms-client-request-id": [ "dbf9e279-617d-415c-8ef2-6f6281ef0b8c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -159,41 +159,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d343cf06-ba9c-4818-8b96-66b049b2cbd0" ], + "x-ms-request-id": [ "60003ed1-ba8a-47be-ab97-0b75b0c83ff4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/345f61dc-0bb8-4cec-a3e7-0338ac4c0481" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d7bbd5d-dcc3-44be-b758-34f7587588e0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ef48c4c1-7b19-45e2-b2fb-c457a6cfdfba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192156Z:ef48c4c1-7b19-45e2-b2fb-c457a6cfdfba" ], + "x-ms-correlation-request-id": [ "35a14ba8-221e-4eaa-814f-a1ed4d9547b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005009Z:35a14ba8-221e-4eaa-814f-a1ed4d9547b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89E77B5EF613481E8FE7F74F70763F15 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:56Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4316C6BCB91C4B7EBDD78EE89C4D9F2C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1055" ], - "x-ms-client-request-id": [ "55763d3c-f5d6-404a-839c-4a47f0b14c22" ], + "x-ms-unique-id": [ "735" ], + "x-ms-client-request-id": [ "36b9d20b-f0a4-460c-bece-d7d18866ba59" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -205,18 +205,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41a9d711-e2ef-418c-b2dc-cae00b7a01f0" ], + "x-ms-request-id": [ "0e0e161c-91a3-4370-b0b8-621efd19807b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2588f62-5801-42cf-8dd3-35951f9ee4e9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c75c93b-a29b-4abb-82ab-4739fd51cf08" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "5d21751b-bc02-4cca-ba82-dd30516f9df3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192156Z:5d21751b-bc02-4cca-ba82-dd30516f9df3" ], + "x-ms-correlation-request-id": [ "13e72a71-71e4-47e1-a14b-d3b0fd59e646" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005009Z:13e72a71-71e4-47e1-a14b-d3b0fd59e646" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFD0C61440A04CBFAA92941157746EFC Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:56Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCAA949E92044109B4CED69C5C87A519 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -226,19 +226,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1056" ], - "x-ms-client-request-id": [ "41d3ec3e-45c7-4730-985c-b1b35bcef8e8" ], + "x-ms-unique-id": [ "736" ], + "x-ms-client-request-id": [ "086c1304-3e38-474b-9106-0f8a5bb88d33" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -249,42 +249,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7702B5960\"" ], + "ETag": [ "1DCBCBA7F0A6980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8eb6b4d2-b4d6-45da-ac10-24e573f5004d" ], + "x-ms-request-id": [ "1413b8c4-a056-4a7b-a638-a9870119db57" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3c7b137a-9ad5-4d9e-968f-966cbd26e46a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192156Z:3c7b137a-9ad5-4d9e-968f-966cbd26e46a" ], + "x-ms-correlation-request-id": [ "75440765-67f4-4cd6-9ac4-3f82e82f4239" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005009Z:75440765-67f4-4cd6-9ac4-3f82e82f4239" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F82FA682D70F4F188A1A0B7F6CD71E11 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:56Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A1EB9E976CA54B14B911396595D6C3C3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8413" ], + "Content-Length": [ "8307" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:56.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:09.56\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1057" ], - "x-ms-client-request-id": [ "74106393-3278-4df1-b402-cc8f3230c627" ], + "x-ms-unique-id": [ "737" ], + "x-ms-client-request-id": [ "68fdc15b-6e69-43b4-be8f-c0fff5f150c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -296,40 +296,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6fca6a8e-a217-483a-addb-8e031c86c077" ], + "x-ms-request-id": [ "51273af6-90b3-4b6a-8402-187a3e9b8de5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cfa5916-1052-4182-bb8c-798f67699d10" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3f4bc9a-3f25-4dd8-b59e-51419621ecec" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "739373c9-e183-4714-af7d-e24cd3df2976" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192157Z:739373c9-e183-4714-af7d-e24cd3df2976" ], + "x-ms-correlation-request-id": [ "9285f537-467c-4412-bd06-4c357fc670fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005010Z:9285f537-467c-4412-bd06-4c357fc670fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B49E1E31C24140A382990B5A70AEA55C Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:56Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64CAF92AE8254AA7AB72E1291DD511F3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:09Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1058" ], - "x-ms-client-request-id": [ "b104b211-0f57-4eef-b76a-a8da6abc763b" ], + "x-ms-unique-id": [ "738" ], + "x-ms-client-request-id": [ "8c87f030-6cd5-429a-822b-29419e2d68bc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -341,41 +341,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "618d6483-5c01-4efd-b429-901af7d7922f" ], + "x-ms-request-id": [ "a2e811f7-abc8-4859-806d-f6bdd6409af1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/038eada5-daeb-4f80-9de4-5155f54dd08a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97b5d76d-c7c9-44b6-8fa1-95f0eb7eede9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8e2215c9-aafb-4031-bcb8-34b3eaf815da" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192157Z:8e2215c9-aafb-4031-bcb8-34b3eaf815da" ], + "x-ms-correlation-request-id": [ "100cb39e-dfe4-4a3d-a04b-3ac5bffb18ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005010Z:100cb39e-dfe4-4a3d-a04b-3ac5bffb18ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B17D647A15E147849F423FC428FAE291 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1AD5547E9E314A9B9CC668EE26605E20 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1059" ], - "x-ms-client-request-id": [ "5193a6d5-88e1-4f0f-b3b6-57b4d6ecdc32" ], + "x-ms-unique-id": [ "739" ], + "x-ms-client-request-id": [ "d7a366c7-7e5c-4c5b-992e-d51723b0399d" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,18 +387,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "700e1f72-8b46-400f-b21d-7e6d19ad536b" ], + "x-ms-request-id": [ "209ed38d-4174-4431-be54-72211bce88ec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92359f26-de38-4058-b732-02b181fea08f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/27a4eff5-679e-4bad-8036-ff568377b33a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4a505e2f-52a6-401a-981f-a6e5ef4c0a97" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192157Z:4a505e2f-52a6-401a-981f-a6e5ef4c0a97" ], + "x-ms-correlation-request-id": [ "02293455-7abd-4495-a39d-3aa4ab4a9966" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005011Z:02293455-7abd-4495-a39d-3aa4ab4a9966" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B15E0FF42FA640C4B8BFB53D05FB6DF2 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7D0B0A919A3483F970BA9C6E75F466E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:10Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:11 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -408,19 +408,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1060" ], - "x-ms-client-request-id": [ "fd5f82d9-569b-41be-9b90-c4fadfa682d7" ], + "x-ms-unique-id": [ "740" ], + "x-ms-client-request-id": [ "8b9ae6f2-d787-43a5-bb56-317bf137b0f5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -431,42 +431,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F770C9882B\"" ], + "ETag": [ "1DCBCBA7FB7DA8B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb371b31-e6a4-4d13-b69e-4f4fa23e2f31" ], + "x-ms-request-id": [ "cc49f7db-bb0b-451f-8a49-dcc2d009a39b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d8500cb-48f9-43a7-8153-d25f3062391c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192157Z:1d8500cb-48f9-43a7-8153-d25f3062391c" ], + "x-ms-correlation-request-id": [ "35c44f6f-f230-4687-8835-563bdfcd62d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005011Z:35c44f6f-f230-4687-8835-563bdfcd62d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 869FB9FEF86B4FB997C7728242FB0F1D Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92C1DEBD0E6645F18929796CF3138486 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:11Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:57.5066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:10.6966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1061" ], - "x-ms-client-request-id": [ "ec528b1d-95d5-4b5f-8aba-206c5751a2ac" ], + "x-ms-unique-id": [ "741" ], + "x-ms-client-request-id": [ "d3781955-6827-42f7-9ce0-018f377802ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -478,40 +478,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83e6ca70-0e14-4e50-afb7-84c8ec71c47a" ], + "x-ms-request-id": [ "150575bf-27c9-46ba-8686-3ea3e60a4da2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2ff24b24-0322-4725-9371-7307c1a877fc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac899928-2ee4-47d3-8343-f6c13a03f846" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d8dd709a-e118-483a-987e-443efa7e4304" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192158Z:d8dd709a-e118-483a-987e-443efa7e4304" ], + "x-ms-correlation-request-id": [ "d8d026e3-a7c1-4ba0-9c72-55bb704483da" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005012Z:d8d026e3-a7c1-4ba0-9c72-55bb704483da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABCB5F3D7FEA4371B1FB38BABB7B6CCF Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:57Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E56AF901D3214F0D9075774CCBFB5A34 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1062" ], - "x-ms-client-request-id": [ "e838fe0b-8f83-43e4-bab5-181fe315e72f" ], + "x-ms-unique-id": [ "742" ], + "x-ms-client-request-id": [ "0ebe64be-8fb1-44e3-bc51-1c2fd7017c91" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -523,41 +523,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05601d98-022c-4dc4-b67e-3b1f377132da" ], + "x-ms-request-id": [ "d99e1b08-fdf0-4186-9667-51ae334f50ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3f39f1e6-723d-4d16-aedf-3745e5d31852" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a6429f47-a88a-4a04-9b75-b50b2e17b9f0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192158Z:a6429f47-a88a-4a04-9b75-b50b2e17b9f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3741b287-8801-4a20-b54c-c08a9efcfc0c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "368ee17e-4059-44c2-a7f4-faf061322b0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005012Z:368ee17e-4059-44c2-a7f4-faf061322b0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5E6202710B840838015EC3BB95CEB75 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C1D3087CB724C58B042F021B0CB3E9D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:12Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1063" ], - "x-ms-client-request-id": [ "21ed9895-44ec-4cdf-91fd-484fc6bfeec3" ], + "x-ms-unique-id": [ "743" ], + "x-ms-client-request-id": [ "177c2d1c-62c0-4708-8f9f-4dbcfb7ae10c" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -569,18 +569,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87b546ba-f753-4f91-ae9e-f382cdb30333" ], + "x-ms-request-id": [ "c8dea01b-a2d6-47c9-ada5-9298e9ccace4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/927369d6-d407-4fd3-a863-15abedd35c77" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a45f5690-7ec3-45e6-a60f-09ed83f3f8bc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "002ca64c-4964-48ce-a27a-5bf775f30df5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192158Z:002ca64c-4964-48ce-a27a-5bf775f30df5" ], + "x-ms-correlation-request-id": [ "8570bd2b-3c4c-4f76-92c8-b6e479299a30" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005013Z:8570bd2b-3c4c-4f76-92c8-b6e479299a30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3B3359371A24CA58F2DEE656F0D49EB Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 021A8E4E03C64B07BC78741DF44C77CB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:13 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -590,19 +590,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1064" ], - "x-ms-client-request-id": [ "020526f4-e181-4e1c-bada-70d55bd084a3" ], + "x-ms-unique-id": [ "744" ], + "x-ms-client-request-id": [ "6e2b7da4-436f-44f8-b7c3-06cd217a4998" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -613,42 +613,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57ED9408A895\"" ], + "ETag": [ "1DCBCB41443E000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "331e5896-e681-4eb6-a029-f780479c2b9b" ], + "x-ms-request-id": [ "6cee5509-2495-4e47-9656-9c90700b727c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bf101b0d-ea98-441e-94c9-8162da904df4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192158Z:bf101b0d-ea98-441e-94c9-8162da904df4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b32a41c2-d6c0-4d9d-9912-f651f0d5c336" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005013Z:b32a41c2-d6c0-4d9d-9912-f651f0d5c336" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2CEBDC37271640768B9CDD3C9415F4C1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A68D6DC501A4D8B8B185940B9CE3384 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8337" ], + "Content-Length": [ "8417" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:11:21.6733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1065" ], - "x-ms-client-request-id": [ "aff82274-f57f-4e95-8bbc-974de1aa1387" ], + "x-ms-unique-id": [ "745" ], + "x-ms-client-request-id": [ "1b96b7d7-c42b-456e-8ac4-2d1211b4777b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -660,40 +660,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f494896b-fd43-47bd-8a85-60f5735fb5c1" ], + "x-ms-request-id": [ "e165afd0-9e89-44e5-b4f9-8169378a4914" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59555462-62c3-49fb-9fca-f406df17d60e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "51569f7c-410a-42eb-9c7b-930f196ab3b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192159Z:51569f7c-410a-42eb-9c7b-930f196ab3b1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44a025c1-4907-45f7-b25e-21e945faeb83" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f3a390db-970b-47bf-b2cb-6799762370d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:f3a390db-970b-47bf-b2cb-6799762370d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA6F99FDD1C444A3BC881AE3095D665D Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:58Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88254BA36C8245FD94E4612015B2518E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:13Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1066" ], - "x-ms-client-request-id": [ "67fd09cb-5278-4df0-9c2a-c181b3849eae" ], + "x-ms-unique-id": [ "746" ], + "x-ms-client-request-id": [ "07679ea3-483d-46c0-9076-10cb2d88d758" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -705,41 +705,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "08d4ba01-5a3d-487a-93da-44a8425ccddb" ], + "x-ms-request-id": [ "73f85fb2-2873-4f1a-8f58-739cc9654506" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb30f0d5-1c4b-4094-b125-9d790acca2af" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "4045e465-c1ce-4838-8a2e-280c905cbbbb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192159Z:4045e465-c1ce-4838-8a2e-280c905cbbbb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cabf23ba-fe54-4c76-b085-555da50b9c66" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "79b818b8-0f83-4281-80b0-a788ffe26314" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:79b818b8-0f83-4281-80b0-a788ffe26314" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E23C069FA5949EEA0D789C39F55FB26 Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D069E16E1C7D47E8B095506AFDA71263 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1067" ], - "x-ms-client-request-id": [ "b071d705-0ef5-4eb7-9731-99ebd6107aa0" ], + "x-ms-unique-id": [ "747" ], + "x-ms-client-request-id": [ "37c33785-d906-49ca-8d65-27b46e6e2848" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -751,18 +751,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc815ee1-fc6d-4b66-b6b8-0ca721191ffc" ], + "x-ms-request-id": [ "30d5ae3f-f393-4f7e-ab67-22eb4ebb5643" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9c152dc-f2cb-41bf-aa11-7737e780c16b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f01e0ec-34f0-490e-8c92-ef4db5cf16fc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "cb0ac12a-bd9e-4c5c-920f-2385f959dd56" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192159Z:cb0ac12a-bd9e-4c5c-920f-2385f959dd56" ], + "x-ms-correlation-request-id": [ "a8a533f1-7f04-40f2-9042-306b4d4e3f86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:a8a533f1-7f04-40f2-9042-306b4d4e3f86" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BAFA4BC48B964D29807C51FAF48A744F Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD1B457D109B4E7F963553779F6CD498 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -772,19 +772,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1068" ], - "x-ms-client-request-id": [ "67cf2eae-c1a1-4cb3-b12f-289b4d2e9c6a" ], + "x-ms-unique-id": [ "748" ], + "x-ms-client-request-id": [ "c3ffbb68-2201-4ddd-bb6d-d5bfdca8c867" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -795,42 +795,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F771FAB52B\"" ], + "ETag": [ "1DCBCBA81F49120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4a9c846e-7a31-4ec6-b764-b74e46c4f84f" ], + "x-ms-request-id": [ "47f09902-974a-49ac-a051-ef257bd01d16" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ce83683a-c58f-41e0-88c5-70e1c770b70a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192159Z:ce83683a-c58f-41e0-88c5-70e1c770b70a" ], + "x-ms-correlation-request-id": [ "ec6de5ba-b752-47e6-ab25-539b9b99e759" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:ec6de5ba-b752-47e6-ab25-539b9b99e759" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC84E41FFDF84E3393B56C941B13C2AF Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7AFD8E9F4B3D45EBBEF6271C94715843 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8337" ], + "Content-Length": [ "8417" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:59.5066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:14.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1069" ], - "x-ms-client-request-id": [ "94108370-9b95-4be1-86a8-07bf728e2d59" ], + "x-ms-unique-id": [ "749" ], + "x-ms-client-request-id": [ "d52130fd-2568-45b0-b1da-157c32ec926d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -842,40 +842,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16d6d8f2-cc23-4fd4-af4b-9fdf85e77071" ], + "x-ms-request-id": [ "b70feb80-b1da-4532-9960-adc7b20f0e4b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b14be8b5-1003-4d1b-984a-ba45b8660045" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8b2448e-d4aa-43eb-bec8-636f24b45dde" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d1568e5e-ea6a-4fb4-84ec-df9b4bafc7a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192200Z:d1568e5e-ea6a-4fb4-84ec-df9b4bafc7a5" ], + "x-ms-correlation-request-id": [ "38ff8bab-5fc9-443e-9411-277f6ea0ee87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:38ff8bab-5fc9-443e-9411-277f6ea0ee87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B49D22589394F1A99DD3E1642000C8F Ref B: MWH011020807031 Ref C: 2025-11-17T19:21:59Z" ], - "Date": [ "Mon, 17 Nov 2025 19:21:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7902D9084AC04D50A2BC987C633D0B0E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1070" ], - "x-ms-client-request-id": [ "ac4563cb-6f56-435d-89aa-562e0a4ceeb3" ], + "x-ms-unique-id": [ "750" ], + "x-ms-client-request-id": [ "71a050ee-93a1-46b9-ac90-7a69f27ff595" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -887,41 +887,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8490bbca-8151-4c6c-b006-c28089d63a66" ], + "x-ms-request-id": [ "823f93ca-2b84-4212-af30-e5974a365134" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ee8944e-0df2-4de8-a7f9-2843ac683bc6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4947ffea-e9b4-41b0-84ec-6f5f105edaab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192200Z:4947ffea-e9b4-41b0-84ec-6f5f105edaab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/140e3359-8ded-4586-b36f-080336583890" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fc39c2ea-f527-4737-9374-0f8567c30648" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:fc39c2ea-f527-4737-9374-0f8567c30648" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D10BF2B371DF4FB591D709FF8586E7CF Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:00Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95B89FFB97E94F5BBB1DAB1616AD9EFA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1071" ], - "x-ms-client-request-id": [ "24cf5c28-8066-4a1d-b262-2676dba84ddc" ], + "x-ms-unique-id": [ "751" ], + "x-ms-client-request-id": [ "d4c38fac-5035-491a-8f9f-3577a0b510bb" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -933,18 +933,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "909eb530-850a-439f-852d-df4f59ea6b6e" ], + "x-ms-request-id": [ "8f3467cd-02c2-4bec-9c4f-22d5670fd1db" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8baa0f27-4cda-49d2-8f66-f7c99d21107a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4d0da0f3-2a8f-4fdb-9995-618903f8ced1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192200Z:4d0da0f3-2a8f-4fdb-9995-618903f8ced1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0edd3aaa-8cca-4ca2-9754-af05ac15a47a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "797" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11997" ], + "x-ms-correlation-request-id": [ "0433f88c-2d28-49ec-88b5-e51706ffe3ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:0433f88c-2d28-49ec-88b5-e51706ffe3ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A3CFFE1E6E84E3B8B141398AE33EE06 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:00Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 349F57B23E234C0DBEA2EA11F3542497 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -954,19 +954,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1072" ], - "x-ms-client-request-id": [ "0a2f9d81-facd-45b2-948f-b6c003b0abf4" ], + "x-ms-unique-id": [ "752" ], + "x-ms-client-request-id": [ "e8a87b68-e8df-4728-af80-bc4aad50eade" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -977,42 +977,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77293CDE0\"" ], + "ETag": [ "1DCBCBA8292BFEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "87af976c-3df7-4c17-ae11-d523e709a380" ], + "x-ms-request-id": [ "69ba2e96-6a33-4145-9347-663091fd4737" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "95b8626b-e2b2-4983-9b6d-975fcc62b16f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192200Z:95b8626b-e2b2-4983-9b6d-975fcc62b16f" ], + "x-ms-correlation-request-id": [ "d16c6e6c-e3b0-4bae-82f2-3816adfd1ead" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:d16c6e6c-e3b0-4bae-82f2-3816adfd1ead" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10C011258F8D4696A45A17FB4F211F72 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:00Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4BED02C7B00B444185728F14331CC691 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8332" ], + "Content-Length": [ "8422" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:00.51\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1073" ], - "x-ms-client-request-id": [ "bfcb334a-1032-48ba-bdb9-68ce724f29e3" ], + "x-ms-unique-id": [ "753" ], + "x-ms-client-request-id": [ "3f3f3560-2b7a-4076-ab33-15fe1504e313" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1024,40 +1024,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6515dee0-4276-4b54-a1ca-9970ffac434b" ], + "x-ms-request-id": [ "bf5ecac8-3693-48a8-90bf-d7db5d4429cf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c43a007-e71c-4b4e-a55d-bf7940d9e025" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd3ed685-8873-42b5-8820-3f209e927743" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "099dbe09-225d-4d09-870f-4e30884e02ab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192201Z:099dbe09-225d-4d09-870f-4e30884e02ab" ], + "x-ms-correlation-request-id": [ "b688ae61-61c4-4923-ab0f-493bc04240fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:b688ae61-61c4-4923-ab0f-493bc04240fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2591B9D8520E4DA3AD3BCAF2D3CC3EF8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:00Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75455EE4457C4566B80CE83D968DEA76 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1074" ], - "x-ms-client-request-id": [ "dbd07c72-c60f-4f4b-b602-6d5c29558072" ], + "x-ms-unique-id": [ "754" ], + "x-ms-client-request-id": [ "ecbaeaac-3f7c-471b-b794-f00e74045689" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1069,41 +1069,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fc3b1df-9507-4430-8b84-8db22a4c9cdd" ], + "x-ms-request-id": [ "e8e1eee6-bd66-4079-82a1-ae72c3d960cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/417c3a71-0180-4c95-8d10-03597e4f0f36" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10b32f38-517e-4cd1-ba72-e50a3e958cbe" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a6422b4-d711-4869-ba23-0500265fb26c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192201Z:4a6422b4-d711-4869-ba23-0500265fb26c" ], + "x-ms-correlation-request-id": [ "a954c234-accc-4e7f-b31b-3a7792781e40" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:a954c234-accc-4e7f-b31b-3a7792781e40" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A09F2E29DDA4393BB6477A0DB2E090D Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:01Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D3B3FB734AB495682BE0A9D5EEF92FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:16Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1075" ], - "x-ms-client-request-id": [ "f503f33e-871e-4687-8726-0a6ccb6fc78d" ], + "x-ms-unique-id": [ "755" ], + "x-ms-client-request-id": [ "c64d17c6-a1f2-4b18-b966-6d99500f96b4" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1115,18 +1115,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e88f728-7c0a-49b4-93ed-e47d816ec28a" ], + "x-ms-request-id": [ "23a83080-3525-4b72-9316-53304818354f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b6b374c2-fa69-424c-ad82-d8ad42ab2c5d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cac778c0-f3de-488f-85af-b54ede70c633" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8fe0bd2f-ee27-4065-aa4d-658d3b882bf4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192201Z:8fe0bd2f-ee27-4065-aa4d-658d3b882bf4" ], + "x-ms-correlation-request-id": [ "028c390e-5139-46b1-99c5-4fd8c1e4cc04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:028c390e-5139-46b1-99c5-4fd8c1e4cc04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C61E5759D594DF3A7E702C1DF058826 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:01Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 693FFDB139324905AD302C33A28A2E7E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:16Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1136,19 +1136,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1076" ], - "x-ms-client-request-id": [ "8d39801b-267b-415c-83d3-34f374e973b2" ], + "x-ms-unique-id": [ "756" ], + "x-ms-client-request-id": [ "321fbede-769f-4052-a916-5a29d206fb4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1159,42 +1159,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7732F71A0\"" ], + "ETag": [ "1DCBCBA8332F78B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cee6aaa5-44a9-4aaa-aae2-6ae1496b78cd" ], + "x-ms-request-id": [ "e61103d5-f38d-4abe-840f-3e0fcac5cc22" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "27239940-e0ad-4c1d-9353-1e1ef858a7c1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192201Z:27239940-e0ad-4c1d-9353-1e1ef858a7c1" ], + "x-ms-correlation-request-id": [ "fd7ab2b9-99bc-4c09-a066-d7b854c98e51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:fd7ab2b9-99bc-4c09-a066-d7b854c98e51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FFDD7EBC3E341D08DC99241FE3F51B0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:01Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 164F17BDBAD24FBB8164B4FFBA914953 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:16Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8690" ], + "Content-Length": [ "8544" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:01.53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:16.5366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1077" ], - "x-ms-client-request-id": [ "065fc591-fdc4-4f31-8ffe-aa4ad617731c" ], + "x-ms-unique-id": [ "757" ], + "x-ms-client-request-id": [ "4d1445a8-51bb-45ca-bf62-89bc377393e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1206,40 +1206,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c4f3dc26-a94a-418d-9d40-b07f152c69e6" ], + "x-ms-request-id": [ "fc447cad-130b-4e22-a61f-36a5fed4db60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d8ad650-a79e-4977-ae1e-a9f2751a118b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9aec9e5a-8c70-451a-beed-f8870c17c38a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192202Z:9aec9e5a-8c70-451a-beed-f8870c17c38a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71c480ea-28ee-4d66-834f-f3c3f59bd7fe" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "1f6eab4a-a4c5-4b36-8f8c-ecc238e81bd6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005017Z:1f6eab4a-a4c5-4b36-8f8c-ecc238e81bd6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B994A36951724828BB66F292F3B43EE5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:02Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC211F76EE31491B9A01262BED41B67F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1078" ], - "x-ms-client-request-id": [ "2d871667-5feb-4e3d-98c1-ea8612e9240b" ], + "x-ms-unique-id": [ "758" ], + "x-ms-client-request-id": [ "81dc7e2b-e9ac-48a1-b19d-272463ecb7ef" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1251,41 +1251,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a89c0f19-bbd0-4f38-99b9-7b4d139603b4" ], + "x-ms-request-id": [ "18fc781f-682c-48d2-9854-55c79e241d25" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48e7f92c-286d-4222-87ab-75cd3360945c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7514201b-8e8b-48a7-85f6-5e67fcfcbd2e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192202Z:7514201b-8e8b-48a7-85f6-5e67fcfcbd2e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/706c9b7e-be91-49af-9eeb-917d28414fb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "07520d16-cd9a-49b3-85dd-bc202891d283" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005017Z:07520d16-cd9a-49b3-85dd-bc202891d283" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8F0CF46C6374AA08A68308F36DCA75A Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:02Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 05DEDF0C84A04EA9AF0765C2C83A5A26 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1079" ], - "x-ms-client-request-id": [ "03def69d-bcac-459c-bc1f-2270683fba89" ], + "x-ms-unique-id": [ "759" ], + "x-ms-client-request-id": [ "16ad1200-8a84-4689-a7a0-be41e5bb32de" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1297,18 +1297,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7bc3169e-6c6c-4bcc-9082-ba6fe6ad3a45" ], + "x-ms-request-id": [ "4699166e-d521-4a75-b2c1-635f0ee5d036" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb54bd3d-6485-4aed-a331-ab408463a5de" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71792e0c-c34d-4d36-b32f-efd7054dd552" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "47db42b5-3c27-43aa-ba6f-738c6307ac5e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192202Z:47db42b5-3c27-43aa-ba6f-738c6307ac5e" ], + "x-ms-correlation-request-id": [ "e6cd374a-6097-4645-b61b-a7029eb802f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005017Z:e6cd374a-6097-4645-b61b-a7029eb802f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8E48645709BA420FBF0E7A3F25ED2D72 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:02Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 071D40418483446185F980AB30BB5CD1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:17 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1318,19 +1318,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1080" ], - "x-ms-client-request-id": [ "7a8b7746-3a21-410c-b819-9068533f5f76" ], + "x-ms-unique-id": [ "760" ], + "x-ms-client-request-id": [ "420a41b1-add8-401f-91d6-63c8a8aa7b0d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1341,42 +1341,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F773D8D100\"" ], + "ETag": [ "1DCBCBA83E06895" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2cc8ab25-6047-4a89-ac50-bd1017ff8dd6" ], + "x-ms-request-id": [ "7e86b20b-f82d-45f4-a783-e180c773bf02" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "874403fd-bca7-407e-a885-944a29dc15a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192203Z:874403fd-bca7-407e-a885-944a29dc15a2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "51e921c0-bcec-4745-ba37-828492e4af1e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005018Z:51e921c0-bcec-4745-ba37-828492e4af1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB6CB0826D2341A885F01515C63E1711 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:02Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86C972A73AE64FE096A8C520F55A0BF6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8690" ], + "Content-Length": [ "8544" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:02.64\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:17.6733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1081" ], - "x-ms-client-request-id": [ "ac81c3f7-e66e-4300-bee8-6d9fb82f0278" ], + "x-ms-unique-id": [ "761" ], + "x-ms-client-request-id": [ "1a722e0b-4fd3-41e5-9592-f45e4103648e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1388,40 +1388,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68f62c8b-f53a-4258-9679-7acd3b23e54f" ], + "x-ms-request-id": [ "004d79cf-5b37-4f45-b8e5-30f625ab7f31" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2b51f798-638f-4f2d-8125-f5de6bb6ed6e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f5b2562-9548-4a78-a636-82ed6b622e46" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e4a1fe1a-4290-4071-9fc5-81cfbc40474e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192204Z:e4a1fe1a-4290-4071-9fc5-81cfbc40474e" ], + "x-ms-correlation-request-id": [ "c98b06b7-90d4-4e9c-ab6e-02bf6b03d130" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005018Z:c98b06b7-90d4-4e9c-ab6e-02bf6b03d130" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69D0192592A6414597D962A7C620B21D Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:03Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5DCA4409B0840D0B224632492979501 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1082" ], - "x-ms-client-request-id": [ "d8fb4509-4823-4dd0-862b-17a913b42b45" ], + "x-ms-unique-id": [ "762" ], + "x-ms-client-request-id": [ "831d4f98-f15c-4529-87c7-9b60ca5df511" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1433,41 +1433,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78c9c3e7-97f7-426f-bf42-d4c8d799ae6a" ], + "x-ms-request-id": [ "a7fc997d-bd7d-4093-9d67-5bcf02a8e68c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a39f0f7-70dd-4860-9ea1-24841bf8ddf1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "5879e1bb-18bf-4329-b693-98faf407b63d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192204Z:5879e1bb-18bf-4329-b693-98faf407b63d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9042e47c-00cf-4061-803f-677484b26db0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f59feeab-43fd-4c33-a440-9003857f5b29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005018Z:f59feeab-43fd-4c33-a440-9003857f5b29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC2D9FB8657A4440B7D4FE021B3BDB5A Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:04Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF0464D399DC49D09FEE012C28AB24ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1083" ], - "x-ms-client-request-id": [ "fd589c03-f182-4213-8a63-262b0d76cf18" ], + "x-ms-unique-id": [ "763" ], + "x-ms-client-request-id": [ "1c893a00-501c-4ea4-81fb-e3466db438c2" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1479,18 +1479,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e6ebe86-e304-49ac-900c-308f687cdd59" ], + "x-ms-request-id": [ "ce3fbc92-ed65-4bd1-9567-c960bbe131b5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9295ae7f-820b-40f4-a414-adeeadd6c2a9" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "55a8e56d-fe19-4534-a732-8241e4b022b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192204Z:55a8e56d-fe19-4534-a732-8241e4b022b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dcc64197-833a-4e1f-a1f6-fefd2a008c24" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "fea889eb-6d14-49d0-be76-be8784a23e41" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005019Z:fea889eb-6d14-49d0-be76-be8784a23e41" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 993C57DF3E49473E94F212C81B8F3E65 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:04Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7421488647340F995019C5EB1D8F187 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:18Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:19 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1500,19 +1500,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1084" ], - "x-ms-client-request-id": [ "9faa752a-0237-4b06-855c-ef95b5b5096b" ], + "x-ms-unique-id": [ "764" ], + "x-ms-client-request-id": [ "d3f3679e-071a-471a-9e4e-f3aa86bb4bcd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1523,42 +1523,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7750C890B\"" ], + "ETag": [ "1DCBCBA84B78EB5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f787a94-daa6-49ca-977e-f33ebf31b95a" ], + "x-ms-request-id": [ "64e969e6-2522-4a48-a06f-1bba59a2627d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "456358e8-b1c4-430c-9917-98018f1a53c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192204Z:456358e8-b1c4-430c-9917-98018f1a53c0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0145d645-7634-4f7d-95d6-b7abc9f9e92a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005019Z:0145d645-7634-4f7d-95d6-b7abc9f9e92a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3C8F87397554932AF35BF0E13D13DED Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:04Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FA91CDCB1B340DBA654652D29A7F826 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8695" ], + "Content-Length": [ "8544" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:04.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:19.0833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1085" ], - "x-ms-client-request-id": [ "2e3949c9-ac66-440d-99b1-63e03071ccb6" ], + "x-ms-unique-id": [ "765" ], + "x-ms-client-request-id": [ "0fcc6671-8ad5-4f58-a1fa-fd6d0cc13382" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1570,40 +1570,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9551b546-1dd3-4d2e-b7f0-9d9f33696a66" ], + "x-ms-request-id": [ "f47145f1-c740-4f3b-94f0-ff0bc52045cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c8d2d10-44ed-4590-80d2-ede47fb6b76f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a42adafc-10ba-461e-bbe2-3f62a176c966" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b465a7c6-2531-43c5-abc5-861a5f041906" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192205Z:b465a7c6-2531-43c5-abc5-861a5f041906" ], + "x-ms-correlation-request-id": [ "bf0ec7e4-0436-4e46-850c-160d8e1ecf23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005019Z:bf0ec7e4-0436-4e46-850c-160d8e1ecf23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9FA5DF147D3B4349B6B7911FA2C2E33F Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A960E6365804D28A25BFAA7A1F6E056 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1086" ], - "x-ms-client-request-id": [ "608e9684-8c17-4efc-a229-8763aaa180fb" ], + "x-ms-unique-id": [ "766" ], + "x-ms-client-request-id": [ "6135dd74-5fdc-4713-97cb-507ad0c325bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1615,41 +1615,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0250764e-7dd1-42d2-a114-be1998ad02e9" ], + "x-ms-request-id": [ "80ae4dea-5bb4-45ea-b7e8-c982230c0f6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09cad030-08d0-44b0-9c26-9d887f6e09ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1e9de044-b4fb-409c-b526-ee480853c4a8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "5ca7b9de-d636-4164-ad21-1b606d09f054" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192205Z:5ca7b9de-d636-4164-ad21-1b606d09f054" ], + "x-ms-correlation-request-id": [ "9f6df996-e2d8-45b6-8d51-b84d6b7dccfe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:9f6df996-e2d8-45b6-8d51-b84d6b7dccfe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 167A7A920C8046A6820F48540131AEC0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 834F231F594A4C08B3CEF3489D5A01BB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:19Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1087" ], - "x-ms-client-request-id": [ "67281f1a-5df2-422d-8466-848ff8f3920b" ], + "x-ms-unique-id": [ "767" ], + "x-ms-client-request-id": [ "11fde72d-04d1-478e-b5da-0da1260823e4" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1661,18 +1661,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bbb4a66f-1d6a-4f6a-9c74-597d94791e6c" ], + "x-ms-request-id": [ "8f21cd51-a033-4285-ac57-265487f5de5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0eb31260-721f-499c-9082-1e65928a51e1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "fa2f9e97-b140-4a79-a99e-85c8b06696fd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192205Z:fa2f9e97-b140-4a79-a99e-85c8b06696fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8635f9c4-7912-4d20-a746-ef485f8081e3" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "c7675301-7b75-4f2e-b56b-bd0733d2630d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:c7675301-7b75-4f2e-b56b-bd0733d2630d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 33A26DC2D6BC4D42BA267E73B82DD4C1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D435951E33A149FE82970074B3648139 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1682,19 +1682,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1088" ], - "x-ms-client-request-id": [ "b3627c0c-6b36-48c3-95c2-3b2b222c10ed" ], + "x-ms-unique-id": [ "768" ], + "x-ms-client-request-id": [ "85efc717-7b61-4382-8263-7ab396e83a4d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1705,42 +1705,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7759F8740\"" ], + "ETag": [ "1DCBCBA85744200" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b0bc221d-4ef4-4d07-a918-a2631549a0d4" ], + "x-ms-request-id": [ "423002e5-5ac7-48d9-bb99-81a552ecb58d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a68f8631-0fb6-4853-9cc2-c5eda5923138" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192205Z:a68f8631-0fb6-4853-9cc2-c5eda5923138" ], + "x-ms-correlation-request-id": [ "29ae4d45-85ac-4219-a3d5-f6adc89d5fab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:29ae4d45-85ac-4219-a3d5-f6adc89d5fab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1CB85895FB894E62BDE8CC179A8753CE Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 73E73C4D796040A79F8A15723E63A37F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8283" ], + "Content-Length": [ "8223" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:05.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:20.32\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1089" ], - "x-ms-client-request-id": [ "423851aa-f7f7-4f93-bedd-6b74a591d66c" ], + "x-ms-unique-id": [ "769" ], + "x-ms-client-request-id": [ "7c650ab0-d94d-4272-aab2-a2a53ae80fb6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1752,40 +1752,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "190898e8-7059-4a15-9132-d2b8f18b10eb" ], + "x-ms-request-id": [ "91683278-24cc-4220-b20a-ad893f4181ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/77fd6a80-d3af-4f9c-bedf-426d9255da4c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "982170d9-17e5-4314-a26a-b0f81e5a347a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192206Z:982170d9-17e5-4314-a26a-b0f81e5a347a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/13f6072f-bd70-4fde-90ab-c468dd5655f7" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "92e2f298-aa50-4899-9b0f-b8949e1962fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:92e2f298-aa50-4899-9b0f-b8949e1962fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89BE12867CBD4E72B41DC45C27F34049 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:05Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF7EF2E600A94172A0ED10999201EE04 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1090" ], - "x-ms-client-request-id": [ "8877049f-83bb-4199-9d6c-24ed8dcc3c06" ], + "x-ms-unique-id": [ "770" ], + "x-ms-client-request-id": [ "cd1a12e2-3071-4329-b618-6d1f0f0588fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1797,41 +1797,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da60fc28-a466-4ce6-ab26-f4352997a6bf" ], + "x-ms-request-id": [ "c83c7ba4-fc04-47b9-8d4f-175f4f1acc73" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fad3cdb-8c64-40ec-94a7-4ecbb1bb8e91" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4272f80a-2962-423a-b52c-bc538167aaca" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bc935b22-1f00-4589-9c3e-87c439e47fbb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192206Z:bc935b22-1f00-4589-9c3e-87c439e47fbb" ], + "x-ms-correlation-request-id": [ "1fb6f590-5023-430c-b2c7-0832ecbceefc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:1fb6f590-5023-430c-b2c7-0832ecbceefc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1649A4E48FC42E189754302BB2B0C8A Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:06Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E94ED9916FE47E1A26A8C959C8DD43C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1091" ], - "x-ms-client-request-id": [ "bea2acc4-cb7d-483d-a139-5d45b14cd635" ], + "x-ms-unique-id": [ "771" ], + "x-ms-client-request-id": [ "916b5d9d-b355-432b-b8ad-fa81ab7a2d0b" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1843,18 +1843,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38fba445-8a85-4eee-8aa3-8ce5f730e7b3" ], + "x-ms-request-id": [ "02facdbe-ecab-40f4-9893-0be501152013" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fd1b55cd-5f9b-44d5-a3cd-59d0477c379a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc54f196-efaa-42b2-ad5b-4d68cfc2b5f0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "6bc082b1-65b8-47c2-aab8-72d0265f1629" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192206Z:6bc082b1-65b8-47c2-aab8-72d0265f1629" ], + "x-ms-correlation-request-id": [ "8e5bda12-887d-4f0b-9d22-7bfecde7aa41" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:8e5bda12-887d-4f0b-9d22-7bfecde7aa41" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 017FDCF403A04C498292400692F06D2A Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:06Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF3E494F22554EA2B515F5077755CA28 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1864,19 +1864,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1092" ], - "x-ms-client-request-id": [ "182cde56-7039-4b82-a9e7-389c94614c3d" ], + "x-ms-unique-id": [ "772" ], + "x-ms-client-request-id": [ "ee926360-4439-4960-b17e-b8c0bc90f224" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1887,42 +1887,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7764B71AB\"" ], + "ETag": [ "1DCBCBA8600A380" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e43f275f-08a6-4d5f-9621-4ea3301776d8" ], + "x-ms-request-id": [ "2af30a65-a482-4b86-bbd1-677b7b122e7e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8b4adde4-d075-43c3-9ddb-91c2eb0d5f54" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192207Z:8b4adde4-d075-43c3-9ddb-91c2eb0d5f54" ], + "x-ms-correlation-request-id": [ "a430cb36-5e97-4811-81f4-a3abbf359dcc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:a430cb36-5e97-4811-81f4-a3abbf359dcc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D527D77672FF4780B035FFC5FE2B1DFD Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:06Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71D58B5772D84CC6AC99DFBE4C7DA407 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8223" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:06.7466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:21.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1093" ], - "x-ms-client-request-id": [ "5f220642-f075-4cfb-a1fc-d5231dde131d" ], + "x-ms-unique-id": [ "773" ], + "x-ms-client-request-id": [ "7ef50fed-2e88-42f6-9671-a27fd2726a0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1934,40 +1934,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a5d4dd8c-9249-4a99-9081-96d0ec542251" ], + "x-ms-request-id": [ "08f38f33-b915-4c77-9054-26426b370d2e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd951438-4474-4ec7-8ee0-59e96c2caf02" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ce93d5e-1a33-4bb7-80d3-bd4a44ea87ab" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "90702326-cc8e-46b0-8ca9-287a060a1be9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192207Z:90702326-cc8e-46b0-8ca9-287a060a1be9" ], + "x-ms-correlation-request-id": [ "1f7cc763-b0ae-46de-8c56-041fedd1245f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:1f7cc763-b0ae-46de-8c56-041fedd1245f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F7BFC286FC1247DAAECF07608B061EE0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:07Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95827D61F78D42E98E48DCC2517ED837 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1094" ], - "x-ms-client-request-id": [ "8ed0bae6-40e0-4863-920e-ab0304517717" ], + "x-ms-unique-id": [ "774" ], + "x-ms-client-request-id": [ "28e13239-f32d-4359-acf2-52f1cf1e3826" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1979,41 +1979,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ccf2dc13-7e08-4b58-98b5-4e766bcc442b" ], + "x-ms-request-id": [ "84bb4968-d1e8-40c2-9925-2f54d37debc8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8359259f-5a54-493e-aad0-75eab1a335ff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2e8fff5b-ed6c-48b0-818b-0f03b8c40f18" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192207Z:2e8fff5b-ed6c-48b0-818b-0f03b8c40f18" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e33fb644-b324-4d13-8f55-1a8a0cbb81fb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0071b01e-057a-4ffd-8050-9f902c9d891d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:0071b01e-057a-4ffd-8050-9f902c9d891d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4DD77077A014CF79E337CA48D3E3396 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:07Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44C0971038AE4092B7A0CA91C30DA624 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1095" ], - "x-ms-client-request-id": [ "e7b4c822-49f5-4279-b8bd-304fad9fae7a" ], + "x-ms-unique-id": [ "775" ], + "x-ms-client-request-id": [ "0ea60679-6928-434a-8eb8-1a4a1d7edc3d" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2025,18 +2025,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e75cf3af-1893-4489-9775-f6798daadd60" ], + "x-ms-request-id": [ "30b91922-79f6-402a-9698-5563f7faa993" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09e5df8f-f7dc-4fe7-a5ff-fed52ac4c8ef" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1a024528-d83a-4c4b-bb37-ca18066cad75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192207Z:1a024528-d83a-4c4b-bb37-ca18066cad75" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f30b06f7-8fa9-41b6-ab14-2a9378354b4e" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "88874d90-1c8b-43d2-a39f-76e22986759a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:88874d90-1c8b-43d2-a39f-76e22986759a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 596FE0F0D4344DDEA610E0E5458204F6 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:07Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 607D5C046AB14714BAD88FD2082427AC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2046,19 +2046,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1096" ], - "x-ms-client-request-id": [ "048b6253-a619-4c1c-915c-4c184f7d1099" ], + "x-ms-unique-id": [ "776" ], + "x-ms-client-request-id": [ "96c22cee-e959-463b-8109-35376257439e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2069,42 +2069,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F776E2818B\"" ], + "ETag": [ "1DCBCBA869E5015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e1b957b-b98b-42cd-9a6f-b83fdffda74b" ], + "x-ms-request-id": [ "ab7a18fe-dfee-4ca9-92eb-c179cde781de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cd511564-8138-4762-b308-8a3d861a80ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192208Z:cd511564-8138-4762-b308-8a3d861a80ea" ], + "x-ms-correlation-request-id": [ "219cb72a-2072-4133-81a0-f8427898a43d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:219cb72a-2072-4133-81a0-f8427898a43d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA8E636707A84B218758522441252C44 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:07Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B952314AB4114CBDA196292C2858D4C8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8228" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:07.7366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:22.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1097" ], - "x-ms-client-request-id": [ "b01c2af2-6d5d-4ed1-a805-f775125f3ec7" ], + "x-ms-unique-id": [ "777" ], + "x-ms-client-request-id": [ "7f7ff615-5ef0-4215-9d84-a80784517c9e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2116,40 +2116,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d09f6867-19c8-4a9d-9a10-cf245b2d5c8b" ], + "x-ms-request-id": [ "8109d7a0-c5fc-4043-9ec7-eafb937ed1e4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8522a18d-957d-43f2-a488-925132dbb598" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "07f1d8df-88b7-4b50-9077-0b5f4f37cae3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192208Z:07f1d8df-88b7-4b50-9077-0b5f4f37cae3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd4f638e-1d58-42ef-9354-9b61e7e1abe0" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "f9b454e0-951c-4610-a42a-3caed29331af" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:f9b454e0-951c-4610-a42a-3caed29331af" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E0490AA8BBA42AB8801767BA0D88527 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:08Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D92B20664609487592C6BF32FFFA888C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1098" ], - "x-ms-client-request-id": [ "d8ac21bd-d103-4ae2-a1ef-3b8a199770eb" ], + "x-ms-unique-id": [ "778" ], + "x-ms-client-request-id": [ "c43690b2-ee12-4c0e-b747-74b45f8c7ceb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2161,41 +2161,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffd2b651-6a4a-4faf-9c9d-68b5fb635006" ], + "x-ms-request-id": [ "e1a5ed41-cf37-4e46-aa5a-d3c04f1ac421" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15cd9f59-bcaf-4cfd-afc1-efed2f1f1212" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1811f625-e538-49cc-97c1-1e024ae0f98a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192208Z:1811f625-e538-49cc-97c1-1e024ae0f98a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/971ea52b-d92e-44e5-a645-62ae356adbb9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a4ffa93b-d4ac-42d9-9b5c-6f1e4d263d3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:a4ffa93b-d4ac-42d9-9b5c-6f1e4d263d3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90906FE91AC1453799AFFC5E3DD08260 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:08Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BEAAE770ECC4ED183D2B76106E9574B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1099" ], - "x-ms-client-request-id": [ "737317df-7c86-417c-815c-8d8ce3eeefe7" ], + "x-ms-unique-id": [ "779" ], + "x-ms-client-request-id": [ "866c802a-3371-48dc-8bc8-e487be1b5543" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2206,42 +2206,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F770C9882B\"" ], + "ETag": [ "1DCBCBA7FB7DA8B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "076a1c07-41c5-43ce-a354-5a8ff13cedf3" ], + "x-ms-request-id": [ "3784e760-3ea6-4411-b917-bfc84e417183" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "97c8aa16-0d2d-4ea6-8c7f-01efca1032a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192208Z:97c8aa16-0d2d-4ea6-8c7f-01efca1032a6" ], + "x-ms-correlation-request-id": [ "307cec8f-cb84-4032-be8a-4825034a30c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005023Z:307cec8f-cb84-4032-be8a-4825034a30c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 362844F1630D4C04BF4456EFA187E437 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:08Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9122EF78789547AAA5BEAA20890C935B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:21:57.5066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:10.6966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1100" ], - "x-ms-client-request-id": [ "192d9273-ff8c-4612-9296-48d5394f2ae2" ], + "x-ms-unique-id": [ "780" ], + "x-ms-client-request-id": [ "8b52ca11-20a7-4b2d-bb38-dccfb648b594" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2253,40 +2253,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "acbd73cd-2975-449c-870a-f444b1cb3418" ], + "x-ms-request-id": [ "8fc10ae8-9dc9-4591-a423-a259cecadd9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8333a18-6e11-4a2c-a7c1-d1251b2f6842" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8095928-a26e-40bd-b367-8611eb9629a9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f6e5b771-96ca-49d0-b6f2-c4049ab94462" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192209Z:f6e5b771-96ca-49d0-b6f2-c4049ab94462" ], + "x-ms-correlation-request-id": [ "f0cd8011-ea72-4e34-abec-e1319df5149d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005023Z:f0cd8011-ea72-4e34-abec-e1319df5149d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6CBAC83EB7854D7E9439C69D2A3A7C0F Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:08Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCFFA76D84A043609D76148C727E9B65 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1101" ], - "x-ms-client-request-id": [ "9fc8bfb8-5c85-4d7a-9334-a9707fabdb60" ], + "x-ms-unique-id": [ "781" ], + "x-ms-client-request-id": [ "d2b2ad0f-a332-49ad-a272-0689882644ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2298,41 +2298,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b7551a5c-5d96-4fc7-983a-d0ea9fefcb2b" ], + "x-ms-request-id": [ "a3c6e65a-60c8-4715-af42-18e33a304940" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8af3be41-a146-42a6-8f50-be165020785c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "cf2d5cf1-5dcb-481e-8613-f13d0a4fbe52" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192209Z:cf2d5cf1-5dcb-481e-8613-f13d0a4fbe52" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/68780373-0945-4c2e-870b-2d609a322a12" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a14c0e64-0c96-490b-8af1-97f40f7b28df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005023Z:a14c0e64-0c96-490b-8af1-97f40f7b28df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 25746697D5C343F7A6AC316F2B710284 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:09Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC853C25EC634E30B9DF4C9732E6E40D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1102" ], - "x-ms-client-request-id": [ "e940225a-2b99-44c1-90ef-1aea0f031ca5" ], + "x-ms-unique-id": [ "782" ], + "x-ms-client-request-id": [ "c3340563-ee94-47b8-9691-27d382b7d74f" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2344,18 +2344,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8228764-4070-4db5-a301-2f49ebdb4956" ], + "x-ms-request-id": [ "d575dcb4-f604-49b2-b418-5f8ee381a3d4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4ba409d-2a51-4fed-b407-a3e8a5dc16c9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d92d973c-f8c6-46bd-b5fd-0bf0da952ef2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "63d3e8c7-fd07-4a39-b803-d946142f5cc3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192209Z:63d3e8c7-fd07-4a39-b803-d946142f5cc3" ], + "x-ms-correlation-request-id": [ "c569bb53-5b9b-4c1b-9fae-5bbadec02c5f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:c569bb53-5b9b-4c1b-9fae-5bbadec02c5f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C5A95E48F6D4F1B8DEF90A22B6F1D30 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:09Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4A5C15431D84BA6909E49CFF2D0F6C9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2365,19 +2365,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1103" ], - "x-ms-client-request-id": [ "8b4efe49-78ac-443e-992e-bf23dfe7237b" ], + "x-ms-unique-id": [ "783" ], + "x-ms-client-request-id": [ "6fb28930-5e63-4a4e-a36c-44d8e6fe6d69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2388,42 +2388,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F777FE51CB\"" ], + "ETag": [ "1DCBCBA879E26E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb04776b-8a3e-4a7f-8cb7-c5f79098497b" ], + "x-ms-request-id": [ "cac9afcd-57ca-47aa-a8a9-a25a6b6dfa52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6248ce77-9709-45fb-a9ec-b4a52980f2c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192209Z:6248ce77-9709-45fb-a9ec-b4a52980f2c7" ], + "x-ms-correlation-request-id": [ "81de7ecf-c0ab-4c60-aca0-38f27e376fe1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:81de7ecf-c0ab-4c60-aca0-38f27e376fe1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B90BF3955BB84DB89B23D1B8C98426DB Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:09Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1A581BE78B4482F96810A43F24F7E12 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8307" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:09.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:23.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1104" ], - "x-ms-client-request-id": [ "075c2cd1-66be-4f6f-bbdc-d127a9299a21" ], + "x-ms-unique-id": [ "784" ], + "x-ms-client-request-id": [ "615b41fc-1771-48f9-9e97-c283735dd8a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2435,40 +2435,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa431a48-c5e9-4643-b6db-bb7eaa82da75" ], + "x-ms-request-id": [ "870cd579-86a8-49a5-b04a-4407e897c671" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c876759d-07b8-4ab2-bcbb-22f69dde51c6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "acf5b45f-b0d8-40f1-b867-67b1f010b206" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192210Z:acf5b45f-b0d8-40f1-b867-67b1f010b206" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ec57ea25-0792-438c-a2b5-5d030b94b4ac" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "c150d937-5861-4649-b169-32f9e4451afa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:c150d937-5861-4649-b169-32f9e4451afa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B9B3AB6D4F24EA884F426A18B06DEB3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:10Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B1040D3856C4E6E83452A4724FA672F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1105" ], - "x-ms-client-request-id": [ "dcc31ced-b014-451c-a0de-86ec5456f238" ], + "x-ms-unique-id": [ "785" ], + "x-ms-client-request-id": [ "70a19eca-b378-4b9d-9366-1d2a0a584b39" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2480,41 +2480,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36f85093-c282-4ee6-9205-e2e18279b158" ], + "x-ms-request-id": [ "093c1ad9-ecff-4889-91e9-3e78eb87a8d1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2df5998e-ab74-4fc5-adc1-cd21bc9e1833" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "83bd7d13-7609-4eea-8670-6f141528e73a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192210Z:83bd7d13-7609-4eea-8670-6f141528e73a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59745cbd-3575-47c2-9ca8-b59b0e6b3f17" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5c442d3b-84ab-4839-9c13-1646b66849d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:5c442d3b-84ab-4839-9c13-1646b66849d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 23D91A3F4E144E0FB301CCD6275A10B5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:10Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A3A107A9A11E447FBB57E1626373750D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1106" ], - "x-ms-client-request-id": [ "c9d3d070-4535-4d9e-81e2-e97db714da35" ], + "x-ms-unique-id": [ "786" ], + "x-ms-client-request-id": [ "8576cfab-a734-4da4-9830-0b63db7b38b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2525,42 +2525,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F777FE51CB\"" ], + "ETag": [ "1DCBCBA879E26E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "566ff946-f1eb-4fc4-af29-31b121fced8d" ], + "x-ms-request-id": [ "d7f2f740-1104-4c81-a244-9ccb35d63cb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "559103b0-b1ff-4c9d-a657-aa8fc3c39326" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192211Z:559103b0-b1ff-4c9d-a657-aa8fc3c39326" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8b50f38d-0459-4ff4-aad7-5f7317424280" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:8b50f38d-0459-4ff4-aad7-5f7317424280" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 081817B5BE7B4FBC876913B9AE840C1E Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:10Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E3F04F153314BF69112A8F04B13AEC3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8307" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:09.5966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:23.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1107" ], - "x-ms-client-request-id": [ "75d1c181-511a-4071-a9bf-9def5a953f04" ], + "x-ms-unique-id": [ "787" ], + "x-ms-client-request-id": [ "584d89d9-e7ca-4503-bf08-ecf77585e088" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2572,40 +2572,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d246d354-d686-4c32-9284-84e8214ce092" ], + "x-ms-request-id": [ "df02e1f7-2645-4145-aeed-45fec226aca1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b29ab5de-69f6-4243-9bbb-1cc86f400009" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2760d284-1813-4d1e-b136-68efaf5fc14a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192211Z:2760d284-1813-4d1e-b136-68efaf5fc14a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d0ba974-c00f-4f14-bd95-eceda555dc2b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "28d9cef1-c190-48de-8519-73a2f28b930d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:28d9cef1-c190-48de-8519-73a2f28b930d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D1A540497A147239B83D8C35BE03678 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:11Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E74ABAA4D2D240F593B9E33384FD833B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1108" ], - "x-ms-client-request-id": [ "5b5204a4-8139-4cc0-95b0-81d897459a52" ], + "x-ms-unique-id": [ "788" ], + "x-ms-client-request-id": [ "313a2ab2-6806-4fee-b199-538dd782361c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2617,41 +2617,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d210c5e-db37-458c-bfd6-908dce6a3fb6" ], + "x-ms-request-id": [ "dfa16633-308e-4394-8ad6-0d8cdb6ea437" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/09d82ce5-cdb1-497c-91e6-f00dfd8ab2fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b87fa747-ee0d-42d8-882d-7ac447475948" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c3215358-5299-47a5-a420-6e1fe07b5c96" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192211Z:c3215358-5299-47a5-a420-6e1fe07b5c96" ], + "x-ms-correlation-request-id": [ "15be963f-50f8-40de-9fa7-21b2a5f09519" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:15be963f-50f8-40de-9fa7-21b2a5f09519" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AA25C070C844152BBF545D0E66D5923 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:11Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7CFA519B62440B5B36539AA50A2B83A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1109" ], - "x-ms-client-request-id": [ "89579c19-b8b3-44ce-820e-0c2217a794cd" ], + "x-ms-unique-id": [ "789" ], + "x-ms-client-request-id": [ "97af3a28-1152-4d20-84db-e7db4570afe1" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2663,18 +2663,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ffe4a07-fe48-42f9-a715-fdcfafbcd4f7" ], + "x-ms-request-id": [ "192eb17c-8b92-4ffa-9b24-e976dc246cbb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/479e8042-b132-4881-8fbc-d036830bb65a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/accd2a8b-3429-4bab-b00f-e2a5c5f9d7e7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "124ccd26-370d-434b-8ac7-e00160673f5b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192212Z:124ccd26-370d-434b-8ac7-e00160673f5b" ], + "x-ms-correlation-request-id": [ "19f77364-e26d-4a59-a6a6-97c8385bb3d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:19f77364-e26d-4a59-a6a6-97c8385bb3d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD616DD3ADC2422988D54976995A8A25 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:11Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B8EE85612F374A75B54DEAAF298E5359 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:25Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:25 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2684,19 +2684,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1110" ], - "x-ms-client-request-id": [ "27e4d83b-90d1-4724-bcc0-89c7404cc3cf" ], + "x-ms-unique-id": [ "790" ], + "x-ms-client-request-id": [ "97d4006a-134f-42b4-9631-cd802f42232b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2707,42 +2707,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77967F3EB\"" ], + "ETag": [ "1DCBCBA88C527B5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed1da307-0453-45cd-835e-2126875f1d4e" ], + "x-ms-request-id": [ "860b1bf2-7805-4cae-a94f-0958913c5cd3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bb3d54b2-0ea9-4886-995b-86250d40f288" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192212Z:bb3d54b2-0ea9-4886-995b-86250d40f288" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ab9eff41-5c65-4840-b025-2e99f3eb59c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:ab9eff41-5c65-4840-b025-2e99f3eb59c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFB8C0C17FE144E1B4026753F15D1715 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E4D648B7D69C4E8E819D1407CB6E8A58 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:11.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:25.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1111" ], - "x-ms-client-request-id": [ "d5e40ef4-818c-4682-a470-2833f1fd01b4" ], + "x-ms-unique-id": [ "791" ], + "x-ms-client-request-id": [ "d8e5876e-5fa6-4455-a66f-fad8d90c7068" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2754,40 +2754,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e7f3b12-3fbe-4629-911b-e8cb84506f17" ], + "x-ms-request-id": [ "4ea0ebc8-e75f-4114-a246-09a623d98496" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/062dda97-b29d-4dc9-bf21-e72bd1883a3c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3cf590a-ae9b-4f17-a428-32ba5412e3bf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9e686352-ff4e-4cf5-a919-a4e9f67f499a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192212Z:9e686352-ff4e-4cf5-a919-a4e9f67f499a" ], + "x-ms-correlation-request-id": [ "bf83b2fa-a04e-4e3c-a7da-d0ebdab4ca6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:bf83b2fa-a04e-4e3c-a7da-d0ebdab4ca6d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 767B2A49D5CC45F5B9D4A4AB077C40B9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42EE04E143BB4EC4AFD7522B588E52A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1112" ], - "x-ms-client-request-id": [ "a6bd9d24-7db6-4825-8134-1907bcab54ef" ], + "x-ms-unique-id": [ "792" ], + "x-ms-client-request-id": [ "0d420138-f802-4137-9908-be985080f3da" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2799,41 +2799,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "773c4546-0077-4b5d-9ca1-51ed90bd1c08" ], + "x-ms-request-id": [ "792f9360-4eab-46c1-8f24-3546782b2d64" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29ea5f75-19ca-4df8-a736-480f50c061ba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/badec13b-6013-4df3-9b6d-9245ff3b5bb0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "292376bc-6a36-4808-8001-bdf8eb1f1187" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192212Z:292376bc-6a36-4808-8001-bdf8eb1f1187" ], + "x-ms-correlation-request-id": [ "161eb94e-4f5d-49bb-9dbf-45a9d194c210" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:161eb94e-4f5d-49bb-9dbf-45a9d194c210" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B50D8DE5B67A4499AE9F612D5D4FE98D Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26139DD72F574966A851DC5422DABD22 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1113" ], - "x-ms-client-request-id": [ "9d579681-3b41-4271-9758-5273b7e4c290" ], + "x-ms-unique-id": [ "793" ], + "x-ms-client-request-id": [ "ae8735f6-983a-4520-90cf-418fc8ba3ce2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2844,42 +2844,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77967F3EB\"" ], + "ETag": [ "1DCBCBA88C527B5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6220853d-4316-4fc7-9c2b-d8d1a62cc845" ], + "x-ms-request-id": [ "5d8ee3ec-bbcb-4cc9-8ce9-f26954e58d5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0fe7a060-7617-435d-87a6-52fd6b151bea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192213Z:0fe7a060-7617-435d-87a6-52fd6b151bea" ], + "x-ms-correlation-request-id": [ "c953e3da-d42e-492e-9b8f-50a3af6c34d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:c953e3da-d42e-492e-9b8f-50a3af6c34d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 28B695FAD31140CD93262F3034E6C7E5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:12Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE5325650E9946AFA175F1AB30389B3E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:11.9666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:25.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1114" ], - "x-ms-client-request-id": [ "802d851a-6fac-4c5c-87fd-339de353d97f" ], + "x-ms-unique-id": [ "794" ], + "x-ms-client-request-id": [ "7a849214-5513-49af-9fcd-70f9d118eec1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2891,40 +2891,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e5c17d8-b8f0-4eb7-a469-d38b89cbd405" ], + "x-ms-request-id": [ "51693935-0e45-4b54-a2ff-5815639a1b5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e1680faf-88ff-42b7-8bde-f5cfcc6b1f3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/227de884-ea48-4982-8027-0649a9876bab" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "72753b18-5ebd-42e9-8fc1-2a437348c171" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192213Z:72753b18-5ebd-42e9-8fc1-2a437348c171" ], + "x-ms-correlation-request-id": [ "5eecad50-bbbb-458e-ada5-a672df753e7a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:5eecad50-bbbb-458e-ada5-a672df753e7a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46F05FA70E8048A499207F938EB08A0B Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:13Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB34D862CC4747EBA7613C0C20395883 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1115" ], - "x-ms-client-request-id": [ "34c153bc-c27a-4251-a8cb-c8ceb7be870f" ], + "x-ms-unique-id": [ "795" ], + "x-ms-client-request-id": [ "29a52a99-fbe5-4126-9868-680872508f15" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2936,41 +2936,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "011ccf1b-f0bd-4fbd-943f-6f9507994597" ], + "x-ms-request-id": [ "cc3fa95d-6b8e-4244-95e3-4a7105cc7e3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c88ef25-ebf8-4449-93a8-d40e156c006f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "67198b9d-350d-4017-9f00-6d901bd63c43" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192213Z:67198b9d-350d-4017-9f00-6d901bd63c43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f1e972d-ce26-43d2-a3ed-d134fe21b4ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1a77b665-db20-4c72-9a4b-c963e643f209" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:1a77b665-db20-4c72-9a4b-c963e643f209" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65A019ED81544EAA8A1BBB263F9A7527 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:13Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E96C299323C247A3AE6E8A5E4243EB57 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1116" ], - "x-ms-client-request-id": [ "51db4f34-ad7b-4c03-a710-cfb503ef344d" ], + "x-ms-unique-id": [ "796" ], + "x-ms-client-request-id": [ "a187fbae-10c7-454d-ac7d-6a3b53bfbd9c" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2982,18 +2982,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20ddb054-1fb3-40cc-96e1-e70fa6388a78" ], + "x-ms-request-id": [ "3d3c5e36-f2f5-46c5-b9fc-068805c3363b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b0692416-2471-4794-b619-f551a8f147e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/166a941c-2b51-4eca-9a84-06c299f79604" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "40bf343c-75d9-4196-bcfb-81db4413a02d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192213Z:40bf343c-75d9-4196-bcfb-81db4413a02d" ], + "x-ms-correlation-request-id": [ "0d5564d8-028e-4180-8cab-abbf90b96780" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:0d5564d8-028e-4180-8cab-abbf90b96780" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C522A0FDE05C44D59F636974018960B6 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:13Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61EAC03DEA61496681A364BEED7634C3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3003,19 +3003,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1117" ], - "x-ms-client-request-id": [ "945de6d0-e5b2-4ef1-a399-fc14e91322be" ], + "x-ms-unique-id": [ "797" ], + "x-ms-client-request-id": [ "64596278-6f30-4299-8abd-0735ac137b5c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3026,42 +3026,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77A854ACB\"" ], + "ETag": [ "1DCBCBA89D4C2F5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "829ce361-6f70-451f-95f0-3a5ffba862fa" ], + "x-ms-request-id": [ "f8099818-83d8-440f-b6e7-334474d082c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a42d831b-041b-4daa-b112-562b55778ae2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192216Z:a42d831b-041b-4daa-b112-562b55778ae2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "cc19e468-e90d-4a9b-bb8c-2cc6f6a148ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:cc19e468-e90d-4a9b-bb8c-2cc6f6a148ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C07EC71648C446D922024F94D0AB0F8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:14Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF548A3187FA4E7CA80B7B79A5235A0F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-8m0tjy\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-005.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-y9jkp1-CentralUSwebspace/sites/Functions-PowerShell-74-8m0tjy\",\"repositorySiteName\":\"Functions-PowerShell-74-8m0tjy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-8m0tjy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-arx9yi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:13.8366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-8m0tjy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"104.43.142.33\",\"possibleInboundIpAddresses\":\"104.43.142.33,13.89.172.15\",\"inboundIpv6Address\":\"2603:1030:10:6::25\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::25\",\"ftpUsername\":\"Functions-PowerShell-74-8m0tjy\\\\$Functions-PowerShell-74-8m0tjy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-005.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,104.43.142.33\",\"possibleOutboundIpAddresses\":\"104.43.142.10,104.43.140.245,104.43.138.245,104.43.136.147,172.169.66.92,40.113.193.177,40.122.130.194,13.67.234.137,40.122.160.63,40.77.111.130,20.106.30.22,20.106.30.73,20.106.30.109,20.106.30.148,20.106.31.42,20.106.31.76,20.37.128.51,20.37.128.75,20.37.128.78,20.37.128.111,20.37.128.171,20.37.129.99,104.43.142.33\",\"outboundIpv6Addresses\":\"2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:12::7b,2603:1030:b:7::260,2603:1030:b:e::28,2603:1030:b:25::196,2603:1030:b:e::2a,2603:1030:b:b::26d,2603:1030:b:a::257,2603:1030:b:3::2ea,2603:1030:b:e::220,2603:1030:b:f::3a,2603:1030:b:9::1d0,2603:1030:b:c::246,2603:1030:b:5::319,2603:1030:b:a::25b,2603:1030:b:9::1d1,2603:1030:b:13::7d,2603:1030:b:b::2,2603:1030:b:5::31b,2603:1030:b:a::5c,2603:1030:b:7::2b2,2603:1030:b:a::5d,2603:1030:10:6::25,2603:10e1:100:2::682b:8e21\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-005\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-y9jkp1\",\"defaultHostName\":\"functions-powershell-74-8m0tjy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:27.6633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1118" ], - "x-ms-client-request-id": [ "216150ae-01c5-43cb-8197-5ac9b7f1bb22" ], + "x-ms-unique-id": [ "798" ], + "x-ms-client-request-id": [ "c915b400-1863-4778-976f-cd91ca478a86" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3073,40 +3073,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d56896dc-9fb9-4a78-be6f-2e8a18d4183d" ], + "x-ms-request-id": [ "51f3d687-c4ec-4ae4-9741-089ac7195f36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e8332d3-327b-4a80-ab8a-5ad21a2162b4" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a2a52290-b987-4541-aa89-29f2c90f6a07" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192216Z:a2a52290-b987-4541-aa89-29f2c90f6a07" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75a5770c-d2bb-4ff7-bf48-cd4988e4184d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "21cfe4eb-6dc1-4c34-b0e3-54fb43f9d0d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:21cfe4eb-6dc1-4c34-b0e3-54fb43f9d0d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6277E10CC0FB4B638E40232D60345C92 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A0EFFE1C81C44988F7798EC57A55BE8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-8m0tjy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-8m0tjy\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1119" ], - "x-ms-client-request-id": [ "5c75da0e-7d84-493a-94ea-77306025dfdf" ], + "x-ms-unique-id": [ "799" ], + "x-ms-client-request-id": [ "cbe9d7b4-6d1a-413b-91fc-945982245212" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3118,41 +3118,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f76bd57-d5fe-4378-9430-11f33c46ac32" ], + "x-ms-request-id": [ "84a7d582-f26b-4a48-abca-ec5b26087ae2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/77243a80-b7b9-4461-bde0-7ce778d55420" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/01d34127-12b6-42f2-ae88-4378092b2a33" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e8fe3da-2e81-436b-b3ce-d9b1bd4dea24" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192216Z:4e8fe3da-2e81-436b-b3ce-d9b1bd4dea24" ], + "x-ms-correlation-request-id": [ "aca57566-20fb-4ccb-b743-319489171a38" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:aca57566-20fb-4ccb-b743-319489171a38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92A9FCB6878F420C9C88423CDC1588DF Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F409C6438E749B196D6C9DFFDC3C67E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Web/sites/Functions-PowerShell-74-8m0tjy/config/web\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1120" ], - "x-ms-client-request-id": [ "5cb99b35-1f82-4c0a-a1b7-d90ce4fc7cf9" ], + "x-ms-unique-id": [ "800" ], + "x-ms-client-request-id": [ "ae8da1c4-1b18-4bad-a08c-0f183ecae60e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3163,42 +3163,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77293CDE0\"" ], + "ETag": [ "1DCBCBA8292BFEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3093949-619d-41fd-9c64-847352870634" ], + "x-ms-request-id": [ "1fc0279c-eb3b-4aee-bd8a-203025e4a407" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d744d9d-9e03-4dc6-8217-c9a9a4a444df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192216Z:1d744d9d-9e03-4dc6-8217-c9a9a4a444df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "4c38006d-11f8-494d-9345-89d0f4498390" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:4c38006d-11f8-494d-9345-89d0f4498390" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2552B036D6F44A959DB2DB467A9554B3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 489F9C7C9B644C3694DB871209021AC4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8332" ], + "Content-Length": [ "8422" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:00.51\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1121" ], - "x-ms-client-request-id": [ "ed2a1810-2fb4-4e96-aadf-014278fd95d2" ], + "x-ms-unique-id": [ "801" ], + "x-ms-client-request-id": [ "adcbc9bc-9a7b-425e-81af-66c71ac23fc0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3210,40 +3210,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "224e75e4-390e-4d49-b88c-5fa0b55e3948" ], + "x-ms-request-id": [ "07b0d80a-f777-4b9c-bad4-b0fbcc6d9243" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5e8fd030-8d46-4c75-adac-e2812c1847a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65c03318-2551-42a8-96ad-b101e29caad7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ee377ff0-dfe6-420c-8a2e-8e47915fd153" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192217Z:ee377ff0-dfe6-420c-8a2e-8e47915fd153" ], + "x-ms-correlation-request-id": [ "ac446d41-827c-4a80-99a1-cce70735d628" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:ac446d41-827c-4a80-99a1-cce70735d628" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13FEDD6E52A04A72825C781665228872 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:16Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A439D5855AB74158B99CD046B709C3E3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1122" ], - "x-ms-client-request-id": [ "bfc7f61a-73f3-4fff-b168-76a2e24adde8" ], + "x-ms-unique-id": [ "802" ], + "x-ms-client-request-id": [ "878d0b73-5b1c-41a6-9d9c-15b951c1d47d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3255,41 +3255,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c7171047-2e7a-4896-976d-69a114b1223a" ], + "x-ms-request-id": [ "c80213dd-db99-4bba-8b35-1927a2d0dca0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8975f86-5276-43d7-b506-7c2e73cd5b13" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14a1bee4-025b-4b19-882c-cb09d7a78682" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "754b0a97-f793-4297-b602-4a06367f58ff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192217Z:754b0a97-f793-4297-b602-4a06367f58ff" ], + "x-ms-correlation-request-id": [ "b6fa31c6-efd3-4dc5-a37b-c8d0c6cb1532" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:b6fa31c6-efd3-4dc5-a37b-c8d0c6cb1532" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6679539E5B2A4CE5B3FEF0479DB5632C Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F178F45A05AF42298EC49E7A22590EE2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1123" ], - "x-ms-client-request-id": [ "67019744-af26-4b27-81a2-8143d2540d56" ], + "x-ms-unique-id": [ "803" ], + "x-ms-client-request-id": [ "d4d116c6-5142-4f9a-95cc-de2edf9375d0" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3301,18 +3301,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f950ee3d-f3e1-406f-a7cd-6db82b3cd346" ], + "x-ms-request-id": [ "8fff8d3e-5817-41e1-89fe-f09646166318" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/082aa07a-0676-4e80-8ab8-0e625ba07e40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/35cd85bd-ae17-443e-adc8-e215f225c969" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b3b123e5-8fec-4d3c-98f1-814d449bcb6c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192217Z:b3b123e5-8fec-4d3c-98f1-814d449bcb6c" ], + "x-ms-correlation-request-id": [ "5de488de-b473-4eba-8115-9a60c069c609" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:5de488de-b473-4eba-8115-9a60c069c609" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F434A0BDF329481B802BD6935A271145 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8317E4B0F8D4BF2807A4E7CAEAEAF4C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3322,19 +3322,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1124" ], - "x-ms-client-request-id": [ "49a4746d-6315-43f8-a277-d98a7a91fdc8" ], + "x-ms-unique-id": [ "804" ], + "x-ms-client-request-id": [ "0c9ab50e-b9f7-4f16-840c-db92442cf1ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3345,42 +3345,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77293CDE0\"" ], + "ETag": [ "1DCBCBA8292BFEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ef492bf2-0853-4218-8aaf-398b9990742b" ], + "x-ms-request-id": [ "b847d868-2bc8-4f75-9ddb-23c804ef9a15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3d55ab37-3e1e-4307-9837-ac3696ed81ae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192217Z:3d55ab37-3e1e-4307-9837-ac3696ed81ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "14ed6f43-5637-42d2-a92c-345a4bbd0b74" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:14ed6f43-5637-42d2-a92c-345a4bbd0b74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F0A60EB62364613B39DEC1EAF8A6EE1 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 585C0F00F3B34B3F8A776693EA282E0C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8332" ], + "Content-Length": [ "8422" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:00.51\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1125" ], - "x-ms-client-request-id": [ "f1f15da9-2935-41b8-a952-eae9795f6a27" ], + "x-ms-unique-id": [ "805" ], + "x-ms-client-request-id": [ "5715d820-6c97-497f-9eed-30ea1d4b3850" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3392,40 +3392,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eeb9c786-630c-4d91-a4af-4607f790bdec" ], + "x-ms-request-id": [ "dc5c224f-c90c-4974-8bea-41b7b20fe6ef" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4fb1587f-d5ec-44e3-a02f-88847535f70c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce39f3df-f9f4-4a20-8da5-9f335aaf36b3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7cd5edf7-7e6d-491d-80da-b588098b9829" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192218Z:7cd5edf7-7e6d-491d-80da-b588098b9829" ], + "x-ms-correlation-request-id": [ "eb2b2f50-95b7-424b-99d3-b5374d53d36c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:eb2b2f50-95b7-424b-99d3-b5374d53d36c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38D1E505B7344659AA32C2134690E855 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:17Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C56215D56F35412DAFBF4CAF5D23EDDC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1126" ], - "x-ms-client-request-id": [ "233776f4-6ba3-4a4c-aa65-9ef7a97a592b" ], + "x-ms-unique-id": [ "806" ], + "x-ms-client-request-id": [ "a54440d6-d30e-4721-bddf-1dfcb43a3ca9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3437,41 +3437,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac50619b-f190-44ce-98c2-eb7003c16250" ], + "x-ms-request-id": [ "075b5ebb-65a0-4314-aabf-42af9e83b302" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c069208-8323-4ad8-b783-e36bb9087610" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c32573e-5c3c-4a7b-88c3-ae87e2907326" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25c23e17-a7fe-49b1-92e3-25f7e194abeb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192218Z:25c23e17-a7fe-49b1-92e3-25f7e194abeb" ], + "x-ms-correlation-request-id": [ "40d8fa6c-ebb5-453c-96b9-c48001313bde" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:40d8fa6c-ebb5-453c-96b9-c48001313bde" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 06CD8D75F3274B3CA543C1D9430D4E45 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22B93DE4299C42A090A80AE7920FE4D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1127" ], - "x-ms-client-request-id": [ "15ab38ff-cb9a-431c-88b4-ce9594e6af58" ], + "x-ms-unique-id": [ "807" ], + "x-ms-client-request-id": [ "2b1892ac-5f8b-4988-a56f-3129f5128a15" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3482,42 +3482,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77293CDE0\"" ], + "ETag": [ "1DCBCBA8292BFEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13b5ebdf-99b9-48b4-b646-a10e6a20a001" ], + "x-ms-request-id": [ "ed3ef9af-0dc5-4acc-844d-d7dec334168d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4db075d8-e9e7-43e3-a7cf-7b0f0a7759b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192218Z:4db075d8-e9e7-43e3-a7cf-7b0f0a7759b7" ], + "x-ms-correlation-request-id": [ "eb9d6739-67e6-498a-b293-4125e5192449" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:eb9d6739-67e6-498a-b293-4125e5192449" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E151465D7128464E8DA6252AA593D034 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1BB773ED3254B97BA9F29EDA3432439 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8332" ], + "Content-Length": [ "8422" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:00.51\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1128" ], - "x-ms-client-request-id": [ "0f6b24c2-902f-4a6f-b34c-d0bc55045188" ], + "x-ms-unique-id": [ "808" ], + "x-ms-client-request-id": [ "db036ae1-9960-4e8c-bba6-3019195de648" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3529,40 +3529,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8bc93fe1-56fc-4dd3-88ac-b587abacde33" ], + "x-ms-request-id": [ "fc1a20e3-580a-4bfb-b532-5e8f33209132" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a831f3fb-c6c8-4df0-8897-66ee1a3ae7ce" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/321c629b-0aa7-446b-8b5e-66cce01b6513" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "23b4cfef-328f-4a79-b5be-8df8d8908cef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192218Z:23b4cfef-328f-4a79-b5be-8df8d8908cef" ], + "x-ms-correlation-request-id": [ "646e20ab-8578-4439-8e11-4178aad47275" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:646e20ab-8578-4439-8e11-4178aad47275" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D3AA7B98CC834372A534706BE9109027 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45EF8FBC3E0A48A79687133ABB382B43 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1129" ], - "x-ms-client-request-id": [ "1482ad2e-3e05-43fa-871f-bc339470ad3a" ], + "x-ms-unique-id": [ "809" ], + "x-ms-client-request-id": [ "f02a4099-2f18-4c14-9288-0e4bdb521f73" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3574,41 +3574,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9d9c9f4-02fb-4aba-b9c9-b3b6fca38de9" ], + "x-ms-request-id": [ "854221ad-a947-458c-9fa3-d6868be701da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f9ad73d1-6f21-4bc8-9f94-b6a29259eeb2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/acd1e425-95ea-4394-a704-3f591f425e31" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d11358c3-6b3c-430e-b476-1ec7133a05bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192219Z:d11358c3-6b3c-430e-b476-1ec7133a05bd" ], + "x-ms-correlation-request-id": [ "08b6b13d-8329-4fba-b35f-699d3ead43bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:08b6b13d-8329-4fba-b35f-699d3ead43bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D89F55EF24D8481C8346FBA12833608B Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:18Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58D9AE47892C4BB4A5539F0EB64E86D9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1130" ], - "x-ms-client-request-id": [ "e37fbb1f-e1ee-410d-a561-5e305ad748e0" ], + "x-ms-unique-id": [ "810" ], + "x-ms-client-request-id": [ "d4fdf492-4948-4425-880c-75d1f23d8043" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3620,18 +3620,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3fe9b0b-70af-4279-bd6a-21657a81d372" ], + "x-ms-request-id": [ "a3cfd375-8edd-4502-a6ac-5f111939b259" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0d23ee1f-2fd9-44fb-94b9-8d5e05f59965" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f050f579-cad7-405d-957f-c06dcdb85590" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192219Z:f050f579-cad7-405d-957f-c06dcdb85590" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a9e566c-7a65-43f2-816b-9f3848a7456d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "42ce94bc-6b12-4bc3-b90b-921ef5a9e8ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:42ce94bc-6b12-4bc3-b90b-921ef5a9e8ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D91741C411CC4FA6999C8B05082A4E27 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6DB40FBEB3CD47C6AC447702728F7C8E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3641,19 +3641,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1131" ], - "x-ms-client-request-id": [ "7afc9960-9340-4838-9244-b08ef3ce1c4e" ], + "x-ms-unique-id": [ "811" ], + "x-ms-client-request-id": [ "04813777-4755-4710-90df-8d25e9d87132" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3664,42 +3664,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77DF4B500\"" ], + "ETag": [ "1DCBCBA8BD77DCB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a95f155e-0bcc-471d-94f8-04bec42a6f24" ], + "x-ms-request-id": [ "a80c9fae-8175-4af6-968a-206288241e7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7b766749-be93-45f2-a2f9-28bcdcb0d7df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192219Z:7b766749-be93-45f2-a2f9-28bcdcb0d7df" ], + "x-ms-correlation-request-id": [ "e1c82ad8-8946-408b-977f-2b3fb9c34104" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:e1c82ad8-8946-408b-977f-2b3fb9c34104" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E71D296227C40AB94E463B0FF9349E5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:19Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13932BB57609449CAD43815966266429 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8331" ], + "Content-Length": [ "8422" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:19.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:31.0366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1132" ], - "x-ms-client-request-id": [ "9d6aaf69-4983-48d8-a6b2-c295e0489c9c" ], + "x-ms-unique-id": [ "812" ], + "x-ms-client-request-id": [ "e5988aea-1a3f-447f-a777-b4e5d4daa91f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3711,40 +3711,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67e435fb-abbd-413f-877a-3a3f61d00011" ], + "x-ms-request-id": [ "3c3ba492-fb71-4ff9-960d-106007095846" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3e57a1b-5cd0-44a2-8722-26f9d74da579" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "b8a2e627-a5cc-443a-8cae-f0e41b92c04e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192220Z:b8a2e627-a5cc-443a-8cae-f0e41b92c04e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fe94f1b-40bf-4e8a-b0af-913379f43a46" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "aff73289-4930-4bd8-9ed7-3351773a0d94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:aff73289-4930-4bd8-9ed7-3351773a0d94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2B7290F0CC348E897362ED7CD517EAF Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B164ACF2DEC4A74A754DDC7CF0F825B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1133" ], - "x-ms-client-request-id": [ "fef29abe-e606-46b9-bb1a-9861565d38c1" ], + "x-ms-unique-id": [ "813" ], + "x-ms-client-request-id": [ "464899b5-9bf6-4a6f-8524-46ef6cdb7999" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3756,41 +3756,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fc01f70-003d-4c19-9b9d-a54bbb5e7f1c" ], + "x-ms-request-id": [ "b64293b5-de8d-4722-ae2f-df9b342ee5bc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f6990a2-4ab7-4f19-a312-13141559fffc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8240b98a-3b5b-46d5-8587-9bf57ec47f70" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "20ca8720-311d-4620-9a58-4f8068ee27f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192220Z:20ca8720-311d-4620-9a58-4f8068ee27f7" ], + "x-ms-correlation-request-id": [ "e9028831-59b6-4619-a24b-aa1c687ba407" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:e9028831-59b6-4619-a24b-aa1c687ba407" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EAD2562E6F246F48A700D41BA7EB47E Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F57E16729194043AB0853624D5C7451 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1134" ], - "x-ms-client-request-id": [ "67bf174f-2b3b-4904-a623-1632246085a6" ], + "x-ms-unique-id": [ "814" ], + "x-ms-client-request-id": [ "d19e9e00-d2fc-436c-8f40-18dbd4fab3ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3801,42 +3801,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77DF4B500\"" ], + "ETag": [ "1DCBCBA8BD77DCB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fa5a0566-dfd4-41de-9ea1-f7bd58fe6bae" ], + "x-ms-request-id": [ "3e4b5f58-494f-4044-915d-9c533a750908" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c52551a-978a-4444-9388-635a94a92443" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192220Z:6c52551a-978a-4444-9388-635a94a92443" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1bcde693-d9f8-424c-a73f-f13dc4772e1a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:1bcde693-d9f8-424c-a73f-f13dc4772e1a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1005A3A24E847309E0774424B636FE9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9ED3E1A26E284D99A90F57FFE007CA5F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8331" ], + "Content-Length": [ "8422" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:19.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:31.0366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1135" ], - "x-ms-client-request-id": [ "e2f3ae20-f0f4-4dfe-9346-684719213e38" ], + "x-ms-unique-id": [ "815" ], + "x-ms-client-request-id": [ "a6971f6c-ec8e-4f0a-bcc3-137b3c63697d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3848,40 +3848,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a140ce1-24b6-4e4a-b4fc-c05c6a58993a" ], + "x-ms-request-id": [ "af2161e9-5c1e-473c-9b31-7f3ced26808a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cad4728-8b67-442e-be0b-8327850c449e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e97c6285-1e65-4bc0-a95e-811981775755" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192220Z:e97c6285-1e65-4bc0-a95e-811981775755" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2965e58-1c0c-4fca-948f-ee066e3bcba6" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "d9f36927-1942-415a-b4cd-55aede21aa9d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:d9f36927-1942-415a-b4cd-55aede21aa9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F3CD86B869347EF8836CF0DC48D508F Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 358B913B2E3B46839AA3A0BD58B27B70 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1136" ], - "x-ms-client-request-id": [ "0ea2b0d1-0450-4643-b872-5a2e39b80d06" ], + "x-ms-unique-id": [ "816" ], + "x-ms-client-request-id": [ "1ce16958-7f27-43d7-90f8-c53820bb8e1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3893,41 +3893,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02a51ccb-8c31-444d-909d-ceadfdf0c7ae" ], + "x-ms-request-id": [ "e7749a73-8a58-44c7-b976-b9e3d0d51676" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8e7c6b4-c4df-4fe8-af50-20fa287c9c22" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "9e5ac80e-5c9d-4e2f-bd75-eece16973e6c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192221Z:9e5ac80e-5c9d-4e2f-bd75-eece16973e6c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d640c3d-3497-4fa3-8782-66104f370c4e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "af891d2e-dc99-4541-be07-dc897890a73a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:af891d2e-dc99-4541-be07-dc897890a73a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 563D6717721C494083C4699A5F44A1B4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:20Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7401E08AAD0E4FDCAA2EFC416337CE22 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1137" ], - "x-ms-client-request-id": [ "7e7eafd5-156a-40f7-bd08-2c3a663ec089" ], + "x-ms-unique-id": [ "817" ], + "x-ms-client-request-id": [ "f3e1702a-c8cd-44ec-800f-61605a29424c" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3939,18 +3939,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a892a861-9cc2-48a4-b294-2efe532844b1" ], + "x-ms-request-id": [ "364429a3-4b43-41bd-b878-653f43745cf4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce570d8d-af25-4764-b608-f966499b51b8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e7cdb8c-65b0-4ec4-83b6-7559eca8f6d1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "051c6e99-50d9-4d2f-a98f-4fa6310f7957" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192221Z:051c6e99-50d9-4d2f-a98f-4fa6310f7957" ], + "x-ms-correlation-request-id": [ "8e9d6baa-6e7f-487d-b08c-0a4c26120a6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:8e9d6baa-6e7f-487d-b08c-0a4c26120a6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1ACFC03B07BA40C38A39A5BBA5EA14E0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:21Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71FD9B39BFD04355904D8B5BC79C775C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:32Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3960,19 +3960,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1138" ], - "x-ms-client-request-id": [ "b60b4f9f-b6d0-4862-931f-50321cb33ad8" ], + "x-ms-unique-id": [ "818" ], + "x-ms-client-request-id": [ "ae4417cc-b7b9-4d99-b9e0-dced4506af37" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3983,42 +3983,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F77EFA2415\"" ], + "ETag": [ "1DCBCBA8CED338B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e8b4bd9-355a-4aab-8399-572d303a6c08" ], + "x-ms-request-id": [ "af8f0a67-6a5d-42bb-aa4a-159cba318a52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e400fa6c-0941-42ff-a432-110a09db1391" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192221Z:e400fa6c-0941-42ff-a432-110a09db1391" ], + "x-ms-correlation-request-id": [ "c98baf95-6d14-483b-80b3-1934f3b777ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:c98baf95-6d14-483b-80b3-1934f3b777ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D84B767FAE6F4BE1A821E8FA1470EE3A Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:21Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65111843F60B4C5BBE1E85A64E4C9B04 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8337" ], + "Content-Length": [ "8422" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-25v7bk\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-123.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-qtnd3j-CentralUSwebspace-Linux/sites/Functions-Node-22-25v7bk\",\"repositorySiteName\":\"Functions-Node-22-25v7bk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-25v7bk.azurewebsites.net\",\"functions-node-22-25v7bk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-25v7bk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-25v7bk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-io68qa\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:21.3133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-25v7bk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.159.114\",\"possibleInboundIpAddresses\":\"168.61.159.114\",\"inboundIpv6Address\":\"2603:1030:10:5::1\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::1\",\"ftpUsername\":\"Functions-Node-22-25v7bk\\\\$Functions-Node-22-25v7bk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,168.61.159.114\",\"possibleOutboundIpAddresses\":\"168.61.150.239,168.61.185.74,168.61.185.197,168.61.146.253,168.61.146.106,168.61.150.120,168.61.184.160,168.61.191.29,168.61.191.135,52.158.167.213,52.185.104.66,52.185.104.115,52.185.104.153,52.185.104.245,52.185.105.6,20.221.42.41,20.221.42.179,20.221.42.209,20.221.43.183,20.221.43.249,20.221.44.31,168.61.159.114\",\"outboundIpv6Addresses\":\"2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::dd,2603:1030:b:9::89,2603:1030:b:7::23c,2603:1030:b:c::144,2603:1030:b:12::a8,2603:1030:b:7::23f,2603:1030:b:b::e5,2603:1030:b:a::de,2603:1030:b:24::cf,2603:1030:b:25::31,2603:1030:b:7::242,2603:1030:b:8::dc,2603:1030:b:9::8a,2603:1030:b:e::62,2603:1030:b:24::58,2603:1030:b:b::e6,2603:1030:b:25::32,2603:1030:b:12::a9,2603:1030:b:7::269,2603:1030:b:f::e0,2603:1030:b:8::dd,2603:1030:10:5::1,2603:10e1:100:2::a83d:9f72\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-qtnd3j\",\"defaultHostName\":\"functions-node-22-25v7bk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:32.8566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1139" ], - "x-ms-client-request-id": [ "3287d416-9db3-42e0-a3b8-7f4200f8e56b" ], + "x-ms-unique-id": [ "819" ], + "x-ms-client-request-id": [ "1fc50794-59b4-4120-afe4-03e2d5e5ccb4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4030,40 +4030,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e4dd0caf-9922-4ec1-8f09-6af542b6f259" ], + "x-ms-request-id": [ "9f671940-48bd-4ce7-869b-4d482f668dbc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/beb802b8-13e0-48c1-8688-880af3bfe359" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1235912-3a87-485c-95a8-840703cb2cbb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0f091c5b-def0-4b15-afc7-8549f413fecc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192221Z:0f091c5b-def0-4b15-afc7-8549f413fecc" ], + "x-ms-correlation-request-id": [ "95553a6c-5128-406c-8fd5-e935226525d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:95553a6c-5128-406c-8fd5-e935226525d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 010EB68B9FAE4BABBB4CA94CFF9EBA2D Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:21Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00C3FF0E2DB14F39BD0574AEDAF497F8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-25v7bk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-25v7bk\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1140" ], - "x-ms-client-request-id": [ "71cf0d2d-01bb-4b34-aa93-de171b5670ff" ], + "x-ms-unique-id": [ "820" ], + "x-ms-client-request-id": [ "338b1825-6924-4691-b8e9-024b5122bf55" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4075,41 +4075,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16c3b67b-49e1-42f0-85cd-4c99389f1035" ], + "x-ms-request-id": [ "4059298d-d43a-4f44-9a5a-bb5be75faaa6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ddab1db-4b95-40d1-94b8-2e77a9a5fe3b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "e0b04219-90c6-40b3-b7da-4aa8baa43b5a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192222Z:e0b04219-90c6-40b3-b7da-4aa8baa43b5a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d30ac08-4e0f-4974-9778-5e880f7aa6fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ecb0c328-1d3f-4c4d-baf0-4b92f4cbb481" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:ecb0c328-1d3f-4c4d-baf0-4b92f4cbb481" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5718AB0182E4869AEA3FA49FA872068 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:22Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 153F99FD467E4A8AA61E6959E1D0F4CB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Web/sites/Functions-Node-22-25v7bk/config/web\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1141" ], - "x-ms-client-request-id": [ "a7fa76aa-e8fb-4716-8986-587e96919c6c" ], + "x-ms-unique-id": [ "821" ], + "x-ms-client-request-id": [ "1fbf237c-2d68-431f-acd1-f4495f8c1d1d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4120,42 +4120,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7750C890B\"" ], + "ETag": [ "1DCBCBA84B78EB5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "073ff885-8028-4eb5-9e77-2ad9749a2dec" ], + "x-ms-request-id": [ "bdccb701-8d13-40a6-82c2-b829fc6e1885" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ba986f6-3af6-4a4a-9642-c38b4b2a1285" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192222Z:3ba986f6-3af6-4a4a-9642-c38b4b2a1285" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d77e997b-a143-49c4-9f0f-b8622d461dea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:d77e997b-a143-49c4-9f0f-b8622d461dea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FD6EBCB0C1E40439F583139E41A621F Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:22Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B42F7CEDB6940D1854172FAC1E5A5B7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8695" ], + "Content-Length": [ "8544" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:04.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:19.0833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1142" ], - "x-ms-client-request-id": [ "540c587b-eba6-46bf-abf4-bcacfc893ade" ], + "x-ms-unique-id": [ "822" ], + "x-ms-client-request-id": [ "da456491-01b7-4818-8f1f-efa9db51540a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4167,40 +4167,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f076f36e-f4e4-44cb-8a55-a4f120fbd5cc" ], + "x-ms-request-id": [ "aa36711f-af4b-4819-bd00-afa8baf0936f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2166e642-92b6-4a18-9888-b4e22618c4ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70e037f7-f197-4447-ba9e-80c2ce1386f3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f4e53a9e-d2de-44e2-a664-0b9113155da2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192222Z:f4e53a9e-d2de-44e2-a664-0b9113155da2" ], + "x-ms-correlation-request-id": [ "11f63b15-930a-402c-8d3d-8c8ca558b55b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005034Z:11f63b15-930a-402c-8d3d-8c8ca558b55b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4AECFB1413A4DC686BAD7AA1023DCD6 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:22Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D21D1109165C45C99298F048A12F0DC8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1143" ], - "x-ms-client-request-id": [ "1a45c4d0-69a9-4936-9416-1023462021fd" ], + "x-ms-unique-id": [ "823" ], + "x-ms-client-request-id": [ "b6ca6dd5-1bac-42cd-8c7f-d42e9d48fbc5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4212,41 +4212,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0375a317-4884-43cc-8a0b-15300a9a279a" ], + "x-ms-request-id": [ "1877579c-36db-4382-b9f2-2f40f43dab1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26f25c28-7362-4354-aaed-4583a7804c13" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab77e119-48a4-4eda-8319-d9f6a4079e63" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ed74716b-a935-4e68-b9ef-46aa71a04eb9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192222Z:ed74716b-a935-4e68-b9ef-46aa71a04eb9" ], + "x-ms-correlation-request-id": [ "4cda7410-0821-4c56-8a41-bc79d08d6e04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005034Z:4cda7410-0821-4c56-8a41-bc79d08d6e04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6FECBCBA4FD43148446074635D261A7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:22Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D6B1529BA624ABF81FD3D8DA945FB6E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1144" ], - "x-ms-client-request-id": [ "0a6e3081-3f13-4b5f-b96d-9312c64a3886" ], + "x-ms-unique-id": [ "824" ], + "x-ms-client-request-id": [ "39740f36-5fa8-400b-b1cd-0e90695cde2a" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4258,18 +4258,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbc7e526-1cef-4dfb-86e8-c7618677f9ba" ], + "x-ms-request-id": [ "49494b3c-628b-41d1-bedb-a9f6b8868e52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ebe577a-5105-4c56-8eed-2df677995bd3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0555fbc9-60f7-4ae0-badc-414480baecee" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c9130077-1fd8-47ec-94a6-b4d8e8afd875" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192223Z:c9130077-1fd8-47ec-94a6-b4d8e8afd875" ], + "x-ms-correlation-request-id": [ "1390de36-6366-4df7-9105-0dd75e5c645d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005035Z:1390de36-6366-4df7-9105-0dd75e5c645d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2745741B3EE54002812B40B754AFA866 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:23Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4BB053557794E5696CF65DEDD888880 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:34Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4279,19 +4279,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1145" ], - "x-ms-client-request-id": [ "af35dd70-c892-402a-92e9-574cdeccf26c" ], + "x-ms-unique-id": [ "825" ], + "x-ms-client-request-id": [ "a5d0a9b8-2da4-4846-83cb-2f01977ef612" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4302,42 +4302,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F780190195\"" ], + "ETag": [ "1DCBCBA8E3D6740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ca19e75-6f87-4ccb-a9f1-0ac825722cf7" ], + "x-ms-request-id": [ "5a3f7e25-d511-4e69-99d1-850664fae644" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f045f4a6-03c8-429f-998e-c80a85ca808f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192223Z:f045f4a6-03c8-429f-998e-c80a85ca808f" ], + "x-ms-correlation-request-id": [ "64ca2f10-5b44-44b6-88ab-33220f5266f3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005035Z:64ca2f10-5b44-44b6-88ab-33220f5266f3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F03CB9BC8C3E40479472822EF3BFA7B2 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:23Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB644F368F1A410FAEE1B60C7237CC91 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8695" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:23.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:35.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1146" ], - "x-ms-client-request-id": [ "2097bd1e-cfa3-489c-86bd-5ff6fcb24d78" ], + "x-ms-unique-id": [ "826" ], + "x-ms-client-request-id": [ "90cc661c-90ca-4776-b014-0bd17477ed33" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4349,40 +4349,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84133a67-ca15-4d1d-abea-7f8fae197106" ], + "x-ms-request-id": [ "1ebf9bc7-3660-4300-9763-950d8d991300" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45aa12c1-08a0-447d-9a52-f8f571f4a213" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2fd06ca0-87e8-4c3e-b51d-60a81c44f077" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1cbb0b91-a970-4a5b-9c89-f5a0c60015e0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192223Z:1cbb0b91-a970-4a5b-9c89-f5a0c60015e0" ], + "x-ms-correlation-request-id": [ "0eee969b-afc0-43f9-b9f5-5f5823dcc838" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005035Z:0eee969b-afc0-43f9-b9f5-5f5823dcc838" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74A62F90C3784AF5938EB196C3904002 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:23Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F6DFF0B71EC649F4914E701D271F190C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:35Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1147" ], - "x-ms-client-request-id": [ "1847e8c1-ef22-43a4-ade2-0748ec226428" ], + "x-ms-unique-id": [ "827" ], + "x-ms-client-request-id": [ "87fbbbd5-e193-4c67-bf8b-a643b87c6b17" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4394,41 +4394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d050dd55-b305-4203-95ba-4d0b83b7d5f5" ], + "x-ms-request-id": [ "a692af47-3eee-44ff-a772-749ccd8ee4ee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf7b6435-ee9b-4576-8700-0b1660ccd9b6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "2072b1cf-255f-45cb-b17c-315ff80ee9bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192224Z:2072b1cf-255f-45cb-b17c-315ff80ee9bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5939c03-9570-46c5-b303-fe471f987b28" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "07bb40b1-1826-42b1-ae50-3284da842839" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:07bb40b1-1826-42b1-ae50-3284da842839" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F86CE660BDA04DA29BFB205BD22B910D Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:23Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E897956A1874B479FC00BB80C087EB4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:36Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1148" ], - "x-ms-client-request-id": [ "98b379ef-7d31-4624-bf66-fc428372d285" ], + "x-ms-unique-id": [ "828" ], + "x-ms-client-request-id": [ "de839a03-f2ad-414a-93fc-eefea5d95dd6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4439,42 +4439,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F780190195\"" ], + "ETag": [ "1DCBCBA8E3D6740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6944871b-419c-4b65-9830-a8ed10e4b0d3" ], + "x-ms-request-id": [ "a4305bef-f03a-459d-a389-00b69b28d109" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c97cb158-54fe-4516-b12a-89c54df0237a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192224Z:c97cb158-54fe-4516-b12a-89c54df0237a" ], + "x-ms-correlation-request-id": [ "6c564332-082d-487c-8e2a-c2e2c58e96a8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:6c564332-082d-487c-8e2a-c2e2c58e96a8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC9ABD03434A4CF3ABF5DDD5FDFC9404 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 225D1CDC09E74D119D894F1AA959B02D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8695" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:23.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:35.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1149" ], - "x-ms-client-request-id": [ "05b447fa-3355-4c25-8909-79004f1d3f25" ], + "x-ms-unique-id": [ "829" ], + "x-ms-client-request-id": [ "a9707940-70cc-407d-afd8-b8cd1dccbe87" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4486,40 +4486,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75343b2a-c8e6-4e20-abc4-d650ab8d2780" ], + "x-ms-request-id": [ "5867753e-ab31-404e-b852-6b9d9a1b954f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a1f26952-df71-49bc-a5e1-39124e830736" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "c1db097e-9f54-4bd1-a67c-09d24010c230" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192224Z:c1db097e-9f54-4bd1-a67c-09d24010c230" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22cf271b-39e7-483f-8c5c-40cce245c924" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "db77f002-8cd1-4ef2-ad67-33eec599d963" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:db77f002-8cd1-4ef2-ad67-33eec599d963" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 427B99334E5F4DC8B3DD0A27B083AFA9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B074022B02CD4690812576FD75BEE822 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1150" ], - "x-ms-client-request-id": [ "2ce8056d-7fc0-4e67-9aa5-312ec106dd94" ], + "x-ms-unique-id": [ "830" ], + "x-ms-client-request-id": [ "a8a1d216-ef33-42a2-8c6f-c5f05dea4faf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4531,41 +4531,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d10ffbfb-918a-4b31-89cd-b22178c7bc88" ], + "x-ms-request-id": [ "434e0135-7198-40bc-954b-ee8ee562906e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a0a9fe6-ec40-482c-bbe0-df471e72312b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce596246-7de0-4e2a-bc8f-85f598a09bf3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fa6db35f-832d-4786-9883-077f503b2389" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192224Z:fa6db35f-832d-4786-9883-077f503b2389" ], + "x-ms-correlation-request-id": [ "df0fbbca-4535-435c-9255-be86aa680567" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:df0fbbca-4535-435c-9255-be86aa680567" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D7AEF85E3294207A7144C6D3A0CB4B7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B4D2476A2B747D993A8B838A8A1E335 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:38Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1151" ], - "x-ms-client-request-id": [ "db66f750-24bb-449f-9e04-b77995455575" ], + "x-ms-unique-id": [ "831" ], + "x-ms-client-request-id": [ "c05d052a-4d16-4fc5-b9bd-190245c515fa" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4577,18 +4577,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "237931ba-f9d3-43bd-9235-e62aeef53e20" ], + "x-ms-request-id": [ "bda992c7-048d-4941-aca6-062c5f991fe3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6bcf23ce-354b-4132-be2c-e019e2d67dc3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ab87975-1986-4403-aa45-d1ddc5613895" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f6e83245-d3a8-4fd3-96a2-3e1447ecbcb3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192225Z:f6e83245-d3a8-4fd3-96a2-3e1447ecbcb3" ], + "x-ms-correlation-request-id": [ "d627583b-aca1-4e67-beee-c7b4a95c48f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005039Z:d627583b-aca1-4e67-beee-c7b4a95c48f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45CA163987394D4FA2274ACF3A960F30 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:24Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FFD8EEBECE445BBBD769B695DEB0C60 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:39 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4598,19 +4598,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1152" ], - "x-ms-client-request-id": [ "ce058e6e-70ef-4bef-8a54-063e45a1021a" ], + "x-ms-unique-id": [ "832" ], + "x-ms-client-request-id": [ "5fddc781-c744-4183-81fe-287b05d31f7b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4621,42 +4621,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F78137DF15\"" ], + "ETag": [ "1DCBCBA90BE45C0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ec8234f-6bf7-40ca-ae5e-4e6e5dcb8216" ], + "x-ms-request-id": [ "761b49df-90ad-4e0f-bdef-fc99f783e083" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9f5831fd-256b-4e34-978e-7acb6ed9b226" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192225Z:9f5831fd-256b-4e34-978e-7acb6ed9b226" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2ee19585-e7a4-45e2-9476-b2454acb283f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005039Z:2ee19585-e7a4-45e2-9476-b2454acb283f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5270FFC886E241DAB2510BFF26475828 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4044B205CADF4D469D7CE302F5B35306 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8695" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:25.0733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:39.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1153" ], - "x-ms-client-request-id": [ "fd7c55f1-17c2-4ad0-9815-447f4171cf85" ], + "x-ms-unique-id": [ "833" ], + "x-ms-client-request-id": [ "e6d8b278-6050-474f-a529-be4314f10551" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4668,40 +4668,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22584faf-df1b-4a77-9e69-dd10d6db0e92" ], + "x-ms-request-id": [ "75fdb22f-badc-44b1-b431-7b9c6b131350" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/35188f1d-e80e-48fb-8e16-7e70ef60c849" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f0211dae-3d13-4e8a-a1ab-c873f0064f07" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b9554aa2-6c38-4055-895e-34411369b4ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192225Z:b9554aa2-6c38-4055-895e-34411369b4ca" ], + "x-ms-correlation-request-id": [ "c87b20ff-7e03-4cdc-bb5e-25228689f15c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005040Z:c87b20ff-7e03-4cdc-bb5e-25228689f15c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6834DA051317433FA3095F1057F2E0ED Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F53D0CA0545044DBB0A74339FCF60FA2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:39Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1154" ], - "x-ms-client-request-id": [ "52487a22-04d3-47e6-ae02-78ff121d7a75" ], + "x-ms-unique-id": [ "834" ], + "x-ms-client-request-id": [ "405d91aa-0fae-4190-94b6-e807af36c53d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4713,41 +4713,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84b43ea1-4d90-4456-93d2-d66a9184297b" ], + "x-ms-request-id": [ "8e41e923-a80f-4118-874d-8f94aab45a51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cb299a0-55e8-4e3a-8165-79a566f9a5bc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "30662cb1-babe-44d6-b1e2-c6d6baf4539e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192225Z:30662cb1-babe-44d6-b1e2-c6d6baf4539e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96054e67-56b1-4cb0-85ef-a73c864061bf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2b1e96ff-db0d-4e4d-b99e-e78f673b5c10" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005040Z:2b1e96ff-db0d-4e4d-b99e-e78f673b5c10" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 536AA500EF794B96B01CC1CEAA63C03B Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:25Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5E28556DF534A2AB5DAF9D142638869 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1155" ], - "x-ms-client-request-id": [ "62fb5709-c8ae-44bf-bd01-6c98fed80842" ], + "x-ms-unique-id": [ "835" ], + "x-ms-client-request-id": [ "f7aa1845-fb80-4283-b73c-4cf8755a6252" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4758,42 +4758,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F78137DF15\"" ], + "ETag": [ "1DCBCBA90BE45C0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b63a2aba-383f-4a41-b504-b834a83af96a" ], + "x-ms-request-id": [ "9aaee4d1-054a-407d-9e44-cae9afc0633a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "81ec7fa1-feb2-42be-97ce-1ebac2215376" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192226Z:81ec7fa1-feb2-42be-97ce-1ebac2215376" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7b252c3b-0d3c-426d-8988-d768099c7ac0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005041Z:7b252c3b-0d3c-426d-8988-d768099c7ac0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CEED2C4F07524076AE121FDE6DD5A846 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 756B88DF208342F2B734BF90D49939F3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:40Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8695" ], + "Content-Length": [ "8539" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:25.0733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:39.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1156" ], - "x-ms-client-request-id": [ "14ef2387-5118-46c1-b3a8-3cfb975b17a7" ], + "x-ms-unique-id": [ "836" ], + "x-ms-client-request-id": [ "255aabd7-3f7b-456d-8fb8-541534f40aac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4805,40 +4805,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a41a497b-a966-4fc1-bac9-1f5300f8cf4b" ], + "x-ms-request-id": [ "ffca6a23-3b76-46cc-baed-0ecc345cd79b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c23b2217-caef-4807-9a11-b2a3afe8968f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f1de1121-6dd9-4ef3-ac94-a1666633df1b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "183587e1-13b1-486b-86c7-f8c977e4a558" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192226Z:183587e1-13b1-486b-86c7-f8c977e4a558" ], + "x-ms-correlation-request-id": [ "85ca6f6b-9b0e-4ef3-86d8-22d980887e42" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005041Z:85ca6f6b-9b0e-4ef3-86d8-22d980887e42" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4BF2227232D401CA6D5F9F03718CEA3 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 089A8755E7774F97B139CB8AE498EE1C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1157" ], - "x-ms-client-request-id": [ "ffe8bb25-86d3-4b75-a72f-64ed20179a8d" ], + "x-ms-unique-id": [ "837" ], + "x-ms-client-request-id": [ "3fa1583c-30e7-45c4-a99c-99cbcc17750b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4850,41 +4850,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46cbfcef-7893-4747-b5a1-94efefcb5368" ], + "x-ms-request-id": [ "d939a575-7f57-4083-9282-1be6f9bdbb0e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14b0fbfb-f7fe-4421-83bf-09fd63e47267" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d2bf8d36-28fe-410d-b4be-735783248c26" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6fdec293-990d-4885-8b65-b3ffa56d756d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192226Z:6fdec293-990d-4885-8b65-b3ffa56d756d" ], + "x-ms-correlation-request-id": [ "96fee4e9-9b90-48e1-8270-8c8ff9e7ffa7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005042Z:96fee4e9-9b90-48e1-8270-8c8ff9e7ffa7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7588B59896F64F16A082D1E06A1B09C8 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9062ABD07C4F4023A40751972229402C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:41Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1158" ], - "x-ms-client-request-id": [ "47e199ad-3c9a-4a36-a7c0-80a4651851be" ], + "x-ms-unique-id": [ "838" ], + "x-ms-client-request-id": [ "913a59a3-85b9-4cb8-a3c0-94be15b5ed23" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4896,18 +4896,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "40afc511-8106-4dc7-9a48-f7e9069e8295" ], + "x-ms-request-id": [ "404603e4-6537-4d57-8cb9-f9d214c7f737" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/849b8cdb-41d8-4b4b-812f-55e707e5fc4c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4cbf2a71-d8f5-4d08-a41e-c3fc6346d283" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "6a7f591b-aad9-4bb9-a869-b410486e86c2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192227Z:6a7f591b-aad9-4bb9-a869-b410486e86c2" ], + "x-ms-correlation-request-id": [ "eedab55c-4057-49e4-87cb-b063cb1e8b0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005042Z:eedab55c-4057-49e4-87cb-b063cb1e8b0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB49A5DA4CDA44C2B975A5F0D2971B85 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:26Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 774FE08D9573423488777F96A8DFF221 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4917,19 +4917,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1159" ], - "x-ms-client-request-id": [ "9659715f-fb1b-4727-b960-b5caa4c3574c" ], + "x-ms-unique-id": [ "839" ], + "x-ms-client-request-id": [ "d244551a-bfbc-4f35-b541-0a5678647d84" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4940,42 +4940,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F782764580\"" ], + "ETag": [ "1DCBCBA929C6195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14d77ae0-34ca-4f10-bdaf-560fc1f7e50e" ], + "x-ms-request-id": [ "47957be1-fc68-4b03-a029-8a724a6b70cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c28e0e7c-4fc4-4010-b867-22b1b7e152b2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192227Z:c28e0e7c-4fc4-4010-b867-22b1b7e152b2" ], + "x-ms-correlation-request-id": [ "231e1d31-eb8e-4cfa-909b-c6d3e9fe26f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005042Z:231e1d31-eb8e-4cfa-909b-c6d3e9fe26f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4B8F92A31D3409896F808D226D5E9F9 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:27Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4F61C7117384C688DF7E65BBE17E212 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8690" ], + "Content-Length": [ "8544" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-3k0a1w\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-331.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-w8ejmo-CentralUSwebspace/sites/Functions-DotNet-8-3k0a1w\",\"repositorySiteName\":\"Functions-DotNet-8-3k0a1w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-3k0a1w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:27.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-3k0a1w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.118.56.11\",\"possibleInboundIpAddresses\":\"20.118.56.11\",\"inboundIpv6Address\":\"2603:1030:10:8::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::22\",\"ftpUsername\":\"Functions-DotNet-8-3k0a1w\\\\$Functions-DotNet-8-3k0a1w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-331.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.118.56.11\",\"possibleOutboundIpAddresses\":\"52.154.212.110,52.154.212.122,52.154.212.136,52.154.212.146,52.154.212.154,52.154.212.163,20.12.144.30,52.154.212.165,52.154.212.171,52.154.212.172,52.154.212.175,52.154.212.185,52.154.212.189,52.154.212.199,52.154.211.9,52.154.211.37,52.154.211.96,52.154.212.206,52.154.212.209,52.154.212.211,52.154.212.214,52.154.212.222,52.154.212.225,52.154.212.232,52.154.212.235,20.37.137.212,52.154.212.246,52.154.212.251,52.154.212.255,52.154.213.1,52.154.213.3,20.118.56.11\",\"outboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::329,2603:1030:b:f::264,2603:1030:b:d::297,2603:1030:b:d::299,2603:1030:b:5::33c,2603:1030:b:f::267,2603:1030:b:6::332,2603:1030:b:5::341,2603:1030:b:24::247,2603:1030:b:5::343,2603:1030:b:9::1c3,2603:1030:b:9::258,2603:1030:b:c::2cd,2603:1030:b:e::24b,2603:1030:b:5::347,2603:1030:b:f::26a,2603:1030:b:8::27a,2603:1030:b:c::2d1,2603:1030:b:e::24f,2603:1030:b:b::25f,2603:1030:b:3::479,2603:1030:b:24::24f,2603:1030:b:e::250,2603:1030:b:c::2d5,2603:1030:b:3::487,2603:1030:b:24::250,2603:1030:b:7::205,2603:1030:b:8::27c,2603:1030:b:3::4b1,2603:1030:b:12::26d,2603:1030:10:8::22,2603:10e1:100:2::1476:380b\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-331\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-w8ejmo\",\"defaultHostName\":\"functions-dotnet-8-3k0a1w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:42.3933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1160" ], - "x-ms-client-request-id": [ "3341e060-c359-4402-a4b7-139c675d896a" ], + "x-ms-unique-id": [ "840" ], + "x-ms-client-request-id": [ "2ff3a5b6-f5d7-401c-b646-2656dee68951" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4987,40 +4987,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2042b272-bcdf-480b-bfff-607828c0a904" ], + "x-ms-request-id": [ "2f256ff0-99b7-4a47-a5fe-d274592eed3a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aae4473b-1944-4588-8a7d-7945c1dfcfd7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aaa61bff-5836-41f3-b0b8-fdcbb5a7b707" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ad7954fb-0a61-4795-be10-6939541cd104" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192227Z:ad7954fb-0a61-4795-be10-6939541cd104" ], + "x-ms-correlation-request-id": [ "29762a2b-2bce-42cb-af28-ef8579da7d89" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:29762a2b-2bce-42cb-af28-ef8579da7d89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F97B3C3BF9A3461D8A1FA6B7BAE4AD0F Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:27Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D189CE5B62FC4115999BADEB192EB2A5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:42Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-3k0a1w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-3k0a1w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1161" ], - "x-ms-client-request-id": [ "a5143729-d445-4a45-b1eb-a32e790056a3" ], + "x-ms-unique-id": [ "841" ], + "x-ms-client-request-id": [ "51f7d391-7973-40ba-92ee-66f391198652" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5032,41 +5032,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c45e6dde-6b69-4968-99ca-4ef55060d491" ], + "x-ms-request-id": [ "0d6b37b9-12b8-445a-b20c-a53c0df2871c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de56e12e-1af5-4c80-b83b-9ea2a36dc896" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b7923b3-fb4b-4edc-8119-56cc0b80339a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93efe3fe-4722-4bd6-8138-2f32478f9401" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192228Z:93efe3fe-4722-4bd6-8138-2f32478f9401" ], + "x-ms-correlation-request-id": [ "95b3afcc-f0c9-4883-a06a-78614bd16902" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:95b3afcc-f0c9-4883-a06a-78614bd16902" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65F9746413BE40A1A07900FEED10C2C4 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:27Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2294513DDA2B4A63A627D753A887877D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/Microsoft.Web/sites/Functions-DotNet-8-3k0a1w/config/web\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1162" ], - "x-ms-client-request-id": [ "91ccb45d-4b6b-47fb-ac5c-3e70c120d547" ], + "x-ms-unique-id": [ "842" ], + "x-ms-client-request-id": [ "0dbdc6ac-35c6-449c-babd-86fb281da251" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5077,42 +5077,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F776E2818B\"" ], + "ETag": [ "1DCBCBA869E5015" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "afb4954a-b1ef-40ed-9812-e0ff75fd0aae" ], + "x-ms-request-id": [ "569e2b7b-1ce9-4a0e-8d88-1d63d9d63ce8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e18eb8c0-210d-4ed5-ada9-931828b7041c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192228Z:e18eb8c0-210d-4ed5-ada9-931828b7041c" ], + "x-ms-correlation-request-id": [ "1d9746a9-82f6-4251-b815-4cb2650fae9b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:1d9746a9-82f6-4251-b815-4cb2650fae9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6AF030AD65BA4E1BA4F6ED430261CD0F Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:28Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1D589BA194B4EE5856952878ABD52B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8228" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:07.7366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:22.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1163" ], - "x-ms-client-request-id": [ "f28175b3-7da9-487d-9290-5c645de0301d" ], + "x-ms-unique-id": [ "843" ], + "x-ms-client-request-id": [ "44f482ed-75b6-4de0-b707-439d8bfabe24" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5124,40 +5124,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d7907b7b-30e9-4fec-beaa-e29634f2780a" ], + "x-ms-request-id": [ "d3fd274a-9685-426a-8aa5-7655db0ce552" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eff20f18-14a9-476d-88bd-df9157aec3d0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dbb5d9a0-ca82-4eb0-bc87-a50512de711c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3a91ce1c-9434-4435-b664-9471d9cec560" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192228Z:3a91ce1c-9434-4435-b664-9471d9cec560" ], + "x-ms-correlation-request-id": [ "a73f1f63-6ef8-43f2-a97a-a03bf3120417" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:a73f1f63-6ef8-43f2-a97a-a03bf3120417" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB34357428F34288AD3D8DF7CF3CC172 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:28Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAD01C58CDD94826891F154373B0B0B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:43Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1164" ], - "x-ms-client-request-id": [ "84cdb2fa-7398-4c2e-b654-49f9dbf59872" ], + "x-ms-unique-id": [ "844" ], + "x-ms-client-request-id": [ "7b4145e1-98a1-44cb-a3a4-2697a7799560" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5169,41 +5169,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "efe61fd0-c593-44ab-8126-933b585dc064" ], + "x-ms-request-id": [ "b4ed766e-a6cd-4cd7-b3bb-51b7aab0d373" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9670ede-6e59-40ea-92de-4816309930a7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a73f806-16be-4b56-af21-32f5413fe755" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "7b47cc3e-f65a-437c-bf62-850acc547b91" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192228Z:7b47cc3e-f65a-437c-bf62-850acc547b91" ], + "x-ms-correlation-request-id": [ "98e92592-aa30-441a-a0c0-ba7bad23ae28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005044Z:98e92592-aa30-441a-a0c0-ba7bad23ae28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E409D25D6A94D72B9CAF7B95FA492A6 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:28Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FC191ECFD7E4585BBA14BCB4D66BFA5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1165" ], - "x-ms-client-request-id": [ "ddd7ef7f-b6f3-480b-ad92-0159d04da442" ], + "x-ms-unique-id": [ "845" ], + "x-ms-client-request-id": [ "24834669-6246-4c87-9245-e21fab7d5ee6" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5215,18 +5215,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "57cc1b94-106b-4078-b23f-077386086444" ], + "x-ms-request-id": [ "c0b88e62-6784-4fca-a651-c8d6f7cdefb8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0882c8d1-d43e-4682-8c8d-540ba6d4d153" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbdc77e7-095d-46bd-ad2d-ff83aa89e843" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d4583b7a-cfcd-4dc5-8e81-0fd1f3e3463f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192229Z:d4583b7a-cfcd-4dc5-8e81-0fd1f3e3463f" ], + "x-ms-correlation-request-id": [ "aeb0fefb-024f-413a-a184-744d3b041cb8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005044Z:aeb0fefb-024f-413a-a184-744d3b041cb8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB3AC2EAA6B0449EA880084B17E75D67 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:28Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F7B2D1358BB47D6BBB321D042156FFF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:44 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5236,19 +5236,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1166" ], - "x-ms-client-request-id": [ "404734cb-9382-4c41-bfd8-eecfb9a9e1b0" ], + "x-ms-unique-id": [ "846" ], + "x-ms-client-request-id": [ "be2ddb24-1c4b-4229-b730-5eea64823e34" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5259,42 +5259,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7839B3D80\"" ], + "ETag": [ "1DCBCBA93E883A0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75cf2f91-ce1e-403b-a655-68fb5a03f6cd" ], + "x-ms-request-id": [ "68ab1287-780e-4ace-b7e8-90d0c095cf93" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "4fdd83ed-3250-4659-a788-031f3b7187ef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192229Z:4fdd83ed-3250-4659-a788-031f3b7187ef" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c22623c6-16e4-4ad1-9461-b2001e8e8c7d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005044Z:c22623c6-16e4-4ad1-9461-b2001e8e8c7d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8214177215CF4B02970DAF9E58E29516 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:29Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56B66407E3DB4C038D4124EFC8ADE491 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8283" ], + "Content-Length": [ "8223" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:29.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:44.57\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1167" ], - "x-ms-client-request-id": [ "35509953-1c5d-4477-b275-7ffadbd2071d" ], + "x-ms-unique-id": [ "847" ], + "x-ms-client-request-id": [ "570597b3-5d5a-49c3-b6e2-48fc4ccd14b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5306,40 +5306,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5fc44ece-a8fa-4757-af56-a3f3dc65fb8b" ], + "x-ms-request-id": [ "505cf95e-7070-44e7-8f5a-424ff2afc77e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4244cffc-f99d-4bc8-9c6b-aacbda792848" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/30b1414c-c7af-4673-bff0-224bc0bc8a90" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ad27ca61-12ec-4c00-943e-bfe6c7be7327" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192229Z:ad27ca61-12ec-4c00-943e-bfe6c7be7327" ], + "x-ms-correlation-request-id": [ "46fe08cc-5e01-4e1d-b3c3-b52ca48aa56e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:46fe08cc-5e01-4e1d-b3c3-b52ca48aa56e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB63B2ED3CFB4B5D89F9F021FB504FE2 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:29Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11C670E1AB4F42B99589502FD7F26249 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1168" ], - "x-ms-client-request-id": [ "84a639d2-9c5f-4746-a312-482321de325c" ], + "x-ms-unique-id": [ "848" ], + "x-ms-client-request-id": [ "d7edc824-e2b4-436a-aecc-394c3023dcaa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5351,41 +5351,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fad0ccb9-68c0-43f3-a2d2-ecb2d91e763a" ], + "x-ms-request-id": [ "d1ed5641-7a76-43a9-86d5-c810077336ed" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea6ed3db-3e7d-47cf-97fc-de1e7c36dfdd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ed8069f-576e-49f3-b8a6-1886c2090475" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "67d39ccd-28e5-4394-91d8-499e5050d4e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192229Z:67d39ccd-28e5-4394-91d8-499e5050d4e6" ], + "x-ms-correlation-request-id": [ "58313d38-b579-4920-8cea-62d004f6fffd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:58313d38-b579-4920-8cea-62d004f6fffd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80F9EB755AF54DFBBFB56ED9D6777E56 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:29Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F866D47EA5B14A77880EA24B0EF0DCD0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1169" ], - "x-ms-client-request-id": [ "b7cd100c-5120-436a-8a61-08e13a4d42ad" ], + "x-ms-unique-id": [ "849" ], + "x-ms-client-request-id": [ "fa6a110e-5477-4049-a8a9-e899318b6f39" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5396,42 +5396,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F7839B3D80\"" ], + "ETag": [ "1DCBCBA93E883A0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a22abdd3-8a8a-404c-be1e-24c2b8b636a0" ], + "x-ms-request-id": [ "0737b90c-5278-4a4d-a856-8af0ddb712e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3547873d-7f20-4d1a-86a3-d931126e2464" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192230Z:3547873d-7f20-4d1a-86a3-d931126e2464" ], + "x-ms-correlation-request-id": [ "97ade91a-a5b9-44dd-af08-4d959b09c500" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:97ade91a-a5b9-44dd-af08-4d959b09c500" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B9E166F8606344419D70513AC7C1FDDD Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:30Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D05C4FA45EBB457BADE40E2EBF6EBBD6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8283" ], + "Content-Length": [ "8223" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:29.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:44.57\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1170" ], - "x-ms-client-request-id": [ "aa3b8d0b-42f9-4b10-a03e-fd22f5334311" ], + "x-ms-unique-id": [ "850" ], + "x-ms-client-request-id": [ "a67f6268-4ee6-42ef-9758-df44a85ca8e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5443,40 +5443,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "832c2f11-2d52-4adc-ac04-3867bdbe109a" ], + "x-ms-request-id": [ "290fd550-c008-443b-9aa8-974382a6817a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ebfcfbae-9dd5-4a9f-81f8-5f753b1c2cb9" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bfa5dc33-70d9-4a98-8b2a-e22b4de323f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192230Z:bfa5dc33-70d9-4a98-8b2a-e22b4de323f6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8241fc3b-5f52-4a49-9da2-338bf1d0515b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "2f366b93-c0a3-4090-8c39-ace261faaa47" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:2f366b93-c0a3-4090-8c39-ace261faaa47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF17C9EB3DDE45E8BA4EB69C76C406B7 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:30Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31A2E03422AD4D5D9AF31FAB78296C66 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:45Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1171" ], - "x-ms-client-request-id": [ "7d903d09-f710-428c-aa87-035ad64eb1d2" ], + "x-ms-unique-id": [ "851" ], + "x-ms-client-request-id": [ "7169e709-0370-4884-a18a-69d67146255a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5488,41 +5488,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6ff4d978-b4d8-4111-822a-f4ffe918662f" ], + "x-ms-request-id": [ "f42f83fa-4d0e-4beb-92fd-cafbf9d2c817" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/081e689e-7c1e-4d0c-be06-b17c8e78c2f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9af9d8fa-c168-471f-acb5-0d77f60cc4be" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3aa71014-77c4-4a04-9eac-924cd2f0c8b8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192230Z:3aa71014-77c4-4a04-9eac-924cd2f0c8b8" ], + "x-ms-correlation-request-id": [ "a65cdf6d-8b5b-44b2-bb68-11ad943da525" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:a65cdf6d-8b5b-44b2-bb68-11ad943da525" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A179B49B06814EBDBD4989B525F66860 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:30Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F667403BA0E744A8B52774F5C5D7EC3F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1172" ], - "x-ms-client-request-id": [ "aa4659e1-0e64-4ed9-bfce-97f4962f70b6" ], + "x-ms-unique-id": [ "852" ], + "x-ms-client-request-id": [ "a69aff35-81c5-4529-bdd4-f7477f48c741" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5534,18 +5534,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "097957e8-9c10-4a7f-8331-fb9c63326ad4" ], + "x-ms-request-id": [ "c096dedb-4d6a-4b9b-be8d-48c1f46c055b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9781ea7-2f2a-475d-9cb8-572b04251c29" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f392e286-0ae4-4ae3-ac28-47bbed1b9a42" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e1eb5690-5651-44a5-8172-336c3652661c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192231Z:e1eb5690-5651-44a5-8172-336c3652661c" ], + "x-ms-correlation-request-id": [ "e9ee9cc2-9bd8-4e5f-9a3f-c22f85a48b1e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:e9ee9cc2-9bd8-4e5f-9a3f-c22f85a48b1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AF77B42D9714E2CB026B1D324559DCB Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:30Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A458E26B72E461F872BFC383A2FB5E9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5555,19 +5555,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1173" ], - "x-ms-client-request-id": [ "54350294-d331-4f2e-bb2a-1940e388408d" ], + "x-ms-unique-id": [ "853" ], + "x-ms-client-request-id": [ "9103c1a6-c782-445a-bc52-23cec0fd3d85" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5578,42 +5578,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F784D30735\"" ], + "ETag": [ "1DCBCBA9501C8D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "63c8d7eb-164b-4b9e-869e-53f2196f7703" ], + "x-ms-request-id": [ "2147582f-c134-438a-bdd9-b768df575351" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "10167100-7654-4155-876a-d32f5b862e01" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192231Z:10167100-7654-4155-876a-d32f5b862e01" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "26984356-11d7-4415-8d9b-3e73732d3c9f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:26984356-11d7-4415-8d9b-3e73732d3c9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C87C93AD8594374B4014F3FA225CD65 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:31Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A07AB00DFCF45559411C7B006308AFD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8228" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:31.1233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:46.4133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1174" ], - "x-ms-client-request-id": [ "20a749e2-3e5c-4372-ae22-2ec44fc6a009" ], + "x-ms-unique-id": [ "854" ], + "x-ms-client-request-id": [ "2fd0353a-dd6a-4f17-a168-972de9cee59d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5625,40 +5625,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe93aaad-aed3-4d82-9b63-3dc490beef79" ], + "x-ms-request-id": [ "b775eeb2-1e0a-4bcc-a210-95302694b335" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f701e65b-49fd-4909-8c30-b55106186106" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "0f490f4c-a1ce-4c3a-b0b0-8339a773e1a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192231Z:0f490f4c-a1ce-4c3a-b0b0-8339a773e1a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d785d43-adfe-4204-b67e-ace381ea5350" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2102206a-7f70-41da-bbcd-c68c7c1b8b73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:2102206a-7f70-41da-bbcd-c68c7c1b8b73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0FA79A79857C48F584425C64CB6D9F03 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:31Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C9640E68AB4495EACEAC5F4F7F16816 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1175" ], - "x-ms-client-request-id": [ "2a8e8766-a297-476c-b23a-d1fd88d9aa2a" ], + "x-ms-unique-id": [ "855" ], + "x-ms-client-request-id": [ "678a7560-5198-4b0c-baa2-64b4246c3f15" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5670,41 +5670,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "802b9b5f-e388-4abb-bad6-520eaa7c3b46" ], + "x-ms-request-id": [ "cb80a3e1-8073-4019-81c8-ccc55d4a8d70" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d78e5572-db86-447e-a707-a3158b7cddff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "212344a5-1558-41b1-abe3-2ab74727ae49" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192231Z:212344a5-1558-41b1-abe3-2ab74727ae49" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4f8d1836-7d6f-4d9e-a263-91471e208ab0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "59880bdb-0771-4f53-8e4b-d4694c6b0332" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005047Z:59880bdb-0771-4f53-8e4b-d4694c6b0332" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A4F6B49A1274B8BAD029A776AC52D47 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:31Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4FC14DB2DE64B5FB257CA49D33220D1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1176" ], - "x-ms-client-request-id": [ "96de2d0f-2a8c-45bb-b027-4ce9053e6c69" ], + "x-ms-unique-id": [ "856" ], + "x-ms-client-request-id": [ "ad2c827f-73a4-4754-abd1-ab2454880dd1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5715,42 +5715,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F784D30735\"" ], + "ETag": [ "1DCBCBA9501C8D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdc48203-9a0f-4616-92d8-eccb3194d497" ], + "x-ms-request-id": [ "5f39ffa0-93bb-4b7c-b056-320dd8630c03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bea9db6f-b001-4364-b83a-141070141b43" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192232Z:bea9db6f-b001-4364-b83a-141070141b43" ], + "x-ms-correlation-request-id": [ "9ebaf1f7-787a-452d-b0e8-e1c6b9144347" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005047Z:9ebaf1f7-787a-452d-b0e8-e1c6b9144347" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98F85F26431E4E60A6666260F82CE04A Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:32Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6484392EBBFA441D8C7CDA65E8BDC079 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8288" ], + "Content-Length": [ "8228" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:31.1233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:46.4133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1177" ], - "x-ms-client-request-id": [ "2cd161cd-71a9-4880-95af-d71632067bf4" ], + "x-ms-unique-id": [ "857" ], + "x-ms-client-request-id": [ "30ad5114-cdf0-4685-9ce5-7fa3aa7cc3d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5762,40 +5762,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aff092b1-5309-4f6f-9d9c-b02404e53366" ], + "x-ms-request-id": [ "e8210cb7-7844-4292-be7a-ecb0b49630c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e43890de-1fed-487a-8108-8e01bfeb43a7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac833fb5-f5cd-43f3-bae0-a93438567ba0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2831697d-fb6e-4677-a513-a75053b7abbc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192232Z:2831697d-fb6e-4677-a513-a75053b7abbc" ], + "x-ms-correlation-request-id": [ "958bf764-8ae7-410d-8b4b-e5b99ee56fe2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005047Z:958bf764-8ae7-410d-8b4b-e5b99ee56fe2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5DEEE18A6914A5A8EB2D4EC9F22D23F Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:32Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8774ECA3E1114F89ABDAC087D313E230 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1178" ], - "x-ms-client-request-id": [ "db836803-ab2a-4d12-9077-b38b40e36084" ], + "x-ms-unique-id": [ "858" ], + "x-ms-client-request-id": [ "14dd3196-9c11-4461-9792-982e0ad18fed" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5807,41 +5807,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2252b72b-ed05-40d4-83f0-c607fba3e6ea" ], + "x-ms-request-id": [ "593cbadf-cf90-440a-a7a0-042cf9b479d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b1e9480d-c16c-4389-a760-8158290375d1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "c2491f8b-fe3b-4a47-a011-685583055a47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192232Z:c2491f8b-fe3b-4a47-a011-685583055a47" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/05c2f342-cd11-4426-8165-d37baea3fde9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "07943a33-76b0-440d-8b09-062f3cf77a28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:07943a33-76b0-440d-8b09-062f3cf77a28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5382B17A11E84529B57732E65B3640D0 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:32Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 63F75FB6DE224150B6492873275F0219 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1179" ], - "x-ms-client-request-id": [ "3777ce08-3727-45db-8375-37e37e3b0ae9" ], + "x-ms-unique-id": [ "859" ], + "x-ms-client-request-id": [ "292de21b-b305-40d6-821a-29ded15e7daf" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5853,18 +5853,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b6826e6-dbe0-4c5c-8723-56c30eb1c9e3" ], + "x-ms-request-id": [ "6747d5ec-9e49-4057-be69-37bac10f7c5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a7892b68-9fc0-466b-bdeb-ff75a4399353" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40b323b1-338e-4d24-9937-bfec693e9d22" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "fc3b8c6b-1b31-458b-aaa9-c644fb60c434" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192233Z:fc3b8c6b-1b31-458b-aaa9-c644fb60c434" ], + "x-ms-correlation-request-id": [ "c945f83e-000a-4c75-835e-e19d784fca99" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:c945f83e-000a-4c75-835e-e19d784fca99" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9DDDA0E12AA4F7DB43814B92874E6EC Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:32Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F42767FCB8F4C658906CC92D64CB343 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5874,19 +5874,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1180" ], - "x-ms-client-request-id": [ "ed5554a2-1791-45c6-ba15-eee201731002" ], + "x-ms-unique-id": [ "860" ], + "x-ms-client-request-id": [ "adde18d2-bba9-4830-ab09-27edf412bce1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5897,42 +5897,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F785EFDBE0\"" ], + "ETag": [ "1DCBCBA96222CF5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16d355b7-a5eb-487a-a10a-fa7dcec6ea90" ], + "x-ms-request-id": [ "59c451d7-910c-48c3-9ddc-1e58ff273053" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "39f8431d-2933-44c8-a550-a960d94479b4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192233Z:39f8431d-2933-44c8-a550-a960d94479b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "5c6fd942-d29f-4bc9-a564-806248558871" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:5c6fd942-d29f-4bc9-a564-806248558871" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B6CB9ED3565491BA39A2637E2ACF0C5 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:33Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 15BF05408BA84638AD7BC25F15106ED8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8283" ], + "Content-Length": [ "8228" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-qm287u\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-qm287u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-n5rmpk-CentralUSwebspace-Linux/sites/Functions-Python-312-qm287u\",\"repositorySiteName\":\"Functions-Python-312-qm287u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-qm287u.azurewebsites.net\",\"functions-python-312-qm287u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-qm287u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-qm287u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T19:22:32.99\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-qm287u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-qm287u\\\\$Functions-Python-312-qm287u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-n5rmpk\",\"defaultHostName\":\"functions-python-312-qm287u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:48.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1181" ], - "x-ms-client-request-id": [ "9ce1f8cb-b21a-46e9-80d5-f4ff0862672d" ], + "x-ms-unique-id": [ "861" ], + "x-ms-client-request-id": [ "9bb18bf7-8c56-42ec-8537-731d7e28262d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5944,40 +5944,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "430bc3e6-eb1e-49ec-97b0-6109258458b5" ], + "x-ms-request-id": [ "05e562b2-8ea1-43b0-87e5-b112f9920342" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89de5457-5906-47de-83b6-378d1e4bbc5f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b1dfdd3-1afd-46f5-a270-8bda9049a0e3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2290e749-ccd1-44c3-9bdb-17014a5834f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192233Z:2290e749-ccd1-44c3-9bdb-17014a5834f1" ], + "x-ms-correlation-request-id": [ "04af91fb-c340-4784-955c-16fdce4b16ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:04af91fb-c340-4784-955c-16fdce4b16ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5533FC8B1766424899A0B1A55F900198 Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:33Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 526A19BF6E934436B9617B67A789A7D9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-qm287u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-qm287u\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "1182" ], - "x-ms-client-request-id": [ "520920f8-f94d-46d8-a5fa-7eb0212a52ed" ], + "x-ms-unique-id": [ "862" ], + "x-ms-client-request-id": [ "4e0b8ef4-b99f-454e-b1db-c2e7be878e14" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5989,27 +5989,26 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "574724e9-9e75-4b1c-80d8-6be69c2c7a16" ], + "x-ms-request-id": [ "539a196f-d4ce-430c-9992-21995116b7aa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b6744d0-8881-40ef-8cf3-74f7b82d8a03" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c848901-7cef-4d34-969b-bb9cf0a1b3ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1737b1a9-4579-4d07-923e-0b50bee35684" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T192233Z:1737b1a9-4579-4d07-923e-0b50bee35684" ], + "x-ms-correlation-request-id": [ "438f2ae4-233d-4c5e-bd69-8c25ce7737d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260326T005049Z:438f2ae4-233d-4c5e-bd69-8c25ce7737d1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D261B9D7FC4D46E9B475536A64D0152E Ref B: MWH011020807031 Ref C: 2025-11-17T19:22:33Z" ], - "Date": [ "Mon, 17 Nov 2025 19:22:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFF60127A6C34FE387BDEE0E3AA9BA01 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], + "Date": [ "Thu, 26 Mar 2026 00:50:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/Microsoft.Web/sites/Functions-Python-312-qm287u/config/web\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } } } - diff --git a/src/Functions/Functions.Autorest/test/env.json b/src/Functions/Functions.Autorest/test/env.json index 879c8a047650..675fea58571d 100644 --- a/src/Functions/Functions.Autorest/test/env.json +++ b/src/Functions/Functions.Autorest/test/env.json @@ -1,20 +1,62 @@ { - "flexLocation": "East Asia", + "flexStorageAccountPython": "flexapppythonsaa50y", + "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", + "workSpaceACAName": "workspace-azpstestkbew", + "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-y3eonk", + "functionNamePython": "Functions-Python-7mrsp6yjac", + "planNameWorkerTypeWindows": "Functions-Windows-Premium-iklz1o", + "functionAppsToCreate": [ + { + "RuntimeVersion": "7.4", + "FunctionsVersion": 4, + "Runtime": "PowerShell", + "PlanName": "Functions-Windows-Premium-iklz1o", + "StorageAccountName": "functionswinstorageh7d", + "Name": "Functions-PowerShell-74-iob4d5", + "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", + "OSType": "Windows" + }, + { + "RuntimeVersion": 22, + "FunctionsVersion": 4, + "Runtime": "Node", + "PlanName": "Functions-Linux-Premium-sjhkza", + "StorageAccountName": "functionslinuxstorage5f3", + "Name": "Functions-Node-22-jus0p7", + "ResourceGroupName": "Functions-Test-Linux-Premium-mr3bc4", + "OSType": "Linux" + }, + { + "StorageAccountName": "functionswinstorageh7d", + "FunctionsVersion": 4, + "RuntimeVersion": 8, + "Runtime": "DotNet", + "Name": "Functions-DotNet-8-xitn52", + "ResourceGroupName": "Functions-Test-Windows-Consumption-lc3ykb", + "Location": "central us", + "OSType": "Windows" + }, + { + "StorageAccountName": "functionslinuxstorage5f3", + "FunctionsVersion": 4, + "RuntimeVersion": "3.12", + "Runtime": "Python", + "Name": "Functions-Python-312-rmx6vl", + "ResourceGroupName": "Functions-Test-Linux-Consumption-y3eonk", + "Location": "central us", + "OSType": "Linux" + } + ], + "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-mr3bc4", + "functionAppTestPlanName2": "Functions-MyTestPlan2-2og675s19v", + "functionNameCustomHandler": "Functions-CustomHandlernb8m23gkpj", "flexIdentityInfo": { - "ClientId": "e15aad9b-2c91-48a4-9666-dda9d5f50327", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9", + "ClientId": "6e6e92b3-9403-44fc-a707-e67c047d4a2e", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-a50y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-a50y", "Location": "eastasia", - "Name": "my-flex-app-uai-w8x9", - "PrincipalId": "a14f1961-c973-490d-b71e-430fc0ffff2b", - "ResourceGroupName": "Functions-Flex-RG-w8x9", - "SystemData": { - "CreatedAt": null, - "CreatedBy": null, - "CreatedByType": null, - "LastModifiedAt": null, - "LastModifiedBy": null, - "LastModifiedByType": null - }, + "Name": "my-flex-app-uai-a50y", + "PrincipalId": "8053ec4f-5882-4542-89b5-cb9e94848c5f", + "ResourceGroupName": "Functions-Flex-RG-a50y", "SystemDataCreatedAt": null, "SystemDataCreatedBy": null, "SystemDataCreatedByType": null, @@ -25,156 +67,107 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-wa4tycjxz7", - "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-y9jkp1", - "workSpaceACAName": "workspace-azpstest48jb", - "flexTestRunId": "w8x9", - "functionAppPlanName": "Functions-MyPlan-yk9lqxsju8", - "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-lyg1di", - "functionNameCustomHandler": "Functions-CustomHandlergcma72synf", + "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsaa", + "functionAppTestPlanName": "Functions-MyTestPlan1-iu5bjls016", + "environmentACAName": "azps-envtestkbew", + "flexStorageAccountNode": "flexappnodesaa50y", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-lc3ykb", + "functionNamePowerShellNew6": "Func-PowerShell-NewTest6-xpt80akrzv", + "flexFunctionAppName": "Flex-PowerShell-a50y", + "planNameWorkerTypeLinux": "Functions-Linux-Premium-sjhkza", + "functionNameContainer": "Functions-CustomImage-4ps815eax3", + "functionNamePowerShellNew7": "Func-PowerShell-NewTest7-pz8c2l4wbk", + "flexResourceGroupName": "Functions-Flex-RG-a50y", + "flexStorageAccountCustom": "flexappcustomsaa50y", + "functionNamePowerShell": "Functions-PowerShellTest-d90zp8nj5h", + "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-7q9cjpgboy", + "locationACA": "WestCentralUS", + "functionNameJava": "Functions-Java-0ehb98v3n4", + "location": "central us", + "flexTestRunId": "a50y", + "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-1xmbohf4tc", + "functionAppPlanName": "Functions-MyPlan-8we2jigcnz", + "storageAccountLinux": "functionslinuxstorage5f3", + "functionNamePowerShellNew8": "Func-PowerShell-NewTest8-w6t25049gs", + "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-py1fb4", + "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-e5279qnwbr", + "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-t5dnwqpf7r", + "flexStorageAccountJava": "flexappjavasaa50y", + "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-d3t8hyrciu", + "functionNameTestApp": "Functions-TestAppName-8qzi5nxbja", + "storageAccountNameACA": "funcacastotoragekbew", + "functionNameDotNet": "Functions-DotNet-27pudsgrfk", + "flexLocation": "East Asia", + "storageAccountWindows": "functionswinstorageh7d", + "functionNameDotNetIsolated": "Functions-DotNet-Isolated0f543v96sw", + "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-i9enm6", + "functionNameNode": "Functions-Node-ulmzgn9t6x", "newApplInsights": { - "AppId": "c5cb1ed1-59e5-4466-adda-509cc3b8cac1", - "ApplicationId": "Functions-PowerShellTest-z7cj05b1wo-new", + "AppId": "6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd", + "ApplicationId": "Functions-PowerShellTest-d90zp8nj5h-new", "ApplicationType": {}, - "ConnectionString": "InstrumentationKey=abae86ac-58e7-4a02-a723-743f22d57cbd;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=c5cb1ed1-59e5-4466-adda-509cc3b8cac1", - "CreationDate": "2025-11-17T18:14:26.6860095Z", + "ConnectionString": "InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED", + "CreationDate": "2026-03-26T00:07:23.7109657Z", "DisableIPMasking": null, "DisableLocalAuth": null, - "Etag": "\"a0004048-0000-0300-0000-691b66070000\"", + "Etag": "\"c2024307-0000-0300-0000-69c478c00000\"", "FlowType": {}, "ForceCustomerStorageForProfiler": null, "HockeyAppId": null, "HockeyAppToken": null, - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo-new", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h-new", "ImmediatePurgeDataOn30Day": null, "IngestionMode": {}, - "InstrumentationKey": "abae86ac-58e7-4a02-a723-743f22d57cbd", + "InstrumentationKey": "AI-INSTRUMENTATION-KEY-REDACTED", "Kind": "web", "LaMigrationDate": null, "Location": "centralus", - "Name": "Functions-PowerShellTest-z7cj05b1wo-new", + "Name": "Functions-PowerShellTest-d90zp8nj5h-new", "PrivateLinkScopedResource": null, - "PropertiesName": "Functions-PowerShellTest-z7cj05b1wo-new", + "PropertiesName": "Functions-PowerShellTest-d90zp8nj5h-new", "ProvisioningState": "Succeeded", "PublicNetworkAccessForIngestion": {}, "PublicNetworkAccessForQuery": {}, "RequestSource": {}, - "ResourceGroupName": "Functions-Test-Windows-Premium-y9jkp1", + "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", "RetentionInDay": 90, "SamplingPercentage": null, "Tag": {}, "TenantId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", "Type": "microsoft.insights/components", - "WorkspaceResourceId": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo-new_c5cb1ed1-59e5-4466-adda-509cc3b8cac1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-new-ws" + "WorkspaceResourceId": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h-new_6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-new-ws" }, - "functionNameJava": "Functions-Java-45u8yx19h0", - "planNameWorkerTypeLinux": "Functions-Linux-Premium-io68qa", - "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-ie0b2an8xm", - "environmentACAName": "azps-envtest48jb", - "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsaw", - "flexStorageAccountJava": "flexappjavasaw8x9", - "functionNameDotNet": "Functions-DotNet-kam4d5gjzf", - "storageAccountLinux": "functionslinuxstorage9t5", - "flexStorageAccountPython": "flexapppythonsaw8x9", - "storageAccountWindows": "functionswinstorageizw", - "functionAppsToCreate": [ - { - "OSType": "Windows", - "RuntimeVersion": "7.4", - "StorageAccountName": "functionswinstorageizw", - "PlanName": "Functions-Windows-Premium-arx9yi", - "Runtime": "PowerShell", - "FunctionsVersion": 4, - "ResourceGroupName": "Functions-Test-Windows-Premium-y9jkp1", - "Name": "Functions-PowerShell-74-8m0tjy" - }, - { - "OSType": "Linux", - "RuntimeVersion": 22, - "StorageAccountName": "functionslinuxstorage9t5", - "PlanName": "Functions-Linux-Premium-io68qa", - "Runtime": "Node", - "FunctionsVersion": 4, - "ResourceGroupName": "Functions-Test-Linux-Premium-qtnd3j", - "Name": "Functions-Node-22-25v7bk" - }, - { - "OSType": "Windows", - "RuntimeVersion": 8, - "StorageAccountName": "functionswinstorageizw", - "FunctionsVersion": 4, - "Runtime": "DotNet", - "Location": "central us", - "ResourceGroupName": "Functions-Test-Windows-Consumption-w8ejmo", - "Name": "Functions-DotNet-8-3k0a1w" - }, - { - "OSType": "Linux", - "RuntimeVersion": "3.12", - "StorageAccountName": "functionslinuxstorage9t5", - "FunctionsVersion": 4, - "Runtime": "Python", - "Location": "central us", - "ResourceGroupName": "Functions-Test-Linux-Consumption-n5rmpk", - "Name": "Functions-Python-312-qm287u" - } - ], - "functionNameContainer": "Functions-CustomImage-p2wzf7nt5g", - "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-94dzrfhslm", - "location": "central us", - "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-864zaeovnd", - "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-lgj9k87dn6", - "functionNamePython": "Functions-Python-s1yaf62r9d", - "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-las2iv", - "functionNameDotNetIsolated": "Functions-DotNet-Isolateddmnvqoj6w4", - "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-n5rmpk", - "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-z421i6", - "flexResourceGroupName": "Functions-Flex-RG-w8x9", - "functionNameTestApp": "Functions-TestAppName-jpdh6mrvxc", - "acaTestRunId": "48jb", - "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", - "flexStorageAccountCustom": "flexappcustomsaw8x9", - "storageAccountNameACA": "funcacastotorage48jb", - "functionAppTestPlanName": "Functions-MyTestPlan1-1anhuxywdc", - "flexStorageAccountNode": "flexappnodesaw8x9", - "functionNameNode": "Functions-Node-hwu6yrk3xi", - "flexStorageAccountPowerShell": "flexapppowershellsaw8x9", - "functionNamePowerShell": "Functions-PowerShellTest-z7cj05b1wo", + "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-gzxfvo", + "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-yv6luz", + "resourceGroupNameACA": "Functions-ACA-Test-kbew", "servicePlansToCreate": [ { - "Sku": "EP1", - "ResourceGroupName": "Functions-Test-Windows-Premium-y9jkp1", - "Name": "Functions-Windows-Premium-arx9yi", - "MaximumWorkerCount": 10, - "WorkerType": "Windows", "MinimumWorkerCount": 1, + "WorkerType": "Windows", + "MaximumWorkerCount": 10, + "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", + "Name": "Functions-Windows-Premium-iklz1o", + "Sku": "EP1", "Location": "central us" }, { - "Sku": "EP1", - "ResourceGroupName": "Functions-Test-Linux-Premium-qtnd3j", - "Name": "Functions-Linux-Premium-io68qa", - "MaximumWorkerCount": 10, - "WorkerType": "Linux", "MinimumWorkerCount": 1, + "WorkerType": "Linux", + "MaximumWorkerCount": 10, + "ResourceGroupName": "Functions-Test-Linux-Premium-mr3bc4", + "Name": "Functions-Linux-Premium-sjhkza", + "Sku": "EP1", "Location": "central us" } ], "identityInfo": { - "ClientId": "cd05a190-f35b-4f6b-8748-efe1238bb1ff", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", + "ClientId": "9117d8bd-9ee2-4972-8373-fd719cde24ad", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", "Location": "centralus", "Name": "ID1", - "PrincipalId": "04c6ae83-2119-4150-8142-842046585154", - "ResourceGroupName": "Functions-Test-Windows-Premium-y9jkp1", - "SystemData": { - "CreatedAt": null, - "CreatedBy": null, - "CreatedByType": null, - "LastModifiedAt": null, - "LastModifiedBy": null, - "LastModifiedByType": null - }, + "PrincipalId": "491cde4e-f8e2-4fd9-a008-c7f56684132d", + "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", "SystemDataCreatedAt": null, "SystemDataCreatedBy": null, "SystemDataCreatedByType": null, @@ -185,11 +178,6 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-w8ejmo", - "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-qtnd3j", - "functionAppTestPlanName2": "Functions-MyTestPlan2-5l397gfkhz", - "locationACA": "WestCentralUS", - "planNameWorkerTypeWindows": "Functions-Windows-Premium-arx9yi", - "resourceGroupNameACA": "Functions-ACA-Test-48jb", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47" + "acaTestRunId": "kbew", + "flexStorageAccountPowerShell": "flexapppowershellsaa50y" } diff --git a/src/Functions/Functions.Autorest/test/utils.ps1 b/src/Functions/Functions.Autorest/test/utils.ps1 index 6c125ab6b979..1ad1424166c6 100644 --- a/src/Functions/Functions.Autorest/test/utils.ps1 +++ b/src/Functions/Functions.Autorest/test/utils.ps1 @@ -217,6 +217,9 @@ function setupEnv() { $functionNamePowerShellNew3 = "Func-PowerShell-NewTest3-" + (RandomString -len 10) $functionNamePowerShellNew4 = "Func-PowerShell-NewTest4-" + (RandomString -len 10) $functionNamePowerShellNew5 = "Func-PowerShell-NewTest5-" + (RandomString -len 10) + $functionNamePowerShellNew6 = "Func-PowerShell-NewTest6-" + (RandomString -len 10) + $functionNamePowerShellNew7 = "Func-PowerShell-NewTest7-" + (RandomString -len 10) + $functionNamePowerShellNew8 = "Func-PowerShell-NewTest8-" + (RandomString -len 10) $functionNameContainer = "Functions-CustomImage-" + (RandomString -len 10) $functionNameTestApp = "Functions-TestAppName-" + (RandomString -len 10) $functionNameDotNet = "Functions-DotNet-" + (RandomString -len 10) @@ -238,6 +241,9 @@ function setupEnv() { $env.add('functionNamePowerShellNew3', $functionNamePowerShellNew3) | Out-Null $env.add('functionNamePowerShellNew4', $functionNamePowerShellNew4) | Out-Null $env.add('functionNamePowerShellNew5', $functionNamePowerShellNew5) | Out-Null + $env.add('functionNamePowerShellNew6', $functionNamePowerShellNew6) | Out-Null + $env.add('functionNamePowerShellNew7', $functionNamePowerShellNew7) | Out-Null + $env.add('functionNamePowerShellNew8', $functionNamePowerShellNew8) | Out-Null $env.add('functionNameContainer', $functionNameContainer) | Out-Null $env.add('functionNameTestApp', $functionNameTestApp) | Out-Null $env.add('functionNameDotNet', $functionNameDotNet) | Out-Null @@ -333,6 +339,17 @@ function setupEnv() { $env.add('flexResourceGroupName', $flexResourceGroupName) | Out-Null $env.add('flexIdentityInfo', $flexIdentityInfo) | Out-Null + # Create a Flex Consumption function app for Update-AzFunctionApp guard tests + Write-Host "Creating Flex Consumption function app for update guard test" -ForegroundColor Yellow + $flexFunctionAppName = "Flex-PowerShell-" + $flexTestRunId + New-AzFunctionApp -Name $flexFunctionAppName ` + -ResourceGroupName $flexResourceGroupName ` + -StorageAccountName $env.flexStorageAccountPowerShell ` + -Runtime PowerShell ` + -FlexConsumptionLocation $flexLocation + + $env.add('flexFunctionAppName', $flexFunctionAppName) | Out-Null + $envFile = 'env.json' if ($TestMode -eq 'live') { $envFile = 'localEnv.json' diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index 380cb6a0803b..c38b96ba4e4d 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{B67127B7-0CBA-406F-B867-A715F1E0E5B1}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{87933F39-A240-4FBA-9371-EEDCFB25C746}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Debug|Any CPU.Build.0 = Debug|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Debug|x64.ActiveCfg = Debug|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Debug|x64.Build.0 = Debug|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Debug|x86.ActiveCfg = Debug|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Debug|x86.Build.0 = Debug|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Release|Any CPU.Build.0 = Release|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Release|x64.ActiveCfg = Release|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Release|x64.Build.0 = Release|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Release|x86.ActiveCfg = Release|Any CPU - {B67127B7-0CBA-406F-B867-A715F1E0E5B1}.Release|x86.Build.0 = Release|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|Any CPU.Build.0 = Debug|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x64.ActiveCfg = Debug|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x64.Build.0 = Debug|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x86.ActiveCfg = Debug|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x86.Build.0 = Debug|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|Any CPU.ActiveCfg = Release|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|Any CPU.Build.0 = Release|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x64.ActiveCfg = Release|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x64.Build.0 = Release|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x86.ActiveCfg = Release|Any CPU + {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {B67127B7-0CBA-406F-B867-A715F1E0E5B1} = {409734C8-465A-6FC8-866F-C49222B018F2} + {87933F39-A240-4FBA-9371-EEDCFB25C746} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal diff --git a/src/Functions/Functions/Az.Functions.psd1 b/src/Functions/Functions/Az.Functions.psd1 index 7f1d73f62524..1c24d445de06 100644 --- a/src/Functions/Functions/Az.Functions.psd1 +++ b/src/Functions/Functions/Az.Functions.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 12-Feb-26 +# Generated on: 3/25/2026 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.3.1' +ModuleVersion = '4.3.0' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.2'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.1'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Functions.Autorest/bin/Az.Functions.private.dll' @@ -117,7 +117,10 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* Fixed cloud portability by using dynamic endpoints for storage [#29034]' + ReleaseNotes = '* Added FlexConsumption support to Get-AzFunctionAppAvailableLocation, which returns a list of regions that supported Flex Consumption, including locations supporting zone redundancy (currently applied only to Flex Consumption) +* Added a new cmdlet Get-AzFunctionAppFlexConsumptionRuntime to retrieve Flex Consumption runtimes for a specified location +* Added a new parameter set to New-AzFunctionApp to support Flex Consumption function apps [#24349] +* Refreshed stack definitions' # Prerelease string of this module # Prerelease = '' diff --git a/src/Functions/Functions/ChangeLog.md b/src/Functions/Functions/ChangeLog.md index e05d7f8ae794..a0683c2cccb6 100644 --- a/src/Functions/Functions/ChangeLog.md +++ b/src/Functions/Functions/ChangeLog.md @@ -18,12 +18,13 @@ - Additional information about change #1 --> ## Upcoming Release -* Preannounced breaking changes. Please refer to https://go.microsoft.com/fwlink/?linkid=2333229 -* Fixed an issue where New-AzFunctionApp fails due to duplicate -Name parameter binding. [#29166] - -## Version 4.3.1 - -* Fixed cloud portability by using dynamic endpoints for storage [#29034] +* Migrated Az.Functions module from AutoRest PowerShell v3 to v4. This may introduce breaking changes. Please refer to [here](https://go.microsoft.com/fwlink/?linkid=2340249). + - Replaced `-IdentityType` parameter with `-EnableSystemAssignedIdentity` (Boolean/SwitchParameter) in `New-AzFunctionApp` and `Update-AzFunctionApp` + - Replaced `-IdentityID` parameter with `-UserAssignedIdentity` (String array of ARM resource IDs) in `New-AzFunctionApp` and `Update-AzFunctionApp` + - `New-AzFunctionApp` and `Update-AzFunctionApp` now support combining SystemAssigned and UserAssigned identities in a single call +* Fixed error message in `Update-AzFunctionApp` to reference `-EnableSystemAssignedIdentity` instead of removed `-IdentityType` +* Fixed error message in `New-AzFunctionApp` to reference `-EnableSystemAssignedIdentity` instead of removed `-IdentityType` +* Added SKU validation guards in `Update-AzFunctionApp` to prevent unsupported operations on Flex Consumption and Container App plans ## Version 4.3.0 * Added FlexConsumption support to Get-AzFunctionAppAvailableLocation, which returns a list of regions that supported Flex Consumption, including locations supporting zone redundancy (currently applied only to Flex Consumption) diff --git a/src/Functions/Functions/Properties/AssemblyInfo.cs b/src/Functions/Functions/Properties/AssemblyInfo.cs index cec8232d7fe4..a9cd58ba7674 100644 --- a/src/Functions/Functions/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("A92CAC7D-41F1-47CA-BC10-F6736BCD4072")] -[assembly: AssemblyVersion("4.3.1")] -[assembly: AssemblyFileVersion("4.3.1")] +[assembly: AssemblyVersion("4.3.0")] +[assembly: AssemblyFileVersion("4.3.0")] diff --git a/src/Functions/Functions/help/Get-AzFunctionApp.md b/src/Functions/Functions/help/Get-AzFunctionApp.md index a18c1d1e4549..bed6a1af75c1 100644 --- a/src/Functions/Functions/help/Get-AzFunctionApp.md +++ b/src/Functions/Functions/help/Get-AzFunctionApp.md @@ -196,7 +196,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## NOTES diff --git a/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md b/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md index 41357adab9d9..6e9b363c8ef6 100644 --- a/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md +++ b/src/Functions/Functions/help/Get-AzFunctionAppAvailableLocation.md @@ -318,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IGeoRegion +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IGeoRegion ## NOTES diff --git a/src/Functions/Functions/help/Get-AzFunctionAppPlan.md b/src/Functions/Functions/help/Get-AzFunctionAppPlan.md index 285f1b91cb6a..f3205a54dd8b 100644 --- a/src/Functions/Functions/help/Get-AzFunctionAppPlan.md +++ b/src/Functions/Functions/help/Get-AzFunctionAppPlan.md @@ -197,7 +197,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## NOTES diff --git a/src/Functions/Functions/help/Get-AzFunctionAppSetting.md b/src/Functions/Functions/help/Get-AzFunctionAppSetting.md index 9f0fd6215bdf..052c644ce4c8 100644 --- a/src/Functions/Functions/help/Get-AzFunctionAppSetting.md +++ b/src/Functions/Functions/help/Get-AzFunctionAppSetting.md @@ -39,6 +39,7 @@ This command gets the app settings of a function app. ## PARAMETERS ### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -53,10 +54,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -148,11 +149,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary ## NOTES diff --git a/src/Functions/Functions/help/New-AzFunctionApp.md b/src/Functions/Functions/help/New-AzFunctionApp.md index 5a3ce074945a..26ac2989dafb 100644 --- a/src/Functions/Functions/help/New-AzFunctionApp.md +++ b/src/Functions/Functions/help/New-AzFunctionApp.md @@ -18,8 +18,9 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName -Runtime [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-OSType ] [-RuntimeVersion ] [-FunctionsVersion ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-IdentityType ] [-IdentityID ] [-DefaultProfile ] [-NoWait] - [-AsJob] [-WhatIf] [-Confirm] [] + [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] + [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] + [] ``` ### ByAppServicePlan @@ -27,9 +28,9 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName -Runtime [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-OSType ] [-RuntimeVersion ] [-FunctionsVersion ] [-DisableApplicationInsights] - [-PassThru] [-Tag ] [-AppSetting ] [-IdentityType ] - [-IdentityID ] -PlanName [-DefaultProfile ] [-NoWait] [-AsJob] - [-WhatIf] [-Confirm] [] + [-PassThru] [-Tag ] [-AppSetting ] [-EnableSystemAssignedIdentity] + [-UserAssignedIdentity ] [-Break ] -PlanName [-DefaultProfile ] [-NoWait] + [-AsJob] [-WhatIf] [-Confirm] [] ``` ### FlexConsumption @@ -37,7 +38,7 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName -Runtime [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-RuntimeVersion ] [-DisableApplicationInsights] [-PassThru] [-Tag ] - [-AppSetting ] [-IdentityType ] [-IdentityID ] + [-AppSetting ] [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] -FlexConsumptionLocation [-DeploymentStorageName ] [-DeploymentStorageContainerName ] [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] [-AlwaysReady ] [-MaximumInstanceCount ] [-InstanceMemoryMB ] [-HttpPerInstanceConcurrency ] @@ -50,8 +51,8 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-IdentityType ] [-IdentityID ] -Environment [-Image ] - [-RegistryCredential ] [-WorkloadProfileName ] [-ResourceCpu ] + [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] -Environment + [-Image ] [-RegistryCredential ] [-WorkloadProfileName ] [-ResourceCpu ] [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] [-RegistryServer ] [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] @@ -62,7 +63,7 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-IdentityType ] [-IdentityID ] -Image + [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] -Image [-RegistryCredential ] -PlanName [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -132,11 +133,11 @@ This command creates a PowerShell function app hosted in a Flex Consumption plan ### -AlwaysReady Array of hashtables describing the AlwaysReady configuration. Each hashtable must include: -- name: The function name or route name. -- instanceCount: The number of pre-warmed instances for that function. + - name: The function name or route name. + - instanceCount: The number of pre-warmed instances for that function. -Example: -@(@{ name = "http"; instanceCount = 2 }). + Example: + @(@{ name = "http"; instanceCount = 2 }). ```yaml Type: System.Collections.Hashtable[] @@ -210,7 +211,22 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -Break + +```yaml +Type: System.Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -301,6 +317,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableSystemAssignedIdentity +Determines whether to enable a system-assigned identity for the resource. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -EnableZoneRedundancy Enable zone redundancy for high availability. Applies to Flex Consumption SKU only. @@ -377,41 +408,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityID -Specifies the list of user identities associated with the function app. - The user identity references will be ARM resource ids in the form: - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}' - -```yaml -Type: System.String[] -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -IdentityType -Specifies the type of identity used for the function app. - The acceptable values for this parameter are: - - SystemAssigned - - UserAssigned - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Image Container image name, e.g., publisher/image-name:tag. @@ -744,6 +740,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -UserAssignedIdentity +The array of user assigned identities associated with the function app. + The user identity references will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -WorkloadProfileName The workload profile name to run the container app on. @@ -797,7 +810,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## NOTES diff --git a/src/Functions/Functions/help/New-AzFunctionAppPlan.md b/src/Functions/Functions/help/New-AzFunctionAppPlan.md index 317427c4d46b..b642d191aca2 100644 --- a/src/Functions/Functions/help/New-AzFunctionAppPlan.md +++ b/src/Functions/Functions/help/New-AzFunctionAppPlan.md @@ -55,6 +55,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -258,7 +259,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## NOTES diff --git a/src/Functions/Functions/help/Remove-AzFunctionApp.md b/src/Functions/Functions/help/Remove-AzFunctionApp.md index 4e5e00f99c92..930c1cad41d7 100644 --- a/src/Functions/Functions/help/Remove-AzFunctionApp.md +++ b/src/Functions/Functions/help/Remove-AzFunctionApp.md @@ -77,10 +77,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -122,6 +122,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName +The name of the resource group. ```yaml Type: System.String @@ -186,7 +187,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions/help/Remove-AzFunctionAppPlan.md b/src/Functions/Functions/help/Remove-AzFunctionAppPlan.md index b4bef6dae78d..378fa5bb6e45 100644 --- a/src/Functions/Functions/help/Remove-AzFunctionAppPlan.md +++ b/src/Functions/Functions/help/Remove-AzFunctionAppPlan.md @@ -77,10 +77,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app plan object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan Parameter Sets: ByObjectInput Aliases: @@ -122,6 +122,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName +The name of the resource group. ```yaml Type: System.String @@ -186,7 +187,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## OUTPUTS diff --git a/src/Functions/Functions/help/Remove-AzFunctionAppSetting.md b/src/Functions/Functions/help/Remove-AzFunctionAppSetting.md index f4cd5debad15..e4093996690c 100644 --- a/src/Functions/Functions/help/Remove-AzFunctionAppSetting.md +++ b/src/Functions/Functions/help/Remove-AzFunctionAppSetting.md @@ -55,6 +55,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -84,10 +85,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -179,11 +180,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary ## NOTES diff --git a/src/Functions/Functions/help/Restart-AzFunctionApp.md b/src/Functions/Functions/help/Restart-AzFunctionApp.md index 8b7dbbac3d5f..5c3e647c68a9 100644 --- a/src/Functions/Functions/help/Restart-AzFunctionApp.md +++ b/src/Functions/Functions/help/Restart-AzFunctionApp.md @@ -77,10 +77,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -122,6 +122,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName +The name of the resource group. ```yaml Type: System.String @@ -186,7 +187,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions/help/Start-AzFunctionApp.md b/src/Functions/Functions/help/Start-AzFunctionApp.md index 029f8be32a9d..1ef7b1884d80 100644 --- a/src/Functions/Functions/help/Start-AzFunctionApp.md +++ b/src/Functions/Functions/help/Start-AzFunctionApp.md @@ -62,10 +62,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -107,6 +107,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName +The name of the resource group. ```yaml Type: System.String @@ -171,7 +172,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions/help/Stop-AzFunctionApp.md b/src/Functions/Functions/help/Stop-AzFunctionApp.md index 66796bed4433..797dd38ceacc 100644 --- a/src/Functions/Functions/help/Stop-AzFunctionApp.md +++ b/src/Functions/Functions/help/Stop-AzFunctionApp.md @@ -77,10 +77,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -122,6 +122,7 @@ Accept wildcard characters: False ``` ### -ResourceGroupName +The name of the resource group. ```yaml Type: System.String @@ -186,7 +187,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS diff --git a/src/Functions/Functions/help/Update-AzFunctionApp.md b/src/Functions/Functions/help/Update-AzFunctionApp.md index d160f06044a6..ff63ef2c9daf 100644 --- a/src/Functions/Functions/help/Update-AzFunctionApp.md +++ b/src/Functions/Functions/help/Update-AzFunctionApp.md @@ -16,15 +16,15 @@ Updates a function app. ``` Update-AzFunctionApp -ResourceGroupName -Name [-SubscriptionId ] [-PlanName ] [-Force] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-Tag ] - [-IdentityType ] [-IdentityID ] [-DefaultProfile ] [-NoWait] - [-AsJob] [-WhatIf] [-Confirm] [] + [-EnableSystemAssignedIdentity ] [-UserAssignedIdentity ] [-DefaultProfile ] + [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] ``` ### ByObjectInput ``` Update-AzFunctionApp [-PlanName ] [-Force] [-ApplicationInsightsName ] - [-ApplicationInsightsKey ] [-Tag ] [-IdentityType ] - [-IdentityID ] -InputObject [-DefaultProfile ] [-NoWait] [-AsJob] + [-ApplicationInsightsKey ] [-Tag ] [-EnableSystemAssignedIdentity ] + [-UserAssignedIdentity ] -InputObject [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -42,7 +42,7 @@ This command updates function app hosting plan. ### Example 2: Set a SystemAssigned managed identity for a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -IdentityType SystemAssigned -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 1 -Force ``` This command sets a SystemAssigned managed identity for a function app. @@ -56,7 +56,7 @@ This command updates function app Application Insights. ### Example 3: Remove managed identity from a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -IdentityType None -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 0 -Force ``` This command removes a managed identity from a function app. @@ -109,6 +109,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -122,28 +123,11 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Force -Forces the cmdlet to update the function app without prompting for confirmation. +### -EnableSystemAssignedIdentity +Determines whether to enable a system-assigned identity for the resource. ```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -IdentityID -Specifies the list of user identities associated with the function app. - The user identity references will be ARM resource ids in the form: - '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/identities/{identityName}' - -```yaml -Type: System.String[] +Type: System.Boolean Parameter Sets: (All) Aliases: @@ -154,16 +138,11 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IdentityType -Specifies the type of identity used for the function app. - The type 'None' will remove any identities from the function app. -The acceptable values for this parameter are: - - SystemAssigned - - UserAssigned - - None +### -Force +Forces the cmdlet to update the function app without prompting for confirmation. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Support.ManagedServiceIdentityType +Type: System.Management.Automation.SwitchParameter Parameter Sets: (All) Aliases: @@ -175,10 +154,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -280,6 +259,23 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -UserAssignedIdentity +The array of user assigned identities associated with the function app. + The user identity references will be ARM resource ids in the form: + '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}' + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. @@ -316,11 +312,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## NOTES diff --git a/src/Functions/Functions/help/Update-AzFunctionAppPlan.md b/src/Functions/Functions/help/Update-AzFunctionAppPlan.md index 41b3aa0f891d..9a034063b11b 100644 --- a/src/Functions/Functions/help/Update-AzFunctionAppPlan.md +++ b/src/Functions/Functions/help/Update-AzFunctionAppPlan.md @@ -61,6 +61,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -90,10 +91,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app plan object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan Parameter Sets: ByObjectInput Aliases: @@ -261,11 +262,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan ## NOTES diff --git a/src/Functions/Functions/help/Update-AzFunctionAppSetting.md b/src/Functions/Functions/help/Update-AzFunctionAppSetting.md index 81ab5c7c65ea..6ae6262e70d9 100644 --- a/src/Functions/Functions/help/Update-AzFunctionAppSetting.md +++ b/src/Functions/Functions/help/Update-AzFunctionAppSetting.md @@ -56,6 +56,7 @@ Accept wildcard characters: False ``` ### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. ```yaml Type: System.Management.Automation.PSObject @@ -85,10 +86,10 @@ Accept wildcard characters: False ``` ### -InputObject -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +The function app object. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +Type: Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite Parameter Sets: ByObjectInput Aliases: @@ -180,11 +181,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IStringDictionary +### Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary ## NOTES From 9bdb4e7e4c5fb5a9f4d6c2568f0391ccf1aa066f Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 26 Mar 2026 01:54:08 -0700 Subject: [PATCH 2/9] Fix Copilot review issues for Az.Functions AutoRest v4 migration - Fix identity parameter detection in Update-AzFunctionApp to use PSBoundParameters.ContainsKey instead of truthiness check, correctly handling -UserAssignedIdentity @() empty array case - Remove duplicate -Name parameter in ValidateFunctionAppNameAvailability to prevent runtime binding error (Name already in PSBoundParameters) - Add [Parameter(DontShow)] and [SwitchParameter] type to param in New-AzFunctionApp to hide it from public help - Update help example to use -EnableSystemAssignedIdentity:False instead of 0 for Boolean parameter clarity - Restore module/assembly versions to 4.3.1 to match upstream/main - Remove obsolete custom/Api20231201/ files (superseded by custom/api/Support/) --- .../Properties/AssemblyInfo.cs | 5 +-- .../custom/Api20231201/AppServicePlan.cs | 12 ------- .../custom/Api20231201/Site.cs | 22 ------------ .../custom/HelperFunctions.ps1 | 2 +- .../custom/New-AzFunctionApp.ps1 | 3 ++ .../custom/Update-AzFunctionApp.ps1 | 9 +++-- .../docs/New-AzFunctionApp.md | 36 ++++++------------- .../docs/Update-AzFunctionApp.md | 2 +- .../examples/Update-AzFunctionApp.md | 2 +- .../Functions.Autorest/generate-info.json | 2 +- src/Functions/Functions.sln | 28 +++++++-------- src/Functions/Functions/Az.Functions.psd1 | 6 ++-- .../Functions/Properties/AssemblyInfo.cs | 4 +-- .../Functions/help/New-AzFunctionApp.md | 31 +++++----------- .../Functions/help/Update-AzFunctionApp.md | 2 +- 15 files changed, 52 insertions(+), 114 deletions(-) delete mode 100644 src/Functions/Functions.Autorest/custom/Api20231201/AppServicePlan.cs delete mode 100644 src/Functions/Functions.Autorest/custom/Api20231201/Site.cs diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index c6747db81ca7..f7829425cb86 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -20,10 +20,11 @@ [assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] [assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] [assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Functions")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("4.3.0")] -[assembly: System.Reflection.AssemblyVersionAttribute("4.3.0")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("4.3.1")] +[assembly: System.Reflection.AssemblyVersionAttribute("4.3.1")] [assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] [assembly: System.CLSCompliantAttribute(false)] + diff --git a/src/Functions/Functions.Autorest/custom/Api20231201/AppServicePlan.cs b/src/Functions/Functions.Autorest/custom/Api20231201/AppServicePlan.cs deleted file mode 100644 index 1e527dc9efef..000000000000 --- a/src/Functions/Functions.Autorest/custom/Api20231201/AppServicePlan.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201 -{ - public partial class AppServicePlan : - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlan, - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.IAppServicePlanInternal, - Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.IValidates - { - // This gets set via PowerShell. For more info, please see custom/HelperScripts/HelperFunctions.ps1 - /// The Service plan worker type. - public string WorkerType { get; set; } - } -} diff --git a/src/Functions/Functions.Autorest/custom/Api20231201/Site.cs b/src/Functions/Functions.Autorest/custom/Api20231201/Site.cs deleted file mode 100644 index 03f6f7a718f5..000000000000 --- a/src/Functions/Functions.Autorest/custom/Api20231201/Site.cs +++ /dev/null @@ -1,22 +0,0 @@ -namespace Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201 -{ - public partial class Site : - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISite, - Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20231201.ISiteInternal, - Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.IValidates - { - - // Function app settings. These gets set via PowerShell. For more info, please see custom/HelperScripts/HelperFunctions.ps1 - - public System.Collections.Hashtable ApplicationSettings { get; set; } - - public System.Collections.Hashtable SiteConfig { get; set; } - - public string Runtime { get; set; } - - public string OSType { get; set; } - - public string AppServicePlan { get; set; } - - } -} diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 1f82e32cafc3..16f838e5a039 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -763,7 +763,7 @@ function ValidateFunctionAppNameAvailability -Exception $exception } - $result = Az.Functions.internal\Test-AzNameAvailability -Name $Name -Type Site @PSBoundParameters + $result = Az.Functions.internal\Test-AzNameAvailability -Type Site @PSBoundParameters if (-not $result.NameAvailable) { diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index c6e61e33d2a6..5e1db71dfbfb 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -286,6 +286,9 @@ function New-AzFunctionApp { [Microsoft.Azure.PowerShell.Cmdlets.Functions.Category('Azure')] [System.Management.Automation.PSObject] ${DefaultProfile}, + + [Parameter(DontShow)] + [System.Management.Automation.SwitchParameter] ${Break}, [Parameter(DontShow)] diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 index cec9e7a3bd62..543d6caf0c2f 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 @@ -208,14 +208,13 @@ function Update-AzFunctionApp { # Identity information $userProvidedIdentitySettings = $hasEnableSystemAssignedIdentityParam -or - ($UserAssignedIdentity) + $hasUserAssignedIdentityParam if ($userProvidedIdentitySettings) { $enableSystemAssigned = $EnableSystemAssignedIdentity -eq $true - $hasUserAssigned = $UserAssignedIdentity - if ($hasUserAssigned -and $UserAssignedIdentity.Count -eq 0) + if ($hasUserAssignedIdentityParam -and $UserAssignedIdentity.Count -eq 0) { $errorMessage = "At least one user-assigned identity resource ID must be provided via the -UserAssignedIdentity parameter." $exception = [System.InvalidOperationException]::New($errorMessage) @@ -225,7 +224,7 @@ function Update-AzFunctionApp { -Exception $exception } - if ($enableSystemAssigned -and $hasUserAssigned) + if ($enableSystemAssigned -and $hasUserAssignedIdentityParam) { $functionAppDef.IdentityType = "SystemAssigned,UserAssigned" $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $UserAssignedIdentity @@ -235,7 +234,7 @@ function Update-AzFunctionApp { { $functionAppDef.IdentityType = "SystemAssigned" } - elseif ($hasUserAssigned) + elseif ($hasUserAssignedIdentityParam) { $functionAppDef.IdentityType = "UserAssigned" $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $UserAssignedIdentity diff --git a/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md index f2b556d0a100..383f96527edb 100644 --- a/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/New-AzFunctionApp.md @@ -16,7 +16,7 @@ Creates a function app. ``` New-AzFunctionApp -Location -Name -ResourceGroupName -Runtime -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] + [-AppSetting ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] [-FunctionsVersion ] [-OSType ] [-PassThru] [-RuntimeVersion ] [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] @@ -26,7 +26,7 @@ New-AzFunctionApp -Location -Name -ResourceGroupName ``` New-AzFunctionApp -Name -PlanName -ResourceGroupName -Runtime -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] + [-AppSetting ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] [-FunctionsVersion ] [-OSType ] [-PassThru] [-RuntimeVersion ] [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] @@ -36,8 +36,8 @@ New-AzFunctionApp -Name -PlanName -ResourceGroupName ``` New-AzFunctionApp -Image -Name -PlanName -ResourceGroupName -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] - [-PassThru] [-RegistryCredential ] [-SubscriptionId ] [-Tag ] + [-AppSetting ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] [-PassThru] + [-RegistryCredential ] [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` @@ -46,12 +46,11 @@ New-AzFunctionApp -Image -Name -PlanName -ResourceGro ``` New-AzFunctionApp -Environment -Name -ResourceGroupName -StorageAccountName [-ApplicationInsightsKey ] [-ApplicationInsightsName ] - [-AppSetting ] [-Break ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] - [-Image ] [-PassThru] [-RegistryCredential ] [-RegistryServer ] - [-ResourceCpu ] [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] - [-SubscriptionId ] [-Tag ] [-UserAssignedIdentity ] - [-WorkloadProfileName ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] - [] + [-AppSetting ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] [-Image ] + [-PassThru] [-RegistryCredential ] [-RegistryServer ] [-ResourceCpu ] + [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] [-SubscriptionId ] + [-Tag ] [-UserAssignedIdentity ] [-WorkloadProfileName ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### FlexConsumption @@ -59,7 +58,7 @@ New-AzFunctionApp -Environment -Name -ResourceGroupName -Name -ResourceGroupName -Runtime -StorageAccountName [-AlwaysReady ] [-ApplicationInsightsKey ] [-ApplicationInsightsName ] [-AppSetting ] - [-Break ] [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] + [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] [-DeploymentStorageContainerName ] [-DeploymentStorageName ] [-DisableApplicationInsights] [-EnableSystemAssignedIdentity] [-EnableZoneRedundancy] [-HttpPerInstanceConcurrency ] [-InstanceMemoryMB ] [-MaximumInstanceCount ] [-PassThru] [-RuntimeVersion ] @@ -210,21 +209,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Break - - -```yaml -Type: System.Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md index f5aacd070849..7299b0764e59 100644 --- a/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md @@ -56,7 +56,7 @@ This command updates function app Application Insights. ### Example 3: Remove managed identity from a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 0 -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity:$false -Force ``` This command removes a managed identity from a function app. diff --git a/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md b/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md index 7bf46223af09..35f98bc85bb4 100644 --- a/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md @@ -15,6 +15,6 @@ Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResource This command updates function app Application Insights. ### Example 3: Remove managed identity from a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 0 -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity:$false -Force ``` This command removes a managed identity from a function app. \ No newline at end of file diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 758312a28566..9fd9262eb274 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "bb6a8b7a-352b-4d8e-8d78-07d0f81bd242" + "generate_Id": "8f3233f4-6619-4fb7-af36-dab427cf2e45" } diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index c38b96ba4e4d..b456f3b35e6e 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{87933F39-A240-4FBA-9371-EEDCFB25C746}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|Any CPU.Build.0 = Debug|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x64.ActiveCfg = Debug|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x64.Build.0 = Debug|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x86.ActiveCfg = Debug|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Debug|x86.Build.0 = Debug|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|Any CPU.ActiveCfg = Release|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|Any CPU.Build.0 = Release|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x64.ActiveCfg = Release|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x64.Build.0 = Release|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x86.ActiveCfg = Release|Any CPU - {87933F39-A240-4FBA-9371-EEDCFB25C746}.Release|x86.Build.0 = Release|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|Any CPU.Build.0 = Debug|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x64.ActiveCfg = Debug|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x64.Build.0 = Debug|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x86.ActiveCfg = Debug|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x86.Build.0 = Debug|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|Any CPU.ActiveCfg = Release|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|Any CPU.Build.0 = Release|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x64.ActiveCfg = Release|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x64.Build.0 = Release|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x86.ActiveCfg = Release|Any CPU + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {87933F39-A240-4FBA-9371-EEDCFB25C746} = {409734C8-465A-6FC8-866F-C49222B018F2} + {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal diff --git a/src/Functions/Functions/Az.Functions.psd1 b/src/Functions/Functions/Az.Functions.psd1 index 1c24d445de06..0ebaba4477ac 100644 --- a/src/Functions/Functions/Az.Functions.psd1 +++ b/src/Functions/Functions/Az.Functions.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/25/2026 +# Generated on: 3/26/2026 # @{ @@ -12,7 +12,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '4.3.0' +ModuleVersion = '4.3.1' # Supported PSEditions CompatiblePSEditions = 'Core', 'Desktop' @@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2' # ProcessorArchitecture = '' # Modules that must be imported into the global environment prior to importing this module -RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.1'; }) +RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.3'; }) # Assemblies that must be loaded prior to importing this module RequiredAssemblies = 'Functions.Autorest/bin/Az.Functions.private.dll' diff --git a/src/Functions/Functions/Properties/AssemblyInfo.cs b/src/Functions/Functions/Properties/AssemblyInfo.cs index a9cd58ba7674..cec8232d7fe4 100644 --- a/src/Functions/Functions/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ [assembly: ComVisible(false)] [assembly: CLSCompliant(false)] [assembly: Guid("A92CAC7D-41F1-47CA-BC10-F6736BCD4072")] -[assembly: AssemblyVersion("4.3.0")] -[assembly: AssemblyFileVersion("4.3.0")] +[assembly: AssemblyVersion("4.3.1")] +[assembly: AssemblyFileVersion("4.3.1")] diff --git a/src/Functions/Functions/help/New-AzFunctionApp.md b/src/Functions/Functions/help/New-AzFunctionApp.md index 26ac2989dafb..f11bc6cb6631 100644 --- a/src/Functions/Functions/help/New-AzFunctionApp.md +++ b/src/Functions/Functions/help/New-AzFunctionApp.md @@ -18,9 +18,8 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName -Runtime [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-OSType ] [-RuntimeVersion ] [-FunctionsVersion ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] - [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] - [] + [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-DefaultProfile ] [-NoWait] + [-AsJob] [-WhatIf] [-Confirm] [] ``` ### ByAppServicePlan @@ -29,8 +28,8 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-OSType ] [-RuntimeVersion ] [-FunctionsVersion ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] [-EnableSystemAssignedIdentity] - [-UserAssignedIdentity ] [-Break ] -PlanName [-DefaultProfile ] [-NoWait] - [-AsJob] [-WhatIf] [-Confirm] [] + [-UserAssignedIdentity ] -PlanName [-DefaultProfile ] [-NoWait] [-AsJob] + [-WhatIf] [-Confirm] [] ``` ### FlexConsumption @@ -38,7 +37,7 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName -Runtime [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-RuntimeVersion ] [-DisableApplicationInsights] [-PassThru] [-Tag ] - [-AppSetting ] [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] + [-AppSetting ] [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] -FlexConsumptionLocation [-DeploymentStorageName ] [-DeploymentStorageContainerName ] [-DeploymentStorageAuthType ] [-DeploymentStorageAuthValue ] [-AlwaysReady ] [-MaximumInstanceCount ] [-InstanceMemoryMB ] [-HttpPerInstanceConcurrency ] @@ -51,8 +50,8 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] -Environment - [-Image ] [-RegistryCredential ] [-WorkloadProfileName ] [-ResourceCpu ] + [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] -Environment [-Image ] + [-RegistryCredential ] [-WorkloadProfileName ] [-ResourceCpu ] [-ResourceMemory ] [-ScaleMaxReplica ] [-ScaleMinReplica ] [-RegistryServer ] [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] @@ -63,7 +62,7 @@ New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName New-AzFunctionApp -ResourceGroupName -Name -StorageAccountName [-SubscriptionId ] [-ApplicationInsightsName ] [-ApplicationInsightsKey ] [-DisableApplicationInsights] [-PassThru] [-Tag ] [-AppSetting ] - [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] [-Break ] -Image + [-EnableSystemAssignedIdentity] [-UserAssignedIdentity ] -Image [-RegistryCredential ] -PlanName [-DefaultProfile ] [-NoWait] [-AsJob] [-WhatIf] [-Confirm] [] ``` @@ -211,20 +210,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Break - -```yaml -Type: System.Object -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -DefaultProfile The credentials, account, tenant, and subscription used for communication with Azure. diff --git a/src/Functions/Functions/help/Update-AzFunctionApp.md b/src/Functions/Functions/help/Update-AzFunctionApp.md index ff63ef2c9daf..31489a7c8940 100644 --- a/src/Functions/Functions/help/Update-AzFunctionApp.md +++ b/src/Functions/Functions/help/Update-AzFunctionApp.md @@ -56,7 +56,7 @@ This command updates function app Application Insights. ### Example 3: Remove managed identity from a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 0 -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity:$false -Force ``` This command removes a managed identity from a function app. From fb8b5daffe807ca99bd791e58e3143bdf01fd290 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Thu, 26 Mar 2026 01:58:31 -0700 Subject: [PATCH 3/9] Add files created by the build --- .../Properties/AssemblyInfo.cs | 1 + .../Functions.Autorest/generate-info.json | 2 +- src/Functions/Functions.sln | 28 +++++++++---------- 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index f7829425cb86..08286bf2df06 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -28,3 +28,4 @@ + diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 9fd9262eb274..7db6826a22e5 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "8f3233f4-6619-4fb7-af36-dab427cf2e45" + "generate_Id": "c2b62739-3177-42d3-8bb6-f8bb3d51ebcb" } diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index b456f3b35e6e..b9838dc74869 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{AB859DDA-AD7E-41D2-B16E-86EBFCE50429}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x64.ActiveCfg = Debug|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x64.Build.0 = Debug|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x86.ActiveCfg = Debug|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Debug|x86.Build.0 = Debug|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|Any CPU.Build.0 = Release|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x64.ActiveCfg = Release|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x64.Build.0 = Release|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x86.ActiveCfg = Release|Any CPU - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89}.Release|x86.Build.0 = Release|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x64.ActiveCfg = Debug|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x64.Build.0 = Debug|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x86.ActiveCfg = Debug|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x86.Build.0 = Debug|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|Any CPU.Build.0 = Release|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x64.ActiveCfg = Release|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x64.Build.0 = Release|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x86.ActiveCfg = Release|Any CPU + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {ECA6B1A3-2CE3-402E-93AB-EE4062D5AB89} = {409734C8-465A-6FC8-866F-C49222B018F2} + {AB859DDA-AD7E-41D2-B16E-86EBFCE50429} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal From 793a58cf4f10096a092d19b1147b467113635f93 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 28 Mar 2026 00:45:07 -0700 Subject: [PATCH 4/9] Re-record tests and fix BlobContainer namespace for Az.Functions v4 migration - Fix stale v3 namespace reference: Models.Api20190401.BlobContainer to Models.BlobContainer in New-AzFunctionApp WhatIf path - Re-record all test recordings against live Azure (78 passed, 0 failed) - Sanitize recordings (secrets replaced with placeholders) - All tests validated in Live mode (98 passed, 0 failed, 18 skipped) including LiveOnly-tagged ACA and Flex Consumption tests --- .../Properties/AssemblyInfo.cs | 1 + .../custom/New-AzFunctionApp.ps1 | 2 +- .../Functions.Autorest/generate-info.json | 2 +- .../test/Get-AzFunctionApp.Recording.json | 816 +- ...unctionAppAvailableLocation.Recording.json | 136 +- .../test/Get-AzFunctionAppPlan.Recording.json | 326 +- ...Remove-AzFunctionAppSetting.Recording.json | 956 +- ...FunctionApp.FlexConsumption.Recording.json | 7948 ++++++++--------- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 2 +- .../test/New-AzFunctionApp.Recording.json | 7512 +++++++++------- .../test/New-AzFunctionAppPlan.Recording.json | 166 +- ...-Remove-AzFunctionApp.Tests.Recording.json | 4873 +++++----- ...te-Remove-AzFunctionAppPlan.Recording.json | 844 +- .../test/Remove-AzFunctionApp.Recording.json | 829 +- ...rt-Start-Stop-AzFunctionApp.Recording.json | 3328 +++---- .../Functions.Autorest/test/env.json | 272 +- src/Functions/Functions.sln | 28 +- src/Functions/Functions/Az.Functions.psd1 | 2 +- 18 files changed, 14471 insertions(+), 13572 deletions(-) diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index 08286bf2df06..ec457525e691 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -29,3 +29,4 @@ + diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 5e1db71dfbfb..0fabd9e6c6a5 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -803,7 +803,7 @@ function New-AzFunctionApp { if ($WhatIfPreference.IsPresent) { Write-Verbose "WhatIf: Creating container '$DeploymentStorageContainerName' in storage account '$DeploymentStorageName'..." - $container = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.Api20190401.BlobContainer + $container = New-Object -TypeName Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.BlobContainer } else { diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 7db6826a22e5..4a9be93a9156 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "c2b62739-3177-42d3-8bb6-f8bb3d51ebcb" + "generate_Id": "ab2f9875-e58e-44f6-bcf8-973a23018d07" } diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json index 7ee9f6f6e3f1..c26141a336e2 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionApp.Recording.json @@ -7,11 +7,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "1fb1abf3-770c-450c-b9e9-d98a5f1f7c17" ], + "x-ms-client-request-id": [ "c06054d6-1c60-4fa6-9251-5b2279c5de97" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,40 +22,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "42ae5287-f272-44f3-b223-e891766c2cc1", "2940674e-4768-4b7b-95b4-94103c91620a" ], + "x-ms-original-request-ids": [ "e384374e-a379-441e-a921-0e7dd878853c", "d15a2c34-72a3-4c37-a963-964eb8bf9594" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e96abc04-4a32-4d3c-bc5d-773c62320df5" ], - "x-ms-correlation-request-id": [ "e96abc04-4a32-4d3c-bc5d-773c62320df5" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001231Z:e96abc04-4a32-4d3c-bc5d-773c62320df5" ], + "x-ms-request-id": [ "b690c0bf-7d5a-4737-9429-e0efab6c5f77" ], + "x-ms-correlation-request-id": [ "b690c0bf-7d5a-4737-9429-e0efab6c5f77" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013033Z:b690c0bf-7d5a-4737-9429-e0efab6c5f77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B6643F33FC1408999B30B9353B53FD5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8A1E092A62C42F49E008CB2A89C25FB Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:32Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "43868" ], + "Content-Length": [ "43118" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:06:45.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:05:42.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-a50y\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-a50y.azurewebsites.net\"],\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace/sites/Flex-PowerShell-a50y\",\"repositorySiteName\":\"Flex-PowerShell-a50y\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-a50y.azurewebsites.net\",\"flex-powershell-a50y.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-a50y.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-a50y.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:11:58.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaa50y.blob.core.windows.net/app-package-flexpowershella50y-0196397\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-a50y\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-a50y\\\\$Flex-PowerShell-a50y\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"defaultHostName\":\"flex-powershell-a50y.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:22:51.3266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:21:28.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:23:55.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:20:26.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro\",\"name\":\"Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace/sites/Flex-PowerShell-3wro\",\"repositorySiteName\":\"Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-3wro.azurewebsites.net\",\"flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:30:00.29\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-flexpowershell3wro-9099015\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-3wro\\\\$Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "66" ], - "x-ms-client-request-id": [ "9ab6e7d7-b9d4-408b-adf6-c88e3e6dbe89" ], + "x-ms-client-request-id": [ "531d52f1-5e7f-4e59-8251-c371fac4ec2c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -67,40 +67,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24d0815b-66de-4a0b-b91f-a5e295e76124" ], + "x-ms-request-id": [ "49e3da93-57a6-4bd4-92cf-90d31801ed36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0e94fe09-3bba-46d0-818e-00da7e051c7f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04b0f9f2-cfed-4ebb-add9-da2cc0e12736" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "60f149bf-28c2-4891-8c61-b47369b9db27" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:60f149bf-28c2-4891-8c61-b47369b9db27" ], + "x-ms-correlation-request-id": [ "477cfc09-416b-4e07-9678-b39e281c8f20" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013034Z:477cfc09-416b-4e07-9678-b39e281c8f20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B9B9E6197AD498C9F96A8F7383A93E2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07D19B3CC58547B29B71D57CAA53B830 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1172" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "23b94087-c53c-46e4-8e42-ca8887dd57fa" ], + "x-ms-client-request-id": [ "a5b72d07-40af-49ce-a13d-b11e4aee4adb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -112,41 +112,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ecfba7c-61bf-4c6c-b850-b471481cee4e" ], + "x-ms-request-id": [ "0534ebf3-1d68-45a9-948d-92cf8adb52b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a6b8b3b-69d2-4976-b44b-9f230f4b4f5e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab006dbd-19a0-4030-b990-946ab0a4b85d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "88c94168-338e-43ee-8530-19ffaddd402a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:88c94168-338e-43ee-8530-19ffaddd402a" ], + "x-ms-correlation-request-id": [ "f3225242-988e-4fcb-bd11-dac518b36f99" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013034Z:f3225242-988e-4fcb-bd11-dac518b36f99" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 359A9D6FFFB84D85892D63C7FE8EA06C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C4FDCBBA74BF425091FADD1F320961CC Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4181" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+4": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "14dba604-bd6a-4a64-bdf9-c4a901808788" ], + "x-ms-client-request-id": [ "31a04314-44e1-4805-a75f-d2ea0afba98e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -158,40 +158,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e6603b2-e92e-4a8e-bb07-383bd0a0e1e1" ], + "x-ms-request-id": [ "8f7e66c4-1624-47db-969e-f61e211ea39e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce97c1c8-c028-450d-b82d-24fe3a230a78" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f86c2047-22ab-4612-9a03-e1b58ff6becf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1f6d898a-2b0d-4146-8fdc-9e681f12eab2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:1f6d898a-2b0d-4146-8fdc-9e681f12eab2" ], + "x-ms-correlation-request-id": [ "93112b9a-3df4-4b95-a970-193f9c8d6388" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013035Z:93112b9a-3df4-4b95-a970-193f9c8d6388" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECC89FD4E3F4460DBC8183C48E44F9BF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E11189BE5494DD2A18747C2FBE41B76 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1213" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+5": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "22f2b0fa-9be8-44fd-8577-b37863d4f574" ], + "x-ms-client-request-id": [ "987e66a2-6f52-42f1-9919-6d14a82d18fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -203,41 +203,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9b870b0-1482-48c2-87b4-74c026f311fe" ], + "x-ms-request-id": [ "7538a933-32b8-4688-b151-1f4469646a9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c45686e-ab8d-434b-9e7e-0a645e65dd8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bb2bbd6a-9749-4eb7-8b5b-9e52fc7609a0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f14ff0b-5dd8-472f-8ccf-b64e51d1ee9a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001232Z:6f14ff0b-5dd8-472f-8ccf-b64e51d1ee9a" ], + "x-ms-correlation-request-id": [ "2340d891-b13c-4265-a896-ca7689ce73dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013035Z:2340d891-b13c-4265-a896-ca7689ce73dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90EE5A6EF6164239AD52B3E86AD8ED9E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 599A114912A544218B4BF87CE6CFBA25 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4188" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+6": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "1782ff9d-6439-405e-9d23-b15f27fa98d1" ], + "x-ms-client-request-id": [ "09ea9d2c-a351-4364-9941-5fbfeaf09240" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -249,40 +249,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e3e864f4-50b8-4144-b6c9-6a3c7e9544e1" ], + "x-ms-request-id": [ "bdfacb79-552d-4b0b-849d-89f49df7d430" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/67665102-3398-48fc-981d-aec72d32ffd9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1311b77c-edec-4e65-9b61-17d43b5e7227" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cd27d855-ed0f-495f-a0c8-fcd9b21d4b6d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:cd27d855-ed0f-495f-a0c8-fcd9b21d4b6d" ], + "x-ms-correlation-request-id": [ "4a22a9c3-0546-49af-bf77-c9df502611d4" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013036Z:4a22a9c3-0546-49af-bf77-c9df502611d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 575B68FF5AB244DF84E914CC713586E9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E39E4C5AE6A14EC39A95943C76BE29EC Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1201" ], + "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+7": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "71" ], - "x-ms-client-request-id": [ "f532d4f5-9e1d-45de-8bd9-b75d3fe8c252" ], + "x-ms-client-request-id": [ "ba4d682c-4958-41d6-8547-c32adffaf6aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -294,41 +294,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e06c01d-cbaf-4cad-a26b-81cbb03ae3be" ], + "x-ms-request-id": [ "5325a82b-f0e9-4979-b05c-bebc3bee7a6a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0fdbcc06-6ce3-4786-b732-bf496f352537" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3e498a7e-83af-4788-827f-5e5622940812" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "54b72f9c-555d-4ae7-b8e2-7476815767cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:54b72f9c-555d-4ae7-b8e2-7476815767cf" ], + "x-ms-correlation-request-id": [ "e6d76e73-4c15-4b6b-8647-7aed6bb4073f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013036Z:e6d76e73-4c15-4b6b-8647-7aed6bb4073f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49E401DDEAA44E999CDF7A9F64ECBFF9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA8D74AABEA3411E9BD057958F7594FF Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4172" ], + "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+8": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "72" ], - "x-ms-client-request-id": [ "fa4ecd44-c68e-4d65-9a5c-ca3a43b1b1fb" ], + "x-ms-client-request-id": [ "08a9f6de-e6d4-4bde-b948-ca58377b9256" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -340,40 +340,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d53705c-a9c8-4db3-95bf-7e0ab4e4e466" ], + "x-ms-request-id": [ "964dce5c-a3a8-44e6-acca-ef9532caddb0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0428f6da-7865-47c6-8b33-1935aad8472f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dcdd63e2-44a3-4494-b043-3ea69ae4fae4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7257fdc0-6b68-4eb9-9398-febd9bc2b340" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:7257fdc0-6b68-4eb9-9398-febd9bc2b340" ], + "x-ms-correlation-request-id": [ "5cc5adbf-6303-4ef9-ac21-f8d9fe145e69" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013036Z:5cc5adbf-6303-4ef9-ac21-f8d9fe145e69" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DA52F5E0658436CA05CBF27305A7154 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB0C9726EAEE4FE9B12A40F4A20E47CB Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1198" ], + "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+9": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "73" ], - "x-ms-client-request-id": [ "f415988f-6934-470b-98a0-c7785bb5639c" ], + "x-ms-client-request-id": [ "f784f75d-d78a-4bfd-b6ad-21d802c77cc9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -385,41 +385,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f611045-2a41-4174-886a-7d8d4e38892e" ], + "x-ms-request-id": [ "3b9e6d04-6f2e-4884-9dcb-25367368aa37" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/670c9741-d45a-469d-886d-de539076c8eb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "ec037fdf-0212-424a-afe8-2ba6f594c20d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001233Z:ec037fdf-0212-424a-afe8-2ba6f594c20d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/704db70c-403b-42f8-b152-afcd6dfd2b7a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "18ec90f3-7bb8-4f34-8c73-0dcc61562a47" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013037Z:18ec90f3-7bb8-4f34-8c73-0dcc61562a47" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C0FCF3C21654326849D26B648B90C2A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 649725A2EFD04B4F86F0C56B0662F9D9 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4174" ], + "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01+10": { + "Get-AzFunctionApp+[NoContext]+GetAll+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01+10": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "74" ], - "x-ms-client-request-id": [ "3021d8a4-c61d-4a99-91cd-aef7f403a48f" ], + "x-ms-client-request-id": [ "a9347f00-3c04-4d17-8a9e-89859f864bfa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -431,40 +431,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16a9102b-829e-4682-a1ef-3373d32e372f" ], + "x-ms-request-id": [ "a91f781e-3a8f-4981-95fa-4252e5959164" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/96a36a7e-15d1-4a0d-b92b-a5db3750cb46" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c022508d-78c6-4a72-8ebd-a5bd1de5258a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "93aa3b2d-4406-4763-b76e-20abcd0c921a" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T001234Z:93aa3b2d-4406-4763-b76e-20abcd0c921a" ], + "x-ms-correlation-request-id": [ "a2e8c791-872d-4739-ba47-6849650dcc9e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013037Z:a2e8c791-872d-4739-ba47-6849650dcc9e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1944F650E4C2429EA173DD0692AD8475 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA57FDB33D3546D1813BD967C4C112C6 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1011" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01+11": { + "Get-AzFunctionApp+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/web?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "75" ], - "x-ms-client-request-id": [ "a14636b0-4756-41d0-9fe9-26ceb25f937f" ], + "x-ms-client-request-id": [ "53da9f62-9ad7-454c-a3a4-8f720294ce6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -476,41 +476,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "29f197ac-a230-4cd7-ac99-392b80577c8c" ], + "x-ms-request-id": [ "0849c226-7a2d-4bd2-a8ff-a7b9d9ef55d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a4d0effa-52fb-4206-b7de-80941f0083a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/215f1c58-7e44-4446-971e-f5f05a23b41d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af906ede-ce0b-4781-8592-44f14c8ff9e4" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T001234Z:af906ede-ce0b-4781-8592-44f14c8ff9e4" ], + "x-ms-correlation-request-id": [ "583454f8-4bf2-45aa-9b6a-31a478d826df" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013037Z:583454f8-4bf2-45aa-9b6a-31a478d826df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1F128F89816E48659219991ACC5DF399 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2DD6D5153814F57B0A8546EE6AAB2F0 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/web\",\"name\":\"Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "76" ], - "x-ms-client-request-id": [ "e782edc1-b373-42ca-ac75-85e2486881b3" ], + "x-ms-client-request-id": [ "8419dcf6-0358-477f-9bea-09085c67ab37" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -521,42 +521,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB3EFD09DEB" ], + "ETag": [ "1DCBE510EFC8ED5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "100f2e91-edcf-4c01-b31d-7757df72fbb7" ], + "x-ms-request-id": [ "19789923-9e31-4c90-8f71-a3a328051291" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "58bf0791-df7b-4d0a-be48-e79021e44afb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001234Z:58bf0791-df7b-4d0a-be48-e79021e44afb" ], + "x-ms-correlation-request-id": [ "656aafcb-6baf-46ea-8e88-9031794487ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013038Z:656aafcb-6baf-46ea-8e88-9031794487ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74EC0FD2F0044E3E86CDFE5A08EF1FBE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 114D878FC4594154869EA2C8728F5E6F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:20:26.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "77" ], - "x-ms-client-request-id": [ "2140041b-c5d0-474e-90d4-417e9ee2117a" ], + "x-ms-client-request-id": [ "c7a3a4b8-a66b-4093-8a37-86af03930120" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -568,40 +568,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "040d0548-e4af-4ea7-acfd-40c4f91549fc" ], + "x-ms-request-id": [ "cf510515-e285-4d79-95b4-893e89d18f66" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c857d23-caec-4988-9ee0-a080e73622d0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "df20faef-0f61-455f-bda8-6e92315f2423" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:df20faef-0f61-455f-bda8-6e92315f2423" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57fe966d-6f39-4d2b-bbc2-f8cdfb387871" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "d7e272ee-3d7c-47fb-b11a-16d1dd8f0bb2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013038Z:d7e272ee-3d7c-47fb-b11a-16d1dd8f0bb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78A1C1BB1429408E925954B9F11632D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B02D074A71F24965BCB640DC050A42D1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "78" ], - "x-ms-client-request-id": [ "13c4576b-c024-41b1-a273-4810a73811c1" ], + "x-ms-client-request-id": [ "f336e127-c155-4ad7-a904-60276f3f86cb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -613,41 +613,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16b4d917-473c-4351-9086-f95f413fbf8c" ], + "x-ms-request-id": [ "b920eb91-b461-461b-a2f4-e9d0b26e9acf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c5f1d8a7-66e1-4e6b-b9da-823bda8b8196" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6b7a389-8a58-482d-84d0-54f71e08a20e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3b5223ae-6557-4a1e-850d-5579aca1f844" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:3b5223ae-6557-4a1e-850d-5579aca1f844" ], + "x-ms-correlation-request-id": [ "678f53a3-7eb5-4a7d-83c8-99989c3191d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013039Z:678f53a3-7eb5-4a7d-83c8-99989c3191d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65A57CA2A1AA4F59AA1EAA45AC45FB5F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5162E684C93B45EA96AA644AE3837276 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "79" ], - "x-ms-client-request-id": [ "4c32cf90-6634-4ae7-9852-d7b2f2836d0f" ], + "x-ms-client-request-id": [ "da7dc617-f0b3-4137-b440-620fcc1d514c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -658,42 +658,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB41443E000" ], + "ETag": [ "1DCBE5133C9D7CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e97a9f2f-02d0-4d9e-8780-a279a67285bf" ], + "x-ms-request-id": [ "2115f688-906c-422f-9607-1cc82bc52d6a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0e5867b0-089b-4e5f-8888-6b455d0f6fe9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:0e5867b0-089b-4e5f-8888-6b455d0f6fe9" ], + "x-ms-correlation-request-id": [ "050ac1d1-1443-4dc9-9076-2d87eb586b71" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013039Z:050ac1d1-1443-4dc9-9076-2d87eb586b71" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED3AE268D01243DD86389A5293EA5D80 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2044B29069F488DBC7681053D6A12DD Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8417" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:21:28.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "80" ], - "x-ms-client-request-id": [ "383e8494-75d9-4434-b257-85c5c99c053e" ], + "x-ms-client-request-id": [ "26aba97e-077b-4f5a-b734-ba9f0a816c5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -705,40 +705,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4eaddb2e-915b-497a-a9b0-3637a93a871d" ], + "x-ms-request-id": [ "deb5a7ab-5feb-45be-965f-03373c092df1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7aa0880f-ec19-4d47-beb1-a37cde75235d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/990e8abd-72c4-4cb0-870c-77febed43c10" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1fd7b0f5-30ad-4e75-bd88-f6d579e81a53" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001235Z:1fd7b0f5-30ad-4e75-bd88-f6d579e81a53" ], + "x-ms-correlation-request-id": [ "ea7a5638-9083-4118-bed2-ab93b21d0b44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013039Z:ea7a5638-9083-4118-bed2-ab93b21d0b44" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABD2C087CD5F4466A6D857E008D81FE7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C84CA5F4F010499992CBE5E539ACF7D3 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "81" ], - "x-ms-client-request-id": [ "243c3457-bd7a-4224-b5ef-0018399cc22a" ], + "x-ms-client-request-id": [ "de9cd85e-b137-4d1b-a8d4-1c372a4ae098" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -750,41 +750,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0d05be4-00b5-4234-982d-06378e5e3ddf" ], + "x-ms-request-id": [ "bdf551a1-6ba1-4107-90c3-a8e0c7f10a4b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d99bab2-c6db-47d0-ae6d-8ccc537d37d3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b77cb39-1f94-4c71-9228-406a9524d974" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8c79f6dd-f8bd-4fc1-8f2b-2ddfe5482fc4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001236Z:8c79f6dd-f8bd-4fc1-8f2b-2ddfe5482fc4" ], + "x-ms-correlation-request-id": [ "b28e5dc7-438b-4220-be97-a06eabea130f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013040Z:b28e5dc7-438b-4220-be97-a06eabea130f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 106127C63AAA4281AFE13B6EAC71569D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34B93497A810412FAE777E36DFED7340 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "82" ], - "x-ms-client-request-id": [ "5a5c5345-0eb9-4a11-8b85-941225c71142" ], + "x-ms-client-request-id": [ "72aa4316-b9d3-4019-995d-68b148890547" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -795,42 +795,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB44997E9E0" ], + "ETag": [ "1DCBE51652BBFEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2b25f56-b302-446d-9033-35bea1515f7c" ], + "x-ms-request-id": [ "b2c77862-1569-48ff-8b1d-8b75315294ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "5e7c23aa-f83e-450f-b6b2-9703730cfb86" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001236Z:5e7c23aa-f83e-450f-b6b2-9703730cfb86" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8101ec4d-e770-4a95-80f2-4db1ccd96b6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013040Z:8101ec4d-e770-4a95-80f2-4db1ccd96b6c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81C23E3ED64F4C6483E3E5FCE3942F73 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC1DA49A6FAE42829C23D405BA7CD826 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8539" ], + "Content-Length": [ "8026" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:05:42.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:22:51.3266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "83" ], - "x-ms-client-request-id": [ "dc7bad55-1b42-429f-86a8-5e74c4194e14" ], + "x-ms-client-request-id": [ "693060df-3176-46c5-b0e2-a9d3464bb99e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -842,40 +842,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c561c661-c759-45bf-b96a-73de819c95f3" ], + "x-ms-request-id": [ "1fdf0de8-3aa4-49f7-b033-2ef40964c751" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f4b1edef-ff59-4325-b864-e39deee1e939" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff3cee60-cc50-4328-a637-0f43dcb764aa" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f6452304-18ee-4c1c-8bf1-7cb476e901fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001236Z:f6452304-18ee-4c1c-8bf1-7cb476e901fb" ], + "x-ms-correlation-request-id": [ "c4a88f12-a9c7-43b2-a187-f5fa4948c4e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013040Z:c4a88f12-a9c7-43b2-a187-f5fa4948c4e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8399EC7834C442859D92ADFA08FE1DED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91098471069748F6BE5A34CEC1003AE7 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "84" ], - "x-ms-client-request-id": [ "03b0650f-146a-4cc8-bf7b-e91abaf6251c" ], + "x-ms-client-request-id": [ "a7bee749-46ae-40e1-8606-7aece9af7c41" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -887,41 +887,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fad9217a-3c1b-4347-82ca-d4b3a8a8d393" ], + "x-ms-request-id": [ "b52f3a5d-424e-4501-b4fc-d0e0f91f422e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/69bbeb01-e0da-44c9-9019-df14d5e60efe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d5763b3e-9f59-40a8-b5fe-553e7dfa0f66" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b416586a-bb4e-453d-ba6f-627e50c8088c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:b416586a-bb4e-453d-ba6f-627e50c8088c" ], + "x-ms-correlation-request-id": [ "77d12e84-d636-434d-9b41-a7df2e4733dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013041Z:77d12e84-d636-434d-9b41-a7df2e4733dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F1981BA7419F4670B40C3323D3BE050A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E3E5BC74DA0F44F9B32E3667B5ED055B Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "85" ], - "x-ms-client-request-id": [ "9842cb2a-2010-48d8-96be-675112a59712" ], + "x-ms-client-request-id": [ "88cc64f1-9893-4efd-817d-1831920f3149" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -932,42 +932,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB46F322CCB" ], + "ETag": [ "1DCBE518B4DD075" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61bc3636-874c-4cff-872b-37c681a28871" ], + "x-ms-request-id": [ "e3dbc324-7b5f-4191-acf7-2abfb9d56273" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3376778e-bad2-4548-b3ea-85b521690e3d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:3376778e-bad2-4548-b3ea-85b521690e3d" ], + "x-ms-correlation-request-id": [ "bf794189-a7db-4399-91d7-a7cd3e4d7506" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013041Z:bf794189-a7db-4399-91d7-a7cd3e4d7506" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74F13ABAC9B94CF5B6F6C8143B6F3714 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4B7A141D42DA42148E6213185E74F483 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8228" ], + "Content-Length": [ "8182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:06:45.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:23:55.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "86" ], - "x-ms-client-request-id": [ "b19e0804-c885-47af-9c4e-724524f26c15" ], + "x-ms-client-request-id": [ "664150a3-d688-4f14-9404-94c792badd07" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -979,40 +979,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "49e85d0e-4501-42dd-95d7-bdcbf4f45c3c" ], + "x-ms-request-id": [ "2663ba3c-3297-4366-8f08-a151caf0b711" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3eadb1c3-6281-4c39-a2d4-5e4c1bab14ae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75047be4-51b7-4003-998c-eab89b34f43d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b98d0086-c957-4564-844d-5fd3cb99c8b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:b98d0086-c957-4564-844d-5fd3cb99c8b5" ], + "x-ms-correlation-request-id": [ "6db5f7b5-746d-40d7-bc8b-19c335472221" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013042Z:6db5f7b5-746d-40d7-bc8b-19c335472221" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A2252E73E9848878A4FCEBF391032BA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34246F781DFD4398BA443C84A545F3B8 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "87" ], - "x-ms-client-request-id": [ "c7a3ad85-e8a3-40e7-bb93-b0b7f9db386e" ], + "x-ms-client-request-id": [ "3e31e62d-78e2-4891-ac93-0867f97ba30c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1024,41 +1024,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "57ac843e-c864-4ed1-9cc3-b05c939967c8" ], + "x-ms-request-id": [ "7da16ec4-98f1-4435-97a1-25bab087f1ca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b830892-7d09-4fd3-b0d5-ddb312f6f705" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/043da338-36b6-49b2-9f5c-4d82c349331f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e7aef8a7-f941-4629-b2eb-dfae97ac886c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001237Z:e7aef8a7-f941-4629-b2eb-dfae97ac886c" ], + "x-ms-correlation-request-id": [ "fc0f9e6d-ec7c-471c-a829-a3e6d70fe5b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013042Z:fc0f9e6d-ec7c-471c-a829-a3e6d70fe5b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22BEFA723E8E4B9482613F49EB729410 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA543D3DAF8746C391D7B62E9FC858F9 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:42Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites?api-version=2023-12-01+1": { + "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "88" ], - "x-ms-client-request-id": [ "045a16df-6936-4c5d-afea-7c4aa18d9a96" ], + "x-ms-client-request-id": [ "53de1f50-7247-43bf-8be9-ad2753e2ea69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1069,41 +1069,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "fce2e056-d6ed-40a9-8a55-62276597cb67" ], + "x-ms-original-request-ids": [ "f7ba6950-38e0-453b-ab6f-bea6b701a1f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0db4ba17-fb0f-4170-9e5a-bb9f28ce09df" ], - "x-ms-correlation-request-id": [ "0db4ba17-fb0f-4170-9e5a-bb9f28ce09df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001238Z:0db4ba17-fb0f-4170-9e5a-bb9f28ce09df" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "c8e1c360-0f4f-4b69-ab3e-171323098477" ], + "x-ms-correlation-request-id": [ "c8e1c360-0f4f-4b69-ab3e-171323098477" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013043Z:c8e1c360-0f4f-4b69-ab3e-171323098477" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8EDC105DD0642C7B93E95C65A50B916 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A1332322A1442699521AA39F8D4AE4D Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:42Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8312" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:20:26.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "89" ], - "x-ms-client-request-id": [ "744bbd84-3a82-47bb-a099-1b738729e1e9" ], + "x-ms-client-request-id": [ "decd7ca9-0fd3-4f8e-8570-5bdd1a6718bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1115,40 +1115,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "226108d5-7435-496a-9b89-9a7cca532314" ], + "x-ms-request-id": [ "07cc68d7-7a0c-4e66-8644-78537edcb53e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9c3ac9d-5db9-4364-b9b2-db5d8851252c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/141e99ff-196e-484b-8b62-5c0a86e00dd5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cdd5b46c-3087-420b-8629-010ed7d49592" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001238Z:cdd5b46c-3087-420b-8629-010ed7d49592" ], + "x-ms-correlation-request-id": [ "067d3fa1-656e-4b9b-bdac-6ae5fc21e930" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013043Z:067d3fa1-656e-4b9b-bdac-6ae5fc21e930" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AB0C8B3F28048AAB958E10F82E5B299 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B11C0AEA27D84CADB89C48CCA0A0C226 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "90" ], - "x-ms-client-request-id": [ "d7cd7d2e-fb83-4841-9dc1-2dd9d66e2157" ], + "x-ms-client-request-id": [ "0b5a8338-bcd3-4ea7-9532-1899846a34c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1160,25 +1160,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96c5221e-3eae-4b41-b7f3-1c9251b3d53e" ], + "x-ms-request-id": [ "2842fa8c-8c13-4547-a530-0a6fab6c6d6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d7949397-1fb6-4c84-91f1-00015ee9efdc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "2fb7f625-2e62-401f-997e-d7ea2ddc351e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001238Z:2fb7f625-2e62-401f-997e-d7ea2ddc351e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75f722c3-3f4a-49ac-b0a7-6a4e610a69ff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a39ca301-88b6-426e-9c16-f4e1f10beb98" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013043Z:a39ca301-88b6-426e-9c16-f4e1f10beb98" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D668C32BEAA478BB26BE53E20697E5A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B31B4E2C382B41C99FCD74368508A44A Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, @@ -1190,11 +1190,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "91" ], - "x-ms-client-request-id": [ "1598e68a-2de4-425e-8a4f-dbd967c75db9" ], + "x-ms-client-request-id": [ "2fca2bea-9f06-42de-96dc-0027eff04235" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1205,40 +1205,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "039ab8fd-e2b0-48bc-b610-94a76366caf4", "e0740bae-b93e-49ee-80be-7603c79957a6" ], + "x-ms-original-request-ids": [ "62f0326a-fef6-469d-868f-6ab6e4dec67b", "3afc7428-5bda-4511-91f4-15a6acfed4c4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "950adfd3-5027-4c5e-9117-17b99c67dd3d" ], - "x-ms-correlation-request-id": [ "950adfd3-5027-4c5e-9117-17b99c67dd3d" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001239Z:950adfd3-5027-4c5e-9117-17b99c67dd3d" ], + "x-ms-request-id": [ "bda5e396-4757-4e32-8b33-67757bf067b0" ], + "x-ms-correlation-request-id": [ "bda5e396-4757-4e32-8b33-67757bf067b0" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013044Z:bda5e396-4757-4e32-8b33-67757bf067b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC1211DBB36C4F04A8729C603E26ED7C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC8F6B4907314ECBA64ACC4CB8BCAAAD Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "43868" ], + "Content-Length": [ "43118" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:06:45.9966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:03:12.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:05:42.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-a50y\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-a50y.azurewebsites.net\"],\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace/sites/Flex-PowerShell-a50y\",\"repositorySiteName\":\"Flex-PowerShell-a50y\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-a50y.azurewebsites.net\",\"flex-powershell-a50y.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-a50y.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-a50y.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:11:58.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaa50y.blob.core.windows.net/app-package-flexpowershella50y-0196397\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-a50y\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-a50y\\\\$Flex-PowerShell-a50y\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"defaultHostName\":\"flex-powershell-a50y.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:23:55.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:22:51.3266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:20:26.7333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:21:28.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro\",\"name\":\"Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace/sites/Flex-PowerShell-3wro\",\"repositorySiteName\":\"Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-3wro.azurewebsites.net\",\"flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:30:00.29\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"secretsCollection\":[],\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"outboundVnetRouting\":{\"allTraffic\":false,\"applicationTraffic\":false,\"contentShareTraffic\":false,\"imagePullTraffic\":false,\"backupRestoreTraffic\":false,\"managedIdentityTraffic\":false},\"legacyServiceEndpointTrafficEvaluation\":false,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-flexpowershell3wro-9099015\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-3wro\\\\$Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}]}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+2": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "92" ], - "x-ms-client-request-id": [ "da503932-26a8-487d-bc1e-c8b16444cce6" ], + "x-ms-client-request-id": [ "0862aa30-4e0b-462d-a710-aeb3d6931679" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1250,40 +1250,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "974a495a-a485-447a-9972-2d7f0c4c252a" ], + "x-ms-request-id": [ "03158635-1ae2-44f6-959a-5a40703ca781" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1e2523cb-3210-4c75-a184-71b0974f8fe7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab38b870-9e85-445a-96d1-6fa1583cb32e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "387eabfa-9943-4722-b828-16afab96bc8d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:387eabfa-9943-4722-b828-16afab96bc8d" ], + "x-ms-correlation-request-id": [ "4ced1532-9003-4237-bd5c-e244df5d1962" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013045Z:4ced1532-9003-4237-bd5c-e244df5d1962" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E9106DF1251429EAAD96EF029495546 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2766C66F0F004377B23A516D50E020E1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:44Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+3": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "93" ], - "x-ms-client-request-id": [ "bed7acce-d8b2-4f35-947e-20cff68a6e57" ], + "x-ms-client-request-id": [ "04312891-fe5a-4449-8e9f-195481b5b33d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1295,41 +1295,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6bac6302-85aa-482a-a077-a935eb5e4947" ], + "x-ms-request-id": [ "1b928e8f-0dc9-416c-aa02-40d7759af0fd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/79da1432-fe13-48cb-80a4-17da2e99f803" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ba547c2a-07e3-4fe8-8e4c-7158cf2ad281" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7a26e5a9-c045-471b-892a-59cf09e9326d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:7a26e5a9-c045-471b-892a-59cf09e9326d" ], + "x-ms-correlation-request-id": [ "e2621d0e-c17b-45aa-b697-026a7e2990fb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013045Z:e2621d0e-c17b-45aa-b697-026a7e2990fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00ACEA1F4F0E4F00B7927AB2E794C46E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9945776DCF9E4A7B9D9E38149F6A8F48 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:45Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+4": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "94" ], - "x-ms-client-request-id": [ "064b82cc-c778-48f3-9e73-417d35868fd4" ], + "x-ms-client-request-id": [ "ff1a15a1-d5be-4478-8467-a266db013a4d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1341,40 +1341,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8c454aad-e139-44ab-981c-4b06ad0d7a91" ], + "x-ms-request-id": [ "d6ed4499-87c0-4c99-a221-b071fee0e619" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/863c23d4-fcf9-45a2-a43c-e853465424e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c9090c5-8139-4b85-aa20-f5f8e49f1227" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "78bb609f-e5d4-41e0-9684-19e3fa96801a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:78bb609f-e5d4-41e0-9684-19e3fa96801a" ], + "x-ms-correlation-request-id": [ "4378dbb2-0b44-48c0-9681-ba7f2dd357d5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013045Z:4378dbb2-0b44-48c0-9681-ba7f2dd357d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF43F38A94544B23B8C83CCF28A21F0B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F9D1E270292408D898A49A728C95D12 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:45Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1201" ], + "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+5": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "95" ], - "x-ms-client-request-id": [ "8f8fbee3-167b-42cf-b3b4-716f31d31260" ], + "x-ms-client-request-id": [ "106a886c-c8ca-4e25-b726-e8c1dcb4061b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1386,41 +1386,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d35a73e-e09e-45a5-80ce-eff1cde62240" ], + "x-ms-request-id": [ "0b5ff316-1df1-4c09-9b5b-627715edb6b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6232f6ee-7e76-494b-896a-be9859e7c5d5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25ce4c54-099a-4001-b4e5-8bb29ba7cb1e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "15a3e78e-c7c0-4299-9e19-0447a56673a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001240Z:15a3e78e-c7c0-4299-9e19-0447a56673a2" ], + "x-ms-correlation-request-id": [ "4276d923-a179-4773-a9b0-7838649f30b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013046Z:4276d923-a179-4773-a9b0-7838649f30b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 014E98D9C8FD4025A587AE72303FA323 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C245383F53574D079942AFC3BB369320 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:45Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4172" ], + "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+6": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "96" ], - "x-ms-client-request-id": [ "a147ae93-de2a-4e57-abc9-feb3ff75fa28" ], + "x-ms-client-request-id": [ "afea8138-2ea2-438c-8b57-cd9cf1de6533" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1432,40 +1432,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a4160be-9aff-432a-88be-eac8f7fab2ac" ], + "x-ms-request-id": [ "5d6e8035-b285-4377-a0a2-3d1ee25b7527" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04c73a7f-92e7-47ac-985b-d6e14311d0cd" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b146784e-77da-475b-b4f1-3c98b509e1f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:b146784e-77da-475b-b4f1-3c98b509e1f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5710b524-a483-42bc-9e86-8f965117a0ac" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "b72bc266-ad9c-44ec-bfee-befb02f7c13c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013046Z:b72bc266-ad9c-44ec-bfee-befb02f7c13c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 129D3D32E7994804BDE64DE02F4EAC37 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A8FC8C43958428285991E2D34FFB69F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:46Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+7": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "97" ], - "x-ms-client-request-id": [ "d0ebf16b-42b9-4360-a9e2-71c8cb492a38" ], + "x-ms-client-request-id": [ "f47c4445-2966-41bf-ad38-bfaeb28bfc8f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1477,41 +1477,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3b485a13-81bf-4e79-af0a-eee73e1a1a5e" ], + "x-ms-request-id": [ "18b2e754-6cd4-4443-b476-b9d10bc8bcd1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bacb295-3b64-4441-8bc7-0f7bf4c015cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23e61d41-a0b4-43d4-8a7e-27651dc5dff5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4c5855e2-fe28-4628-a796-45f6b5c488a4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:4c5855e2-fe28-4628-a796-45f6b5c488a4" ], + "x-ms-correlation-request-id": [ "92497964-2bf0-4bca-befa-0708a82cb9f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013046Z:92497964-2bf0-4bca-befa-0708a82cb9f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C1253A42DAC455A81FC9D4675B1D59C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11DF3CCBB09F4F0683B26EFE136FF2D2 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:46Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+8": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+8": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "98" ], - "x-ms-client-request-id": [ "7849db7d-38e0-48f3-90fa-090bd720889e" ], + "x-ms-client-request-id": [ "6abe6878-5f7b-4e07-aa91-77db33012f7a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1523,40 +1523,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1845a695-62d1-4cf2-903e-c222be3af0f4" ], + "x-ms-request-id": [ "9a1f2282-6d3e-4d39-9bb9-0de08387e657" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fbc0376-b6fe-4053-8a85-b087d108bfe2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2935bc53-ad02-4d63-bb65-b60ee322bc3b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "72de760d-ede2-4c8a-b5cc-3dd776b1f887" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:72de760d-ede2-4c8a-b5cc-3dd776b1f887" ], + "x-ms-correlation-request-id": [ "ef5cbf3a-0060-4145-a63d-69cba017542d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013046Z:ef5cbf3a-0060-4145-a63d-69cba017542d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6060B04259B04711A063416236B9BBD1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B274AC070CD64F25884791269560BE04 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:46Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1198" ], + "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+9": { + "Get-AzFunctionApp+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "99" ], - "x-ms-client-request-id": [ "96239a41-1390-46f3-93ec-f3a5750c1194" ], + "x-ms-client-request-id": [ "85271017-88be-421d-92ed-c6fafd71d940" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1568,25 +1568,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e5b024b4-43fd-405c-98b8-1f5b99a531ff" ], + "x-ms-request-id": [ "5140fe4c-f3c3-48ad-a349-9802230f344e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a0dafde1-c05e-4144-9a77-49ffce8dc542" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52a6fa78-1ae8-4dbc-bf52-ba4f1e1fb173" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "28b1acb4-f58a-49f1-90b4-e8cf309d8162" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001241Z:28b1acb4-f58a-49f1-90b4-e8cf309d8162" ], + "x-ms-correlation-request-id": [ "0edddec9-de04-4239-a16c-54260f764fe4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013047Z:0edddec9-de04-4239-a16c-54260f764fe4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF676AEE28F243239C58652942898F5D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F4A525155C64B46A59BA4C3EC52C991 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:46Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "4174" ], + "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json index 7500118c14c8..a0c46bc7db28 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppAvailableLocation.Recording.json @@ -7,11 +7,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "100" ], - "x-ms-client-request-id": [ "12d2ad44-9094-452d-8c1b-2caff5afccd9" ], + "x-ms-client-request-id": [ "134f71a9-5ece-4de1-9a59-7ea2e6130ebc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d0182ff-cc9d-45bd-ac74-ea958503fc75" ], + "x-ms-request-id": [ "593b7fcd-089a-4fa2-9182-950187957904" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e2734696-e987-4b6b-9555-4a3aa5c19f24" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a30aa733-75e2-4267-b409-29ba7a442099" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5ca4c948-057d-4645-bd16-8d548bc5c5db" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001243Z:5ca4c948-057d-4645-bd16-8d548bc5c5db" ], + "x-ms-correlation-request-id": [ "832b46f2-cde6-44a4-a09e-d42b35fe1a0f" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013047Z:832b46f2-cde6-44a4-a09e-d42b35fe1a0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 096F0170A33E40378148A385DD3B5F83 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41A4D980BD834F37BA29CBBBCB139A56 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:47Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -53,11 +53,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "101" ], - "x-ms-client-request-id": [ "e3f2877b-c5bb-463e-b349-cb439e5b9706" ], + "x-ms-client-request-id": [ "dfed1197-e19c-4b6b-a63e-3802581d5a7c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -69,18 +69,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0d8a5dc-9c85-40c5-a3a2-6f68e8a170b1" ], + "x-ms-request-id": [ "60fdfcab-6d06-4b2e-8766-3a69d92b33fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d015a265-d035-462c-87ed-19434c7b7493" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/acc1e2c3-f93f-4ba6-8faf-67761680d5ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3c3457d3-c123-4368-a1c1-8841fad85786" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001243Z:3c3457d3-c123-4368-a1c1-8841fad85786" ], + "x-ms-correlation-request-id": [ "537abbe6-f69e-4e2d-b900-f991affcfbe7" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013048Z:537abbe6-f69e-4e2d-b900-f991affcfbe7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D11C216B0A83468AA65DC31EE23A3A0F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9774798CA204EC4889313C4C5C7AB93 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38204" ], @@ -99,11 +99,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "102" ], - "x-ms-client-request-id": [ "fd22833a-b702-46e8-a519-285e9306a97d" ], + "x-ms-client-request-id": [ "77e286be-1f2d-4ac1-9c19-1d8a68312d5b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -115,18 +115,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c5616c6-e4e4-4205-a0d7-ac113e22946e" ], + "x-ms-request-id": [ "4597d4d4-33e7-4e7b-980e-81254bbfa591" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b2accbc8-2608-46e9-8c03-4ff37ea0949f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/65cd24ba-456b-4c5e-8656-762526fc9ada" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d6a5da22-15e3-4cbb-8f2d-0c8baffe9399" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001243Z:d6a5da22-15e3-4cbb-8f2d-0c8baffe9399" ], + "x-ms-correlation-request-id": [ "a9037f35-d4e1-415d-9056-a6d212caba46" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013048Z:a9037f35-d4e1-415d-9056-a6d212caba46" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B28C56C7B304906977EC6F8E46F3024 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB716857C1B5413DAFCF1F655704123A Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -145,11 +145,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "103" ], - "x-ms-client-request-id": [ "8500aeda-3bbc-4d4a-ad04-05dbe9b1fa3c" ], + "x-ms-client-request-id": [ "e1f34ae0-97f5-4645-8504-c826812bd485" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -161,18 +161,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1cb9e65b-e448-489b-a6df-a2d9928797a8" ], + "x-ms-request-id": [ "54c84cb6-5205-436a-8f3b-2fe800ddc252" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/e20d384d-aa72-4403-b9c1-6295e6b76bf6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2b7813eb-d7f9-4b7f-896c-28750a6c1c83" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fc5fb0ed-eb6f-4419-a259-dffd393b3100" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001243Z:fc5fb0ed-eb6f-4419-a259-dffd393b3100" ], + "x-ms-correlation-request-id": [ "ab622313-eb03-49c2-9c75-c887be17d0a0" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013048Z:ab622313-eb03-49c2-9c75-c887be17d0a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA3FDA166554422998485F2ADBCEF6DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65839FABFEB04B5794A871C6F1E9EFDB Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38561" ], @@ -191,11 +191,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "104" ], - "x-ms-client-request-id": [ "714ae86a-96ce-4b7b-906d-51484cf55ca0" ], + "x-ms-client-request-id": [ "f40340e8-40bd-417f-b310-3cc8da511fcc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -207,18 +207,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b597697-e3f7-48ec-893d-ed6d784b0852" ], + "x-ms-request-id": [ "3ab554f6-1365-46da-a364-f5696e3877d5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ffeb3452-e1ff-4925-8ffb-9ab784e1df54" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a66e25a8-a893-44c1-9662-ad91240a1be0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "61726fdb-77c5-4be1-a485-6cce53634c77" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:61726fdb-77c5-4be1-a485-6cce53634c77" ], + "x-ms-correlation-request-id": [ "62e45a30-a0b2-4ba0-ab80-70543c503356" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013048Z:62e45a30-a0b2-4ba0-ab80-70543c503356" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38A7D9875260442A8054BA5F1143AD77 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 744895B44D25407E9FB24A09067F1F36 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37708" ], @@ -237,11 +237,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "105" ], - "x-ms-client-request-id": [ "6a3a68f1-e481-4203-8dbe-b621e94b9a6a" ], + "x-ms-client-request-id": [ "fa2d9e51-763c-407f-a633-45e4aa9cd8e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -253,18 +253,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5e718db-d6a4-453d-9bc3-c9d990073b3b" ], + "x-ms-request-id": [ "d288fdbf-1edb-43b9-8970-d166c6da6332" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3bd1f004-0bf4-499c-bfdc-f1868896e6b8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "997aa752-25eb-4963-ba70-bbe7f0a5ed38" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:997aa752-25eb-4963-ba70-bbe7f0a5ed38" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/07d1304a-ad5b-4a04-99bc-da58c91e85f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ffa1f2b0-342e-4792-a705-20e6fd445e63" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013048Z:ffa1f2b0-342e-4792-a705-20e6fd445e63" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A05A476A09794DE9A341CF34325E435D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2623D0B45D724EED836C84E40C6273F6 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "27989" ], @@ -283,11 +283,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "106" ], - "x-ms-client-request-id": [ "026d0d20-320f-4316-85cc-f87ee9d94c96" ], + "x-ms-client-request-id": [ "db7f4440-703a-4efd-b151-44a4052e0712" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -299,18 +299,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e75ad06-6d42-4f84-9a19-838aee05932c" ], + "x-ms-request-id": [ "87cdb663-8174-4f91-a78a-035b9b836807" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/60757b25-b94f-43dc-9548-7735b3607b3c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9f023f0b-3ab4-4406-a8a7-661b4947327f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cf036d1a-5d6a-4650-888d-8ce5d4947624" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:cf036d1a-5d6a-4650-888d-8ce5d4947624" ], + "x-ms-correlation-request-id": [ "ba9277df-bdce-4366-8d1c-451e8441cd39" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013049Z:ba9277df-bdce-4366-8d1c-451e8441cd39" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3B69776FB58474DBCF0E2E49B3562DA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E79C235396B4671A421C87ADA56C64B Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "27989" ], @@ -329,11 +329,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "107" ], - "x-ms-client-request-id": [ "50db3b67-a5d7-497a-8b89-50ddde6009b9" ], + "x-ms-client-request-id": [ "bf6904e3-65a4-4e42-915a-8502631dc2d3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -345,18 +345,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ca4c055-17cb-44de-af41-9198be0fe7f1" ], + "x-ms-request-id": [ "c61be52a-39be-4b4b-b9aa-3f5a8aa473d0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/24fddc73-0e58-4e09-ad10-0e2e6ba25d4d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a6b95066-dc08-459b-a0f9-a4dbcf1ae6cd" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001244Z:a6b95066-dc08-459b-a0f9-a4dbcf1ae6cd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6dfa1404-5d1d-4f4e-a859-10b62f838cf6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0c35d53a-f722-45e7-9af4-1126f097f759" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013049Z:0c35d53a-f722-45e7-9af4-1126f097f759" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32499CE1C7FE4943AF4A7174F69A1132 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7D5D86E6F4704B06AB7CDA1378CF1297 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:49Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "27989" ], diff --git a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json index d23ff0759873..1eae1b868b6d 100644 --- a/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-AzFunctionAppPlan.Recording.json @@ -7,11 +7,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "108" ], - "x-ms-client-request-id": [ "a03c1ee9-36f2-4b7c-90a6-7a0c8ff9ce04" ], + "x-ms-client-request-id": [ "4609b5c2-0808-4264-8c06-844f0495dc6d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,40 +22,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f2d9d320-bff8-4918-91e2-bb10be4ae932", "011d656e-25e8-4260-b856-c114c75bfe3e" ], + "x-ms-original-request-ids": [ "b7737505-51d9-421e-9eb4-3902b1561cba", "27a21745-81d3-4ab3-b122-db43c98b62bb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "fd6f885b-393d-483a-b9a1-9b528c07256e" ], - "x-ms-correlation-request-id": [ "fd6f885b-393d-483a-b9a1-9b528c07256e" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001246Z:fd6f885b-393d-483a-b9a1-9b528c07256e" ], + "x-ms-request-id": [ "2faa10fa-ada1-4b69-9717-0e91a731af63" ], + "x-ms-correlation-request-id": [ "2faa10fa-ada1-4b69-9717-0e91a731af63" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013051Z:2faa10fa-ada1-4b69-9717-0e91a731af63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A7726E4F2EBF4031AC6CD2F8731C3133 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48D0AAFA4F2D460BB53249FDB311EDE6 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "109" ], - "x-ms-client-request-id": [ "b6a54b5f-8c73-4dd2-abd8-8d316d7020fe" ], + "x-ms-client-request-id": [ "a058fa1c-4be3-4338-a78c-60ac13b3271d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -67,40 +67,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb9e4272-51da-4fd6-86ef-e4e5f1d9a586" ], + "x-ms-request-id": [ "a427b217-9870-4e96-8a45-46fdefb523e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8ae8ae93-fcdf-459e-af9e-817791d12ad6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001246Z:8ae8ae93-fcdf-459e-af9e-817791d12ad6" ], + "x-ms-correlation-request-id": [ "ec922f6d-78e9-455b-8928-bb78e59b872b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013051Z:ec922f6d-78e9-455b-8928-bb78e59b872b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 100EE18AD9B548309BE7274D174157A7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF70F377A2BD41B4AF283EF4CD626013 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "110" ], - "x-ms-client-request-id": [ "b6e1b14e-e2fe-4028-9e30-f62ddb828105" ], + "x-ms-client-request-id": [ "d955d18e-1b75-4173-8b7a-f76a467a0d06" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -112,40 +112,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8697056c-ef43-41be-acfd-00764e71c924" ], + "x-ms-request-id": [ "82734dc8-736a-41c3-85b9-fe50dec50a2d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0af2454e-4380-40e9-b69a-84e3b1ad7bf7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001246Z:0af2454e-4380-40e9-b69a-84e3b1ad7bf7" ], + "x-ms-correlation-request-id": [ "519114c5-548f-493a-9a7d-ff7320dfd000" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013051Z:519114c5-548f-493a-9a7d-ff7320dfd000" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D70F5E31E88D47C0B829FD7A9348E6ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D48C5B7A940452D8CF5505EE771E672 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+4": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "111" ], - "x-ms-client-request-id": [ "cdc75228-08ff-44dd-8401-92b5d222db47" ], + "x-ms-client-request-id": [ "2012fdc6-1308-4596-b4de-46aea6d518ed" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -157,40 +157,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0dc61355-371c-4aff-9e52-74e50070357e" ], + "x-ms-request-id": [ "43fdfc9b-b564-47a4-a2b0-8a3eecfbaa22" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d39e42e0-46e8-49e3-a626-21798801fe38" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:d39e42e0-46e8-49e3-a626-21798801fe38" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "22609b26-067d-401c-8a81-714449ef35b7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013051Z:22609b26-067d-401c-8a81-714449ef35b7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D0DE71C81004843A8A16406B87852B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2E192D0591741DC9690C2B5D3438D8F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+5": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "112" ], - "x-ms-client-request-id": [ "080d4c39-9a75-48f6-9b4e-188e3ae9fb91" ], + "x-ms-client-request-id": [ "490f8f8e-40c2-46ca-9cdc-a2e90bb5846f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -202,40 +202,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70887217-1fcc-4d49-b174-9b982c11fb5b" ], + "x-ms-request-id": [ "372effe5-dfe9-42ec-b8fc-b9bfa6197e96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "a4d760a7-e214-4f87-9fa7-eaec8d368147" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:a4d760a7-e214-4f87-9fa7-eaec8d368147" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a2b38e50-c3b0-4660-9e02-98f6d6ba7cec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013052Z:a2b38e50-c3b0-4660-9e02-98f6d6ba7cec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 155517CA68854720998DDAEB387D9320 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 772C7A36CBD04A5BA451B916F66D5ADE Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+6": { + "Get-AzFunctionAppPlan+[NoContext]+GetAll+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "113" ], - "x-ms-client-request-id": [ "1de73d35-a94c-4705-b74f-992b5ae97193" ], + "x-ms-client-request-id": [ "e81ed712-2ace-47da-9064-8fa897882dc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -247,40 +247,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "29bc410b-1408-498e-a445-9c2f886b460d" ], + "x-ms-request-id": [ "3e36377d-0830-40a5-8932-6e1b39063211" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2ed52e91-e813-4b59-b0df-00b7dc8aae30" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T001247Z:2ed52e91-e813-4b59-b0df-00b7dc8aae30" ], + "x-ms-correlation-request-id": [ "ceb7a2c8-f301-4321-9d95-5353672197fb" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013052Z:ceb7a2c8-f301-4321-9d95-5353672197fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4DF97A38A4B44CCA6EB96CB726C7E00 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CA9A08C5CF24470BC9A0B67DA41179C Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-iklz1o\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Windows-Premium-iqzomg\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "114" ], - "x-ms-client-request-id": [ "11bc016a-f221-4618-a749-e9766314ca4e" ], + "x-ms-client-request-id": [ "4750c1ec-df92-49f9-b16f-92506a80dbc6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -292,40 +292,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99ffbf08-428c-454e-bfe0-4ad65f44ea8f" ], + "x-ms-request-id": [ "65af01b9-db24-4d57-b40d-cfcb24ed408e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0bf6f052-8d97-4024-a52c-6c618881edc6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:0bf6f052-8d97-4024-a52c-6c618881edc6" ], + "x-ms-correlation-request-id": [ "87032457-2b86-48a6-9f81-a2ef6934bcb5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013052Z:87032457-2b86-48a6-9f81-a2ef6934bcb5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C397F599137245B0B0193DE611E4F297 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03176902423E4DF981EB0E9B9EF8D410 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-sjhkza\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByName \u0027Functions-Linux-Premium-n36iqr\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "115" ], - "x-ms-client-request-id": [ "13723794-015a-4053-94f3-78bc5a8f1c4f" ], + "x-ms-client-request-id": [ "a3392e60-3771-45cc-9c0b-10aab270d453" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -337,40 +337,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9fa9537-9f59-442e-8e4d-1b42e33173b2" ], + "x-ms-request-id": [ "df570300-9675-41f8-b023-ce7789010761" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a5145744-2178-4437-b481-eacc4d27e618" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001247Z:a5145744-2178-4437-b481-eacc4d27e618" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c7fcdd64-cae0-406f-9e65-c6549491d60b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013052Z:c7fcdd64-cae0-406f-9e65-c6549491d60b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 459876AC38904E4094460C8B4A818632 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F19E0DD61FA4CEB9854442C4002B313 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+1": { + "Get-AzFunctionAppPlan+[NoContext]+ByResourceGroupName+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "116" ], - "x-ms-client-request-id": [ "dfa7cb02-43cc-4628-9221-f053cd6192b0" ], + "x-ms-client-request-id": [ "af774ef3-a152-41d5-9b32-6a8aecb269d0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -381,25 +381,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "02c498a1-f06e-4550-b2c8-0dafcbd27928" ], + "x-ms-original-request-ids": [ "de34566e-6ba3-40a2-8a2d-730e42830495" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "cef0e3f3-5c47-49c3-901b-ffa028a255b1" ], - "x-ms-correlation-request-id": [ "cef0e3f3-5c47-49c3-901b-ffa028a255b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001248Z:cef0e3f3-5c47-49c3-901b-ffa028a255b1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "2816c918-e4f2-4dc4-b36a-5be8a17de83b" ], + "x-ms-correlation-request-id": [ "2816c918-e4f2-4dc4-b36a-5be8a17de83b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013053Z:2816c918-e4f2-4dc4-b36a-5be8a17de83b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E357E5D76B5454F8AC751D642B5DDF1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2347BD9B971F440C882DB562EDB577CF Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1840" ], + "Content-Length": [ "1835" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}]}", "isContentBase64": false } }, @@ -411,11 +411,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "117" ], - "x-ms-client-request-id": [ "4bbedb08-a150-4c64-9c62-5b2e2d85e8c9" ], + "x-ms-client-request-id": [ "365c01cb-a3a7-4ff3-aa5c-a1297a60e156" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -426,40 +426,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "558fb60a-0501-45fa-8ed7-934da6df5897", "0116b786-e8f7-474a-9b1c-c62d95e4a481" ], + "x-ms-original-request-ids": [ "c6df3083-0e74-4aae-89f9-757915913da1", "eacad8ed-5565-4a68-ba2d-75d4dad6054b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1d5bdd24-9668-4589-90db-cad5b5f8d917" ], - "x-ms-correlation-request-id": [ "1d5bdd24-9668-4589-90db-cad5b5f8d917" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001248Z:1d5bdd24-9668-4589-90db-cad5b5f8d917" ], + "x-ms-request-id": [ "8066bed4-2fb0-4d5a-85b8-8049db4a4d01" ], + "x-ms-correlation-request-id": [ "8066bed4-2fb0-4d5a-85b8-8049db4a4d01" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013054Z:8066bed4-2fb0-4d5a-85b8-8049db4a4d01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EE4F6AEC3CCB44FFB766DD2119970CB4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C215BCEFF0C4520943D0C906FA19308 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:53Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "118" ], - "x-ms-client-request-id": [ "b5720cb0-aeac-4190-87c6-6b5ed8df5ff8" ], + "x-ms-client-request-id": [ "1dcb3b2e-dff8-4c2d-9ec2-bc08dfef14c7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -471,40 +471,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1755b84-a7a5-4b18-ac62-a290bfa5d554" ], + "x-ms-request-id": [ "cd807668-96db-45aa-a224-9fb6f4bf92d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "54b5a49d-0e64-4330-b06f-f45ac02b0ff7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001248Z:54b5a49d-0e64-4330-b06f-f45ac02b0ff7" ], + "x-ms-correlation-request-id": [ "57983fce-cddc-48b6-bb83-14cee10df564" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013054Z:57983fce-cddc-48b6-bb83-14cee10df564" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6758315419B24D7AB35BCE57876C189B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 165E1918495246499B26819D643B6674 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:54Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "119" ], - "x-ms-client-request-id": [ "5c5a562e-17c3-409c-ad40-f2f4dda2189c" ], + "x-ms-client-request-id": [ "4ffe8f15-ca92-4c27-882f-a5f9c136eca4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -516,40 +516,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1eefcac1-0e67-447f-9c78-a5ee5d0fba77" ], + "x-ms-request-id": [ "e421bd1e-492e-44b1-9401-52f8281933fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "95195524-c922-4676-a201-2831ce76e2d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001249Z:95195524-c922-4676-a201-2831ce76e2d1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "555f0549-5431-4433-9aee-bb73fa5798da" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013054Z:555f0549-5431-4433-9aee-bb73fa5798da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7053F9DE4C634C49B520B28C56C73684 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9D4970939064333975849F833AC05B0 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:54Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+4": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "120" ], - "x-ms-client-request-id": [ "a9c493f4-677d-414e-b956-0aa33ee99cef" ], + "x-ms-client-request-id": [ "902e3329-baf8-4eef-8b54-c6c04fe9bb36" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -561,40 +561,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37bdc4c8-eaaa-42b5-8a63-58dd3a50dec5" ], + "x-ms-request-id": [ "59cf6d3f-3aad-4615-a068-00fdef54c329" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4d55e424-5c12-44c8-83b7-8dc6a100cbce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001249Z:4d55e424-5c12-44c8-83b7-8dc6a100cbce" ], + "x-ms-correlation-request-id": [ "b50f59ab-0e54-49aa-bac8-78fbea706476" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013055Z:b50f59ab-0e54-49aa-bac8-78fbea706476" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92CB5B2A1C394067B1EB0F4407F5B94E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 15B287C9D1514BCE988F9A7812E04FAB Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:54Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+5": { + "Get-AzFunctionAppPlan+[NoContext]+ByLocation+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "121" ], - "x-ms-client-request-id": [ "16049d0f-08d9-4976-b5e0-ad0bf9947242" ], + "x-ms-client-request-id": [ "a8691ac2-44e0-4877-9ad5-5cb66830cf96" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -606,24 +606,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb404a53-bd48-47d5-a75a-bde2df227271" ], + "x-ms-request-id": [ "ee3a2b60-2d66-48f5-976e-b5330527f4b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "331c44ad-7605-4503-a03d-825134b8b637" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001249Z:331c44ad-7605-4503-a03d-825134b8b637" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a2eb6c83-d1ab-469e-bda6-f77a04548b2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013055Z:a2eb6c83-d1ab-469e-bda6-f77a04548b2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC366E544BBD4C46BE4D35AE5A822E8A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D833A2FDC548447C9537B6EF6E39AC19 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:55Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json index 6553735b38af..66fc35bf44bf 100644 --- a/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json +++ b/src/Functions/Functions.Autorest/test/Get-Update-Remove-AzFunctionAppSetting.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest1-t1850fmzia\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "352e64cf-c052-4f15-9ae8-a28645fe31f2" ], + "x-ms-request-id": [ "0a2f6de5-cf6e-4d65-9117-cd6af3a52adb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4a94072c-16c1-4f00-aba1-4e6f7cad5bdc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/96534b7b-b0a9-469b-acbb-ee69e2fa2583" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9ef890ea-21e9-4561-8657-03c48b04fa25" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001250Z:9ef890ea-21e9-4561-8657-03c48b04fa25" ], + "x-ms-correlation-request-id": [ "10e33242-ae82-42de-a2c5-a1cd8816bf32" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013056Z:10e33242-ae82-42de-a2c5-a1cd8816bf32" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C86DA00875F849DAB901CA9DB3A4955B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38E4D5E666994ED1ABC759F565C0FD0B Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:55Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -48,11 +48,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "123" ], - "x-ms-client-request-id": [ "61acd9f1-537a-42e9-86fd-eb3b88028587" ], + "x-ms-client-request-id": [ "661e7a71-b71d-4bf4-ac30-1ec2c8ccd3aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2635f171-dd17-455f-82c6-654c29933e84", "c69f4d41-263f-4ae5-b211-e68ae1457613" ], + "x-ms-original-request-ids": [ "358c10c6-f85e-4ecf-b191-8221041ab33a", "00bd1a7b-2df9-4ff7-b182-630eb0dd5527" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0c392f1e-3993-45ca-9385-e57dd746c275" ], - "x-ms-correlation-request-id": [ "0c392f1e-3993-45ca-9385-e57dd746c275" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001251Z:0c392f1e-3993-45ca-9385-e57dd746c275" ], + "x-ms-request-id": [ "c9bb988a-e279-454d-8252-c00fabc54bf5" ], + "x-ms-correlation-request-id": [ "c9bb988a-e279-454d-8252-c00fabc54bf5" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013056Z:c9bb988a-e279-454d-8252-c00fabc54bf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EDE200AD2384EE7A2CAA2F5CF924BF3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EC641B8C75847ADA65881A63CE63637 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:56Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8766" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "124" ], - "x-ms-client-request-id": [ "7429ee9b-a617-4eaa-804c-6e4f517f510f" ], + "x-ms-client-request-id": [ "2c8b2755-a600-470d-b98b-250a55d8b804" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +108,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c5bc5cc-98c5-4237-a8d7-8e3a9a423910" ], + "x-ms-request-id": [ "a3295f4a-5618-46fb-9c4a-38df51a5de83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5200740e-488a-4cc4-95c2-89800413f77e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:5200740e-488a-4cc4-95c2-89800413f77e" ], + "x-ms-correlation-request-id": [ "2cb327db-eb82-4425-902b-5ad21340b907" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013056Z:2cb327db-eb82-4425-902b-5ad21340b907" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C94E6218284D453DB9BFFD031DCEF46C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 29E514D4776F481F9FC87E7B7B6702D5 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:56Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "125" ], - "x-ms-client-request-id": [ "f4afea82-3aa8-4b38-8ac9-bffb298274ed" ], + "x-ms-client-request-id": [ "953de1d9-beba-41d4-895c-f14b18f314b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2753b3aa-9657-4327-bfbb-10dea46c5603" ], + "x-ms-request-id": [ "e0edd1b0-f846-4b5c-9abf-b0654522c4d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c7c617e4-1030-48e3-8039-dda998d21e55" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:c7c617e4-1030-48e3-8039-dda998d21e55" ], + "x-ms-correlation-request-id": [ "d6036ec8-801b-4406-8ba2-6e2b39838335" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013057Z:d6036ec8-801b-4406-8ba2-6e2b39838335" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 08013C2EDE7C43EAAF9A0B8A309D1917 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 835A2EA15379495DA0FB4D5354422458 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:56Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "126" ], - "x-ms-client-request-id": [ "27ab7fdc-f9b5-418c-a19a-882e3e210f5f" ], + "x-ms-client-request-id": [ "3e31a156-ad7b-450e-b402-5e575b86e119" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e933c678-7eac-41d4-8a86-c5eb72366ca2" ], + "x-ms-request-id": [ "e8522d6c-cd5f-4034-af50-9574fbab0ee9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e75b00b3-d9fb-4863-9c28-85b1084b4e2b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:e75b00b3-d9fb-4863-9c28-85b1084b4e2b" ], + "x-ms-correlation-request-id": [ "b2004787-347e-4e5b-834c-b21a0b7b5730" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013057Z:b2004787-347e-4e5b-834c-b21a0b7b5730" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B68EEB33AAD4E47918FB07349EDAEF8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED7612BBB1A8491CB22D47C7EAFB3F43 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "127" ], - "x-ms-client-request-id": [ "bbcf4c6c-7fe6-4148-8459-94d206cd1ee4" ], + "x-ms-client-request-id": [ "8284fa75-1c59-44ea-9495-5d3ce72670c9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +243,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2aff4e35-6005-45d6-99b5-988b89486089" ], + "x-ms-request-id": [ "06db86fe-90db-4355-bf75-6f43cfc74f54" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d09684c3-f2d6-44a2-a53e-882c0a5d4a3c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001251Z:d09684c3-f2d6-44a2-a53e-882c0a5d4a3c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c0775d4e-41ed-4869-bb03-af0b53a45e8e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013057Z:c0775d4e-41ed-4869-bb03-af0b53a45e8e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F9375B8BF26456A8021E0EB5F6E8FC4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F1B5FD27000474699DAAC20E9C47C86 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "128" ], - "x-ms-client-request-id": [ "0dca576d-80a8-4571-bf3a-7bd30f185dd2" ], + "x-ms-client-request-id": [ "20957f8b-954f-4955-9313-fe35309f8845" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -288,24 +288,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "050ba7ee-c9c4-4cc6-a079-741983b0a1e7" ], + "x-ms-request-id": [ "b9daa7cb-3724-43f2-ab86-6ced2b7ab5d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4c6a1060-e6e4-41e2-93af-dc2b0b7898a1" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T001252Z:4c6a1060-e6e4-41e2-93af-dc2b0b7898a1" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "0caaca26-1d56-48a8-873e-b43ccccc3e8c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013057Z:0caaca26-1d56-48a8-873e-b43ccccc3e8c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2E8854AAA1E4B26B5CE3B1E4207F16C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 148D05F881B24ACF979F2E81BEE0F723 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -317,11 +317,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "129" ], - "x-ms-client-request-id": [ "13ffcf9e-501a-4b8b-97da-fd11c6e2be35" ], + "x-ms-client-request-id": [ "d8de7506-8353-43b6-84a4-ccf3cb3c30b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -332,40 +332,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "273881a8-80ad-4dd7-ada7-80aaf8df2697", "1f49c230-702a-4e0f-81d5-e09fd163ad6e", "47625f03-8541-41bd-b8a7-522aaf2910fa" ], + "x-ms-original-request-ids": [ "cc0e22a5-c863-40f0-a21b-b6bf96627595", "2dc8e7eb-a8af-4626-a29e-3edb16d578e6", "3d1fabe4-2e8e-44ec-bc0a-073a17a7a05b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5e0fad06-fe49-4159-97c3-de7c86c86a2c" ], - "x-ms-correlation-request-id": [ "5e0fad06-fe49-4159-97c3-de7c86c86a2c" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001252Z:5e0fad06-fe49-4159-97c3-de7c86c86a2c" ], + "x-ms-request-id": [ "8088d1e2-2851-4a7f-943e-83738e35f48f" ], + "x-ms-correlation-request-id": [ "8088d1e2-2851-4a7f-943e-83738e35f48f" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013058Z:8088d1e2-2851-4a7f-943e-83738e35f48f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8B0D240D59E4686AEDA732AEFE18685 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 747FDC6772AB40DBBF752E6E49F97982 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "130" ], - "x-ms-client-request-id": [ "6fa6e994-c10c-45c8-a8c3-523381f4828f" ], + "x-ms-client-request-id": [ "96aacc2f-ae30-4de6-be61-ed5a615bacf1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -376,16 +376,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c0a15e07-90bb-46a2-b173-98276c3f7499" ], + "x-ms-request-id": [ "7aafa97d-645c-4c72-9ce9-d6830b8ab427" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/567993ab-2708-400f-bec4-ca1ba8436a41" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3aa5317d-ba49-4b4b-bee5-eca12270b353" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "76028eaf-345e-473a-b8be-ce6a78ef4cbf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001252Z:76028eaf-345e-473a-b8be-ce6a78ef4cbf" ], + "x-ms-correlation-request-id": [ "91945e81-e26a-45c2-aaad-bc888a380433" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013058Z:91945e81-e26a-45c2-aaad-bc888a380433" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41D6A3884AB34E2AB27FA4DAEDDAA21E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D5BD219A7F0492D95AB9DBFEBAAC86D Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:58Z" ], + "Date": [ "Sat, 28 Mar 2026 01:30:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -396,10 +396,10 @@ "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2015-05-01+10": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-t1850fmzia?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest1-t1850fmzia?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -419,30 +419,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/060e2b58-08e6-4001-9dbd-4cd136498b08" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "751af79c-6b62-4583-ba51-06251c87ef37" ], - "x-ms-correlation-request-id": [ "751af79c-6b62-4583-ba51-06251c87ef37" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001259Z:751af79c-6b62-4583-ba51-06251c87ef37" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/73becc03-80c6-4c94-8fb3-9692d293243d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "73f4ca6d-7223-437e-b20a-b387aeab582a" ], + "x-ms-correlation-request-id": [ "73f4ca6d-7223-437e-b20a-b387aeab582a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013104Z:73f4ca6d-7223-437e-b20a-b387aeab582a" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8FF3CC0A343B48DA86CC94C676011723 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:12:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 760F35721E2A445B87F287572A47B89F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:30:58Z" ], + "Date": [ "Sat, 28 Mar 2026 01:31:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1683" ], + "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202fa2e-0000-0300-0000-69c47a0b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"name\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"AppId\": \"e67bde51-45a5-4f45-b6dd-03a96bcd939e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8a93d396-fa83-4fef-8f0f-1fd48e9e4899\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest1-d3t8hyrciu\",\r\n \"CreationDate\": \"2026-03-26T00:12:53.280685+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-d3t8hyrciu_e67bde51-45a5-4f45-b6dd-03a96bcd939e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-d3t8hyrciu-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6b031da4-0000-0300-0000-69c72f580000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest1-t1850fmzia\",\r\n \"name\": \"Func-PowerShell-NewTest1-t1850fmzia\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest1-t1850fmzia\",\r\n \"AppId\": \"8abbcfaa-2133-4860-83bf-0ae216d897b5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"712e22e8-5385-4837-ae80-44c1f679dd19\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest1-t1850fmzia\",\r\n \"CreationDate\": \"2026-03-28T01:30:59.1024376+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-t1850fmzia_8abbcfaa-2133-4860-83bf-0ae216d897b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-t1850fmzia-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+11": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-d3t8hyrciu\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest1-t1850fmzia\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -456,43 +456,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB54F4CADC0\"" ], + "ETag": [ "\"1DCBE528CCA41D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1daeb7cc-ce1c-4e94-a109-738c13129221" ], + "x-ms-request-id": [ "27ed5b2a-ff99-4e26-bb7d-c7b267ec49a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b0c68114-22c0-473a-aea1-61470b59271b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c00c3a6-51dc-4527-b9d6-f3e724a9eb85" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "b8b58568-4b52-494b-8765-b513292bb52d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001341Z:b8b58568-4b52-494b-8765-b513292bb52d" ], + "x-ms-correlation-request-id": [ "dca6f2c6-6c38-4d92-9bff-c1eb59add1f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013146Z:dca6f2c6-6c38-4d92-9bff-c1eb59add1f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B42171E4A4B447E80131D279DED784C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:12:59Z" ], - "Date": [ "Thu, 26 Mar 2026 00:13:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26E786A269FB4489A4DC0C0B2F7175B7 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:31:04Z" ], + "Date": [ "Sat, 28 Mar 2026 01:31:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8580" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:13:00.8\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:31:06.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest1-t1850fmzia\\\\$Func-PowerShell-NewTest1-t1850fmzia\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+12": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "133" ], - "x-ms-client-request-id": [ "02529da0-3c9f-47ce-ad2d-131cb2f61d55" ], + "x-ms-client-request-id": [ "c95aead6-4134-41d6-a3cc-43eee049e04d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -502,42 +502,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB566888E00" ], + "ETag": [ "1DCBE52A41B7ED5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "435174e6-a760-438a-8db7-ca2cd46734e7" ], + "x-ms-request-id": [ "aa4f4761-cd47-4da6-8615-a336e679d5dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "46f645bc-a1ea-4a09-86e3-df20eca2009d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001411Z:46f645bc-a1ea-4a09-86e3-df20eca2009d" ], + "x-ms-correlation-request-id": [ "6f2f63fc-9cef-462c-8475-aedd703fb5d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013217Z:6f2f63fc-9cef-462c-8475-aedd703fb5d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C686B5D7F4F480182A944DA181C1BB9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E3C45AE71784F4B9390BFC4060813B1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:17Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:13:40.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:31:46.4133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest1-t1850fmzia\\\\$Func-PowerShell-NewTest1-t1850fmzia\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+13": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "134" ], - "x-ms-client-request-id": [ "5b07781a-e558-4e46-b2f7-3d3607274443" ], + "x-ms-client-request-id": [ "9f7336e0-b571-462e-aaac-c513933b9c0c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -548,42 +548,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB566888E00" ], + "ETag": [ "1DCBE52A41B7ED5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "883b1206-d5de-4a5f-ae7d-daa0cb5bdaf5" ], + "x-ms-request-id": [ "dd83b19f-552e-47c9-b5c4-4573e57b5a29" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa98eca6-e19f-4a98-8ba1-973360cee765" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:aa98eca6-e19f-4a98-8ba1-973360cee765" ], + "x-ms-correlation-request-id": [ "334a164d-34cd-4023-a171-f3b0dcfa9523" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013217Z:334a164d-34cd-4023-a171-f3b0dcfa9523" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2E2D14A3F0E42EBA1EDE5667407F96B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D947EB6A21314AD1A99F1A0EFD60649D Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:17Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:13:40.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:31:46.4133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest1-t1850fmzia\\\\$Func-PowerShell-NewTest1-t1850fmzia\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+14": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "135" ], - "x-ms-client-request-id": [ "8eebf3b9-f4e6-43b6-b39a-8ff800575618" ], + "x-ms-client-request-id": [ "316ad19d-eb81-4caa-9a2d-1dae4b38da90" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -595,40 +595,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01101c0b-a2e2-46fc-8b8f-791dcadcd1d3" ], + "x-ms-request-id": [ "02865dd1-0428-4bd1-b76e-ff3d6b4f47c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc62f061-8589-4e80-93d0-909c7a0a83bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ba2c9aa-0a57-4e66-a78b-89e8ae320ad7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "352ad491-c590-4b4b-9c0b-18016c355e87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:352ad491-c590-4b4b-9c0b-18016c355e87" ], + "x-ms-correlation-request-id": [ "e632f781-81b4-4306-97ae-872decd502e8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013217Z:e632f781-81b4-4306-97ae-872decd502e8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5431D620FC23446FBD2A7504AF6C5A07 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7151C849884D4EE19FEFA4F5C10B75CB Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:17Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+15": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "136" ], - "x-ms-client-request-id": [ "96e821cf-fd85-40c3-b529-5230acfd74ef" ], + "x-ms-client-request-id": [ "fcb8039c-3f25-4cd6-8631-da47c02b5525" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -640,41 +640,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad90d6c1-0d5f-409b-ad82-ed75fc99b5e9" ], + "x-ms-request-id": [ "e095772c-43a6-4dad-b5dd-e7ee2846200f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b295ebd6-ac0c-4d55-bf72-48c072b84246" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/717ee7c3-ce03-43de-a06c-29eface08ee3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "260b3dfb-9dce-47eb-b16e-7bb7bbfe0b51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:260b3dfb-9dce-47eb-b16e-7bb7bbfe0b51" ], + "x-ms-correlation-request-id": [ "82b74491-2ce8-47be-afa5-d6b4edf03c05" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013217Z:82b74491-2ce8-47be-afa5-d6b4edf03c05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FF051EB8CAC845F99B453E3E0DD6D7BF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD0C21D6676F4397983DF092944193B9 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:17Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+16": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "137" ], - "x-ms-client-request-id": [ "6be7f994-bc39-4bba-9eea-c4c2b48cee1a" ], + "x-ms-client-request-id": [ "3ac31c37-7a37-4fa6-beb1-eeafb454567c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -686,40 +686,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2559bc46-d362-4bbb-be24-8db8447e905e" ], + "x-ms-request-id": [ "e60f3963-5190-46ed-9c6f-ff7c131c3a75" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83e60800-2cee-4d9d-a371-f55473d386a2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c891e9cc-bea9-44c3-9668-031104ff4175" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d3ed882a-7594-4f8a-8cac-444190507087" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001412Z:d3ed882a-7594-4f8a-8cac-444190507087" ], + "x-ms-correlation-request-id": [ "0f58c51e-fa2d-4b01-a870-7401c5426c3c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013218Z:0f58c51e-fa2d-4b01-a870-7401c5426c3c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EEFF75B799774AF083156BF3B63C8455 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC6D45E8AAAD4A4AB89D0921188D9E3B Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+17": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "138" ], - "x-ms-client-request-id": [ "bc4b1ffa-e088-4cae-b025-f290e59c096e" ], + "x-ms-client-request-id": [ "72a40813-af88-463b-976f-57d467bcdcd8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -731,40 +731,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e7c7151c-96b9-4a9c-951e-75bce175b6ba" ], + "x-ms-request-id": [ "52b4c68d-ef5c-409e-b72c-25c39348bd87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1efc6b90-e3e6-4479-98e5-7c9733fb9ebc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d833ecd-997c-4b07-a235-b85c0af79891" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ee86569c-c1ab-40c4-b942-cb611ded3e7b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001413Z:ee86569c-c1ab-40c4-b942-cb611ded3e7b" ], + "x-ms-correlation-request-id": [ "97cddab5-208a-43b7-81ad-74d6599389a7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013218Z:97cddab5-208a-43b7-81ad-74d6599389a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D60CC41798544726B9A3EF7FB1A841DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4355309FC55647FC9945D0EB9D7F8DA1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+18": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "139" ], - "x-ms-client-request-id": [ "6b9a8e8d-3e75-4ef1-9c1d-73e341783b2e" ], + "x-ms-client-request-id": [ "767837f6-3242-427c-bd0b-e03dee16a695" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -776,32 +776,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "872ef697-ed9b-41fc-a685-4b12ceea004f" ], + "x-ms-request-id": [ "6b908a96-de51-437c-b67a-42ed1736fc10" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a0a08bd-35ad-4cfa-abb4-e9bd78f590b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/077f778b-20af-4699-9880-90455422675d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "975a4245-7b1c-4cbc-904d-db224af439e1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001413Z:975a4245-7b1c-4cbc-904d-db224af439e1" ], + "x-ms-correlation-request-id": [ "8e372a6b-3a5c-4e74-8ebd-f549745f5b96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013219Z:8e372a6b-3a5c-4e74-8ebd-f549745f5b96" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74D077854263433299B859B16D9DB001 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBDEB3E1D7184385B57AE9DA90F79099 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+19": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01+19": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-t1850fmzia\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -815,43 +815,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB566888E00\"" ], + "ETag": [ "\"1DCBE52A41B7ED5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f14fec3-0e5a-4d08-82c2-58afa02e73fd" ], + "x-ms-request-id": [ "9b05a801-1c3b-4db6-99f2-253b6264d6c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b4dd0e1a-202c-40b7-97c5-dfe649bf356c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/87934de4-9cbc-4151-915b-df7808dd34d5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "6d1aa0f1-be67-4b16-8546-8a8eaab4662a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001414Z:6d1aa0f1-be67-4b16-8546-8a8eaab4662a" ], + "x-ms-correlation-request-id": [ "88bf9bc5-5223-47ef-b87a-966f9e0aba13" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013220Z:88bf9bc5-5223-47ef-b87a-966f9e0aba13" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7194670E0F88408983FCCE85A13ECB85 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6A3A2623C5E4A2AA4FBFEB54D8465FB Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:19Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+20": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "141" ], - "x-ms-client-request-id": [ "656b0c37-329a-46ff-be77-344042ca4c88" ], + "x-ms-client-request-id": [ "9774ba2d-9e95-4fa6-8575-64c0da7aa9f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -863,40 +863,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3e08fe2-478f-4355-a140-028be71a12de" ], + "x-ms-request-id": [ "d1f25b4c-59d8-4f72-bfa0-02af23b1cd78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fed9e256-8719-4117-aac7-eb5f4c319381" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a6e5d03-e41e-4f87-90e3-59240dbf10c4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5d85360a-286d-4dd2-b79d-db73376b2693" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:5d85360a-286d-4dd2-b79d-db73376b2693" ], + "x-ms-correlation-request-id": [ "ac50551c-5d01-4ef4-a64c-2268c2f1be29" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013221Z:ac50551c-5d01-4ef4-a64c-2268c2f1be29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F52A1F375BA14913B51E253AE538D0E5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00240326440348C498180D277C0DD81E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:20Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+21": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "142" ], - "x-ms-client-request-id": [ "95e9aef9-65aa-40b7-83d2-25b4c88c5a09" ], + "x-ms-client-request-id": [ "c1b4645a-6a4f-4433-a55e-2bc36faf01a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -907,42 +907,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB57A98A9C0" ], + "ETag": [ "1DCBE52B85C6E95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "56a441e2-a922-440b-ba26-059b86e70fcc" ], + "x-ms-request-id": [ "5398f52c-6324-42b8-8f40-9b85050a0dc0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9bda9ad4-9aac-43a8-af9a-94a3d36a287e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:9bda9ad4-9aac-43a8-af9a-94a3d36a287e" ], + "x-ms-correlation-request-id": [ "d709b599-1353-46ee-99da-c6963f3cc7c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013221Z:d709b599-1353-46ee-99da-c6963f3cc7c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60044889A2B14B808547A86321754147 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE1297C069D84DC9BDF0E1D9590B7626 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:21Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:14.62\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:32:20.3933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest1-t1850fmzia\\\\$Func-PowerShell-NewTest1-t1850fmzia\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+22": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "143" ], - "x-ms-client-request-id": [ "2b0d1c4c-043e-40aa-9a2e-4c01ad26efed" ], + "x-ms-client-request-id": [ "d17c03af-a5e3-4199-a4d7-ddfc53925955" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -954,40 +954,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33ec6d1b-5678-4d2d-9081-86ee3773e7cc" ], + "x-ms-request-id": [ "1c11e911-5095-4120-a813-a2796bb78d06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f5aa2ef5-3baf-42ac-bac7-626e064a98f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d0581868-f75e-4394-b999-e23c3d0198c1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "fd87ab0b-0c49-477e-858e-0d387f6b0b71" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:fd87ab0b-0c49-477e-858e-0d387f6b0b71" ], + "x-ms-correlation-request-id": [ "4bb561ed-6fcc-4509-8d49-1a9c48f90af2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013221Z:4bb561ed-6fcc-4509-8d49-1a9c48f90af2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FEC7739D33FA4295902BE56A8B67B577 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 916F215A4F964461A127616655D47C95 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:21Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+23": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "144" ], - "x-ms-client-request-id": [ "57039c5e-838a-48ed-9114-ec4fa61d9684" ], + "x-ms-client-request-id": [ "f256fc8f-6200-4627-a0c1-9b0722c53e8c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -999,41 +999,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad93b803-6242-4b66-b709-0e4327f3cfef" ], + "x-ms-request-id": [ "71e75c1e-a0e0-458d-b010-27a78cbbe55a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2237e9de-3235-4f01-86a3-03223083a1a7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/977abd29-db23-485e-938b-c03341fc3a6b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "64e8ade5-0bd6-4d99-96cb-83ee90de877f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001415Z:64e8ade5-0bd6-4d99-96cb-83ee90de877f" ], + "x-ms-correlation-request-id": [ "aa581cda-8d6d-44f3-80a2-5e9b74c6ed32" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013221Z:aa581cda-8d6d-44f3-80a2-5e9b74c6ed32" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA4D6739174244049576B4F0CA67B738 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 159E0966E3FB477EBAA6FB4E3431B5F1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:21Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+24": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "145" ], - "x-ms-client-request-id": [ "aa047991-8047-4b3d-80c8-4331e38d543a" ], + "x-ms-client-request-id": [ "6d60dc0f-d41a-4637-908c-84f2513a4a82" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1045,32 +1045,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3489d120-9d45-4489-8d5b-89133369faaa" ], + "x-ms-request-id": [ "2668e39c-68f2-4032-8680-444ac1ed6d6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff6dcaf0-9915-456b-b6ed-5f8e92efcd6f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/99138c22-7cb7-4ef2-aef0-a1ed2092e145" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7bc1366f-1236-4c81-bf9d-8674c6b4e7a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001416Z:7bc1366f-1236-4c81-bf9d-8674c6b4e7a7" ], + "x-ms-correlation-request-id": [ "ce8e8b57-6bb2-4218-8f93-da31204d0211" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013222Z:ce8e8b57-6bb2-4218-8f93-da31204d0211" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2E4D1A126B848888ABADA1FBAE1AF0E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:16Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA61FB22A9B2493CBD1C0A13CAF4A37E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:21Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1241" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+25": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01+25": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting1\": \"456789\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-t1850fmzia\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"MyAppSetting2\": \"PowerShellRocks\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1084,43 +1084,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB57A98A9C0\"" ], + "ETag": [ "\"1DCBE52B85C6E95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "556a0160-3bbb-4bf6-9ae7-9949e63a281f" ], + "x-ms-request-id": [ "b16ee57c-cf30-4303-9ab3-3843b6898a44" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/48fa4713-9f1a-43d7-ac3e-3aac245ec80e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/49a2af9a-3891-4526-ae21-dd3c87dd23da" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "146d5d00-f2a1-4c9e-b1a8-b9e02c00a7f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001417Z:146d5d00-f2a1-4c9e-b1a8-b9e02c00a7f7" ], + "x-ms-correlation-request-id": [ "ffea5a54-6b63-48b7-9d46-65f3ffb73261" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013223Z:ffea5a54-6b63-48b7-9d46-65f3ffb73261" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5812DEA3B5A413AAF7197CEA0884164 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:16Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 01348B243BD84B798515167D69DB8295 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:22Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+26": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+26": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "147" ], - "x-ms-client-request-id": [ "3cecb018-fa95-4a6e-a795-deaf613719f2" ], + "x-ms-client-request-id": [ "25f6da26-744d-429f-b35e-6d774c7d46fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1132,40 +1132,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c113ede2-93e7-4675-9626-86af678ceeff" ], + "x-ms-request-id": [ "b6cf6df9-0cd8-4781-aa26-13ddb5784dbe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/85989234-7ec1-440f-9238-8ec95ed04553" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e200a290-7ad4-4391-8e57-d686611a33d9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4b4810fc-86ba-48a6-8703-7b102cf0e5ec" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001417Z:4b4810fc-86ba-48a6-8703-7b102cf0e5ec" ], + "x-ms-correlation-request-id": [ "fdae2317-197f-4433-a42d-4a67393baf2d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013223Z:fdae2317-197f-4433-a42d-4a67393baf2d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14B88DA53C3B43DAB9256BE4A2C245F9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3716556D22E348E3A8FBDDCF6D8C102D Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+27": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+27": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "148" ], - "x-ms-client-request-id": [ "76591acb-cbb4-4396-b52b-68b8d8bbfbe2" ], + "x-ms-client-request-id": [ "6dc28ed6-1b0f-4aeb-8a56-49c27fedf97c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1177,32 +1177,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24c582c3-479c-4000-82e8-64d093254574" ], + "x-ms-request-id": [ "8172531c-117a-4868-8179-60b641ed5705" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/138faedb-a56c-4336-91d7-00e1c16734ae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cbdf589b-cffe-4484-9106-a558cd56e24a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6aec0825-ac53-4017-8947-d12e3d05a21c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001417Z:6aec0825-ac53-4017-8947-d12e3d05a21c" ], + "x-ms-correlation-request-id": [ "8110e50f-b424-4fb3-847d-27a632be0600" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013223Z:8110e50f-b424-4fb3-847d-27a632be0600" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3255BD1837A474DB8E83EBFB7B84142 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 063BD4E79D0345309A92C6B4C1E7BF6B Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1304" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting2\":\"PowerShellRocks\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"MyAppSetting1\":\"456789\",\"MyAppSetting4\":\"PowerShellIsAwesome\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"MyAppSetting4\":\"PowerShellIsAwesome\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting1\":\"456789\",\"MyAppSetting3\":\"123456\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"PowerShellRocks\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+28": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01+28": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"MyAppSetting4\": \"PowerShellIsAwesome\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-t1850fmzia\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"MyAppSetting3\": \"123456\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1216,43 +1216,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB57C01C9AB\"" ], + "ETag": [ "\"1DCBE52B9D8E26B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "798f7ee2-1c80-4f7c-ada3-650c8da6d061" ], + "x-ms-request-id": [ "a388eac4-ebdd-40ab-a2c7-917f4ca56890" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/114273df-05cb-482f-8d4f-33bc50e6ca49" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/351a2b68-a5ed-45b1-a918-2c448063c3f0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "089a0a3b-2b70-4e41-a5b7-2b14ffb22ac4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001418Z:089a0a3b-2b70-4e41-a5b7-2b14ffb22ac4" ], + "x-ms-correlation-request-id": [ "25023076-ba1a-47f0-9c46-c4e645d641d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013225Z:25023076-ba1a-47f0-9c46-c4e645d641d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B2BF803A381D46A5B1D69F3D038F06D5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18B19E78CA3D4EECB8875937FA88E532 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+29": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+29": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "150" ], - "x-ms-client-request-id": [ "aa0c5fc9-14d0-4676-945f-3c7448bc3bd2" ], + "x-ms-client-request-id": [ "90715712-358f-40c2-8cff-4eb31bd17833" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1264,40 +1264,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6574e36-2eb3-4350-9cd3-f91181131c32" ], + "x-ms-request-id": [ "19688382-20a6-4e9f-94d6-0847f0a4901e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/efa0e8dc-4cc0-49ef-8b7b-35ca15190b31" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/84fd3900-3272-4fca-a38a-c4a88ea47ae6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "48d43eba-2116-44d3-ae2e-7d3cb4be554c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:48d43eba-2116-44d3-ae2e-7d3cb4be554c" ], + "x-ms-correlation-request-id": [ "a5afb29e-748a-4a15-9a5c-2b79c3c19733" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013225Z:a5afb29e-748a-4a15-9a5c-2b79c3c19733" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC3D0A352B5C4A679AD5F679B1637DD6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 997EB0694B754D89AD50C6AC17B56AB1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+30": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "151" ], - "x-ms-client-request-id": [ "6a53d72a-b7a6-4230-8fea-485b28180fad" ], + "x-ms-client-request-id": [ "4cc81678-8b0a-442b-b945-a5934cc4c0be" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1308,42 +1308,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB57CE39E2B" ], + "ETag": [ "1DCBE52BAE8FFE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "55dc3b7b-6d7f-4621-8386-94ff4f947cd3" ], + "x-ms-request-id": [ "ee7e4e85-9b83-4a28-8af5-81df7ca7a10b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b5dd920-f3e9-48ed-9eab-0e2d067b118f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:5b5dd920-f3e9-48ed-9eab-0e2d067b118f" ], + "x-ms-correlation-request-id": [ "230fefa4-fc17-477c-8506-15dcdb87047c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013225Z:230fefa4-fc17-477c-8506-15dcdb87047c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E34A6C63A01E459D87579A056F1FFE12 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17A537A014A546D4B71C0942012E8878 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:18.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:32:24.67\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest1-t1850fmzia\\\\$Func-PowerShell-NewTest1-t1850fmzia\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+31": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+31": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "152" ], - "x-ms-client-request-id": [ "1b70ec66-d41a-44a1-9ef7-86cf1435e78e" ], + "x-ms-client-request-id": [ "6635cd7f-8bec-47f4-94e9-a433fa5c730b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1355,40 +1355,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f6d9f1ef-b8fb-46da-bc4c-afa4a73d87d4" ], + "x-ms-request-id": [ "ba318ae9-d725-4c16-b48f-a0df9dd55859" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8f97f042-1ff2-4cce-a9b7-efdc5ea7b1a6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "45791bd3-da61-4647-8830-45697f94fbc7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:45791bd3-da61-4647-8830-45697f94fbc7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aa801b21-3689-4a04-8bc7-c02667bf5f56" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "55a99e68-164e-4459-8810-4d1332f826dc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013226Z:55a99e68-164e-4459-8810-4d1332f826dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFCA6F3112E7497580BBDB6AE1675BEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BB8C6207593408ABB644289E7BD7EA3 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+32": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "153" ], - "x-ms-client-request-id": [ "4fe1448a-9501-455b-8fb0-fe7183474717" ], + "x-ms-client-request-id": [ "d8026a1c-a6b1-4334-9a59-7824dbe1c3c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1400,41 +1400,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c82e582-1ecd-4f08-9fd3-82f5e8624814" ], + "x-ms-request-id": [ "4c9ba224-e191-497f-930d-413361adc276" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/322c58a7-35f7-4d4c-ba10-5867b5934349" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b67b752f-20a7-435b-bd42-0a53be772fce" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a113bde-a2d7-4982-9bee-96ab4c930a0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:8a113bde-a2d7-4982-9bee-96ab4c930a0d" ], + "x-ms-correlation-request-id": [ "a0c89627-7527-4697-a6d7-d56de9e184ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013226Z:a0c89627-7527-4697-a6d7-d56de9e184ca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF01DE5641674DDFB67C5F09CF51A586 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86C24C7624B143159693989D08F6DFD6 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+33": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+33": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "154" ], - "x-ms-client-request-id": [ "44b047ec-637c-4585-911f-538614610eb4" ], + "x-ms-client-request-id": [ "9cb34ee1-417f-405e-b60a-0fdda886f522" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1446,32 +1446,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "25369898-78a0-45fc-a864-f01a55c87baf" ], + "x-ms-request-id": [ "efba1ead-74a7-4b2a-9899-5b3d5b8811f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/85176412-34e4-4ba5-b491-4053c5d6c63b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c45388e0-e18b-496e-81bd-2df62eb4b72b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001419Z:c45388e0-e18b-496e-81bd-2df62eb4b72b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef42789c-12bf-4fcf-bea4-36ebfadf9ee2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "4a7bfcda-f426-4d69-9c6f-fcdbac474ed1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013226Z:4a7bfcda-f426-4d69-9c6f-fcdbac474ed1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A1346C78E564AD8AC4F862EE497D6AF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D875464EA7964219A8C1A9B1A2F4B1BD Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1245" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"MyAppSetting4\":\"PowerShellIsAwesome\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting3\":\"123456\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01+34": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01+34": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings?api-version=2023-12-01", - "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-d3t8hyrciu\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings?api-version=2023-12-01", + "Content": "{\r\n \"properties\": {\r\n \"FUNCTIONS_EXTENSION_VERSION\": \"~4\",\r\n \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\r\n \"FUNCTIONS_WORKER_RUNTIME\": \"powershell\",\r\n \"WEBSITE_CONTENTSHARE\": \"func-powershell-newtest1-t1850fmzia\",\r\n \"APPLICATIONINSIGHTS_CONNECTION_STRING\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"AzureWebJobsStorage\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1485,43 +1485,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB57CE39E2B\"" ], + "ETag": [ "\"1DCBE52BAE8FFE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "567bb46d-ac04-450f-a03c-04529f7f025a" ], + "x-ms-request-id": [ "a4be1f91-9bf0-4b66-ac4e-76e12f257984" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8002b98-3647-4969-814c-e95c04b7d077" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26dec742-1b32-454a-a04a-e5bc0f3eba9d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "98add52b-ad01-4a77-8b3f-3c8a1a38e9cb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:98add52b-ad01-4a77-8b3f-3c8a1a38e9cb" ], + "x-ms-correlation-request-id": [ "46805f89-b6de-4f22-bbd2-03693f5d8727" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013228Z:46805f89-b6de-4f22-bbd2-03693f5d8727" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC22E8B1462F41129651BB9D92196CAA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA741BAF6AA040BDAD853DE71B3B5B8E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+35": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+35": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "156" ], - "x-ms-client-request-id": [ "2d6a07a2-a08f-44ef-8c08-8d68d5dd36cc" ], + "x-ms-client-request-id": [ "3bf8931f-3289-47af-ab85-88e32d1b9d34" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1533,40 +1533,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e374350a-c3c3-4b9e-b328-b0384ae35854" ], + "x-ms-request-id": [ "96acd9fb-bb64-486b-a375-7ec23699a131" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ccaa4ade-4c31-4214-bf13-d76cc4d3af52" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/82a4ddfe-57c7-4b4c-9047-5566c3a9a2ed" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dac124d3-3459-4da4-8cab-0de2c66dc02e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:dac124d3-3459-4da4-8cab-0de2c66dc02e" ], + "x-ms-correlation-request-id": [ "e467c14e-57a9-474e-9352-c6d2dfbc0f4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013228Z:e467c14e-57a9-474e-9352-c6d2dfbc0f4d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FBFBB6EAF009435D89D60E06B1EE1361 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7F43F449A5B54348B1512957B2D17AD8 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+36": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "157" ], - "x-ms-client-request-id": [ "ba9b00b3-a91f-499e-bc9a-3405bd5599de" ], + "x-ms-client-request-id": [ "b94004eb-5e9b-4de1-8ff0-c11d7a5656c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1577,42 +1577,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB57E35DAB5" ], + "ETag": [ "1DCBE52BCE3152B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d2c09b36-8f76-4449-aec8-1a8149761c08" ], + "x-ms-request-id": [ "25120b19-02cb-4c19-8426-8911c353845b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f0eaff5e-d72c-4cf6-9e8f-48baa9a5b885" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:f0eaff5e-d72c-4cf6-9e8f-48baa9a5b885" ], + "x-ms-correlation-request-id": [ "431e9a94-30c1-477b-b626-94e5d68388f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013228Z:431e9a94-30c1-477b-b626-94e5d68388f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 866E2855C61A452B8B3F681774DF0783 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B44CFB23CFAE487BA3B6582A77030698 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:20.6833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:32:27.9866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest1-t1850fmzia\\\\$Func-PowerShell-NewTest1-t1850fmzia\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+37": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+37": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "158" ], - "x-ms-client-request-id": [ "b280bd96-2477-41f6-a5fc-cd9a2ed020cf" ], + "x-ms-client-request-id": [ "3a53e605-bc86-40a0-b232-ffd33d519acd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1624,40 +1624,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20e79ce4-355f-4418-b213-bb5a0fbe2088" ], + "x-ms-request-id": [ "c397a4b6-d68e-48fc-864a-9774b1aac47f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d937152-8565-4d52-979e-5b36cb3e3682" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a497c715-d34e-4d34-b2e8-3fff8f024c8f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8d9f4c88-f6ad-41fe-ab10-d92be32796b2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001421Z:8d9f4c88-f6ad-41fe-ab10-d92be32796b2" ], + "x-ms-correlation-request-id": [ "4d92dc05-eb1a-44e2-9654-b641ec81d9fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013229Z:4d92dc05-eb1a-44e2-9654-b641ec81d9fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B5F80067A164A12878E6E51AC3D352C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 128B5A796BFE4F9CAA078EF54D3CF83E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+38": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "159" ], - "x-ms-client-request-id": [ "b5ccf027-7196-410d-b4cb-934bbb7c4588" ], + "x-ms-client-request-id": [ "04663796-b975-414f-9c21-ae2ce26ab7de" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1669,41 +1669,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "adfb0ae7-d62c-45f5-9810-a896d18423e5" ], + "x-ms-request-id": [ "9f482e25-67dc-4521-8732-7e5af81e8192" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9189b461-2c5b-4ad5-a521-a0c22878f72f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/68a0296b-494e-4820-823f-fbc600186dba" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5aa201e8-bb78-44c4-8d5b-fa370c3f3b02" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:5aa201e8-bb78-44c4-8d5b-fa370c3f3b02" ], + "x-ms-correlation-request-id": [ "ebf4c088-9779-4760-88e8-47b8db48172f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013229Z:ebf4c088-9779-4760-88e8-47b8db48172f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBF314711BF04AB8AE27D1CC7D801E06 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB3C40F953544618AD1B4541CD721BAC Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01+39": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "160" ], - "x-ms-client-request-id": [ "824d976d-b3e8-4976-905b-b136cc28e693" ], + "x-ms-client-request-id": [ "f6f48054-946b-406b-9a31-ad10bebc3b54" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1714,42 +1714,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB57E35DAB5" ], + "ETag": [ "1DCBE52BCE3152B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2411dd5e-205b-4f86-844d-b6b1acb2fb8b" ], + "x-ms-request-id": [ "eda58bb9-2f81-47d8-bd76-61fcb1a6096f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6b317ae6-a831-45df-a798-0a3281607291" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:6b317ae6-a831-45df-a798-0a3281607291" ], + "x-ms-correlation-request-id": [ "7a1474ee-0d02-4bce-9cd7-6b2b383f3558" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013229Z:7a1474ee-0d02-4bce-9cd7-6b2b383f3558" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5D132BAB52C43169FAA0C3B9A163FC6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D67775B8EA046209722F7DB81C45393 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest1-d3t8hyrciu\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-d3t8hyrciu.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:20.6833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest1-d3t8hyrciu\\\\$Func-PowerShell-NewTest1-d3t8hyrciu\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest1-d3t8hyrciu.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest1-t1850fmzia\",\"repositorySiteName\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest1-t1850fmzia.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:32:27.9866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest1-t1850fmzia\\\\$Func-PowerShell-NewTest1-t1850fmzia\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest1-t1850fmzia.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01+40": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01+40": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "161" ], - "x-ms-client-request-id": [ "1c61d202-d06d-4870-84a2-821420f0ddf3" ], + "x-ms-client-request-id": [ "8c4f6c00-6d8a-4a71-8bb6-1cd37d5325c5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1761,40 +1761,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ea64b6be-9251-4c71-8c39-a474f4ecf657" ], + "x-ms-request-id": [ "b58a9856-ddc6-4d89-83e4-02bc1bb573c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20e6f016-a1f6-4dee-b514-1fa4ccf5ac9b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "907793c0-1dbc-462e-9507-f10199321a14" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:907793c0-1dbc-462e-9507-f10199321a14" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c4378982-8531-4d0b-a5e4-1e1851e3c12a" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "dc599134-ac2a-40c7-947f-b51483cdad41" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013229Z:dc599134-ac2a-40c7-947f-b51483cdad41" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B368114DA212490B85D872F041F340AE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8CF5F72E94BD43C29C61550C1A11B3AE Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-d3t8hyrciu\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest1-t1850fmzia\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01+41": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "162" ], - "x-ms-client-request-id": [ "e4835208-1ea6-49d0-af5d-dc3c4d1b9fa6" ], + "x-ms-client-request-id": [ "b9c0be0b-d7b2-43ce-900d-5eeac8abdf4f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1806,41 +1806,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6538f5c4-d6ed-4f0c-8f50-0d65debc1c8d" ], + "x-ms-request-id": [ "bd0f9be7-15f0-464e-ba7a-1857b475eb93" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e08e093-e597-4704-9b7e-aae40ef29702" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/52453f36-8f3c-4940-93f6-8e8e4bef8365" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2384b35b-ea69-4951-a983-295360b48bbb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001422Z:2384b35b-ea69-4951-a983-295360b48bbb" ], + "x-ms-correlation-request-id": [ "158ce80e-59f0-4e5f-bd01-55780f1c2b37" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013230Z:158ce80e-59f0-4e5f-bd01-55780f1c2b37" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 84D02232A27449958EF6DB6D1D78D4F9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 432ED79076D5414B987C9D940822EC6C Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu/config/web\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia/config/web\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+42": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "163" ], - "x-ms-client-request-id": [ "4f6a5d9f-cf3c-41ba-8ae3-99371f8a9e18" ], + "x-ms-client-request-id": [ "1141b373-a064-4b24-a9d0-5f8938c653d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1852,40 +1852,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db993a07-54ee-4e8b-9b84-3e8ffe2bdf15" ], + "x-ms-request-id": [ "1c1ba36f-78d2-4967-a20e-b135d4dff09c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "edf0396b-3838-4914-a542-9ac4a56303a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001423Z:edf0396b-3838-4914-a542-9ac4a56303a7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ee6291e5-8c71-473a-90e4-538c61e632ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013230Z:ee6291e5-8c71-473a-90e4-538c61e632ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E5D8C1D64B940DAB428DDD5075141A4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 995EF9C29F404D29A9646256BC0B2597 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+43": { + "Get-AzFunctionAppSetting, Update-AzFunctionAppSetting, and Remove-AzFunctionAppSetting E2E+[NoContext]+Validate Get-AzFunctionAppSetting, Update-AzFunctionAppSetting and Delete-AzFunctionAppSetting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+43": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-d3t8hyrciu?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest1-t1850fmzia?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "164" ], - "x-ms-client-request-id": [ "0ae6375b-7314-42fd-aeb8-434112834bd3" ], + "x-ms-client-request-id": [ "bd9dac58-46e6-4346-b53f-bba6def8f6d6" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1896,20 +1896,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB57E35DAB5\"" ], + "ETag": [ "\"1DCBE52BCE3152B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cfeb18eb-cb55-45f0-afea-fef0513dc878" ], + "x-ms-request-id": [ "77dc4184-c9f4-4f33-973f-c1d908d09b8e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3dcc753b-8f5c-4f82-9e86-17fc17a3b3bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34e6d339-869d-47f2-8e07-d929e820ac38" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "7e1342a8-626a-48af-86cf-01d62504e4dc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001430Z:7e1342a8-626a-48af-86cf-01d62504e4dc" ], + "x-ms-correlation-request-id": [ "2078e69e-f7bc-4731-be34-aa0614f25226" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T013237Z:2078e69e-f7bc-4731-be34-aa0614f25226" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62E4481000A54037ABBE715280C0AB78 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FE34F88DD0C4113A9EECE2EECCDB0E7 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json index 603e852767a2..0f7cebaec9de 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-DotNetIsolated-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-DotNetIsolated-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4d40e95-4387-46ce-959a-d65f19a5bbfd" ], + "x-ms-request-id": [ "ceffd940-8395-43c8-a953-e38e37ddc025" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7446f4b1-3617-42b5-9c85-0ba9c74b87ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b47477bf-3992-4b85-8023-e03291cd29ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "71d5958d-bef1-4a46-b621-67ed452c1700" ], - "x-ms-routing-request-id": [ "CENTRALUS:20251117T182126Z:71d5958d-bef1-4a46-b621-67ed452c1700" ], + "x-ms-correlation-request-id": [ "637872a0-28c4-4c09-be37-dfd0f01d0f2a" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013239Z:637872a0-28c4-4c09-be37-dfd0f01d0f2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1BCA20D649864659AA2EDED00989F185 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28393678F5CD439982D4653ED14AFBE3 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -40,10 +40,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -59,42 +59,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28239dae-b6dc-4c7f-9529-024d1d312e4e" ], + "x-ms-request-id": [ "3a02451f-b60a-485d-b0a8-cd0582c9e528" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/622d0367-7ff3-4df9-9f5b-8344764a533d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/986053bb-3b0a-4a83-9f0a-5cebf28063ba" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e0ba4db7-c751-43d6-b7ac-fd5d9548a48c" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T182132Z:e0ba4db7-c751-43d6-b7ac-fd5d9548a48c" ], + "x-ms-correlation-request-id": [ "23039664-b4ca-44ae-ab0b-36534e5bb933" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013242Z:23039664-b4ca-44ae-ab0b-36534e5bb933" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D635CA856A7D460F8019B167F6453DF0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:21:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:21:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33296C975B984009AC531A6B5450E7FC Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:32:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:32:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52908,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52908\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:21:31.7566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68095,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68095\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:32:41.76\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "197" ], - "x-ms-client-request-id": [ "7d3a6772-630b-4f78-916f-123a0169f003" ], + "x-ms-unique-id": [ "168" ], + "x-ms-client-request-id": [ "9e7af55f-f819-4768-b9cf-8a7f9224b77e" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -105,41 +105,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf2cfa8a-f8b2-415d-967c-bb8d46167ea4" ], + "x-ms-request-id": [ "079aca61-606e-4a69-b3f0-3a18088d866e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "035a89b8-678d-4570-b771-0c816ce5c5ff" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T182203Z:035a89b8-678d-4570-b771-0c816ce5c5ff" ], + "x-ms-correlation-request-id": [ "76b08fe8-80f7-4155-b869-51a0177688f4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013312Z:76b08fe8-80f7-4155-b869-51a0177688f4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA9C8571257E457A8028A8C7F8BBC84B Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:02Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 965ABDB154CB469DB3CC4CA1EB1E5E23 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:12Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52908,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52908\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:21:31.7566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68095,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68095\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:32:41.76\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "198" ], - "x-ms-client-request-id": [ "7d3a6772-630b-4f78-916f-123a0169f003" ], + "x-ms-unique-id": [ "169" ], + "x-ms-client-request-id": [ "9e7af55f-f819-4768-b9cf-8a7f9224b77e" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -150,24 +150,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0277b73-455f-42df-aeb7-2f0e55e305c7" ], + "x-ms-request-id": [ "416097d8-e93f-47a8-8261-33d28268127e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bcc64948-d557-478e-929b-6ebdadb1404d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182203Z:bcc64948-d557-478e-929b-6ebdadb1404d" ], + "x-ms-correlation-request-id": [ "0342ba2c-dcad-4c92-ae1f-ee8ff162a97c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013312Z:0342ba2c-dcad-4c92-ae1f-ee8ff162a97c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E07C24F7ED640F2936BBAE33BE4FA9A Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A39E5B012FE4C0790777AE534072E62 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:12Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52908,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52908\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:21:31.7566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68095,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68095\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:32:41.76\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -178,12 +178,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "c1cbc5e4-cea1-4716-972d-611bb86a04fc" ], + "x-ms-unique-id": [ "170" ], + "x-ms-client-request-id": [ "761bce04-7173-4ece-a9c4-a38d15c56849" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -194,40 +194,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "e352f97d-1d46-4d51-a88a-3c7e139da40a", "66383dd6-8954-4f0c-93a1-9be99b1683d2", "7e5c874a-e0d8-4068-b937-b7ca9316bb45" ], + "x-ms-original-request-ids": [ "1d746673-3b49-4988-bae9-89da5301e228", "c10f0a59-48cf-47df-a06d-fd2d186c4b12", "9108fda4-0d9c-4bd1-ba5c-5a80a3bf5d67" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9eb998e4-1444-4460-8d19-e878c72b6129" ], - "x-ms-correlation-request-id": [ "9eb998e4-1444-4460-8d19-e878c72b6129" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182204Z:9eb998e4-1444-4460-8d19-e878c72b6129" ], + "x-ms-request-id": [ "a1157672-7bd5-4c7d-b925-473680fc0c9a" ], + "x-ms-correlation-request-id": [ "a1157672-7bd5-4c7d-b925-473680fc0c9a" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013313Z:a1157672-7bd5-4c7d-b925-473680fc0c9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B159A5C675AF460B8C6FE8DE0562DF6A Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1AA3318A847D42C6B267D43904C20F88 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:13Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/blobServices/default/containers/app-package-functionsflexdotnetisolatedw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/blobServices/default/containers/app-package-functionsflexdotnetisolated3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/blobServices/default/containers/app-package-functionsflexdotnetisolatedw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/blobServices/default/containers/app-package-functionsflexdotnetisolated3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "200" ], - "x-ms-client-request-id": [ "7b212635-ffce-4cb7-9aa6-95ca7acd21b6" ], + "x-ms-unique-id": [ "171" ], + "x-ms-client-request-id": [ "b3a5b0ea-afaf-44da-af9c-138ab8d49430" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -238,31 +238,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b8b8ca5d-c3ad-478c-b687-fde0b0889132" ], + "x-ms-request-id": [ "91f8f04d-51b2-4ec9-80a4-5a3b8b4a4982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3f8340c0-283b-4959-9538-a07b5ae584f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3910a190-4a59-4279-b56f-7e53b76e8e5a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a78f3bca-c713-4132-bacd-cc1717e951c4" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182204Z:a78f3bca-c713-4132-bacd-cc1717e951c4" ], + "x-ms-correlation-request-id": [ "dcb66a13-5e72-494a-a50c-06f6a4cae826" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013314Z:dcb66a13-5e72-494a-a50c-06f6a4cae826" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B19E0E6077A4D75AF330909250878B1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B846884742E42E29482E2D820F8BAA1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:13Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:e3bdfa36-d01e-0014-04ef-5728c6000000\\nTime:2025-11-17T18:22:04.8683485Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:77220925-c01e-0086-5e52-bea292000000\\nTime:2026-03-28T01:33:14.1085884Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/blobServices/default/containers/app-package-functionsflexdotnetisolatedw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/blobServices/default/containers/app-package-functionsflexdotnetisolated3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/blobServices/default/containers/app-package-functionsflexdotnetisolatedw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/blobServices/default/containers/app-package-functionsflexdotnetisolated3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -277,25 +277,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE2606365B8797\"" ], - "x-ms-request-id": [ "c2270f37-903d-4c78-9a52-ddda29722bbb" ], + "ETag": [ "\"0x8DE8C69FB36F6D6\"" ], + "x-ms-request-id": [ "99c3e159-ce64-4caa-a398-fd23c71ca3a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f19c52e8-2d0a-48cc-aa14-b2a403cb0471" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f02f4fe6-917e-4528-8455-52dee7b03df7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "a997fdf9-305e-4b61-be66-ca8ef524b25d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182205Z:a997fdf9-305e-4b61-be66-ca8ef524b25d" ], + "x-ms-correlation-request-id": [ "a1e48eaa-3339-49cd-9c00-f4a7fbb61053" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013314Z:a1e48eaa-3339-49cd-9c00-f4a7fbb61053" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92CFF3278AE64994BB2F24395257619B Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 11A3E6FC02B1481C85607E1A1FE4CD98 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:14Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/blobServices/default/containers/app-package-functionsflexdotnetisolatedw8x9-0000000\",\"name\":\"app-package-functionsflexdotnetisolatedw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/blobServices/default/containers/app-package-functionsflexdotnetisolated3wro-0000000\",\"name\":\"app-package-functionsflexdotnetisolated3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -306,12 +306,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "202" ], - "x-ms-client-request-id": [ "8105f6e8-3bbf-447b-984f-3a0b75849067" ], + "x-ms-unique-id": [ "173" ], + "x-ms-client-request-id": [ "8387f77a-21c9-4aa1-898a-28a2dde14f01" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -322,40 +322,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "cf453fbe-d5c8-45b1-9ee9-199d0db9be51", "147972fb-faef-416a-9969-3c87cd8c9542", "390be01f-fe9b-4e6e-9d6f-ddbf42161948" ], + "x-ms-original-request-ids": [ "7327ae9f-9235-4efb-83d6-582a4f3b9222", "2d78ee6d-b930-413a-b251-ac4b42a1586e", "c31a9706-0bc7-4a5c-9921-6726475c2605" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3336074e-0952-4570-adcc-d2b06d94c370" ], - "x-ms-correlation-request-id": [ "3336074e-0952-4570-adcc-d2b06d94c370" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182206Z:3336074e-0952-4570-adcc-d2b06d94c370" ], + "x-ms-request-id": [ "80349dd3-8fb2-4695-bb57-143dd491a763" ], + "x-ms-correlation-request-id": [ "80349dd3-8fb2-4695-bb57-143dd491a763" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013315Z:80349dd3-8fb2-4695-bb57-143dd491a763" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8D6D3E1817340DA839E87DAE2428640 Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84695C9708734C93839EB8F2F56DDA7C Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:14Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "93123be6-8f3a-4605-af84-40c2fdac7cf8" ], + "x-ms-unique-id": [ "174" ], + "x-ms-client-request-id": [ "31bb474e-fc90-4996-b365-aa1e168c330e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -366,16 +366,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "720dcd54-b428-4fc5-a744-7cf923ccf619" ], + "x-ms-request-id": [ "11708e1a-235b-4633-b351-7e4e22619976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3f115437-577f-4aa9-a282-f9d118ea76e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6135ae97-35fd-4c63-9233-3dde9d46e992" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3f1792e8-5e02-42ba-9c18-4ab16cd68a90" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182207Z:3f1792e8-5e02-42ba-9c18-4ab16cd68a90" ], + "x-ms-correlation-request-id": [ "71e3f787-ffc5-4b83-b887-75b23f5db8d7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013315Z:71e3f787-ffc5-4b83-b887-75b23f5db8d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 695E78D44D5043919120BD106791B3B6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B01A1A7F5509492089C00E8D4B481871 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:15Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -393,12 +393,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "204" ], - "x-ms-client-request-id": [ "979f74e3-f5b5-45b1-9159-140d10bbdc64" ], + "x-ms-unique-id": [ "175" ], + "x-ms-client-request-id": [ "51633ecb-1dfb-419b-8023-8a917bbb57fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -409,40 +409,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "3401d631-ec3e-4137-95da-30c8a24caf56", "cf2bfd5b-c00c-4fab-b47e-84162f349040", "27aa82b6-5107-4c73-a4c0-e422d7aa0b7a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "93cd8966-157d-473a-934a-4bdb728b4f62" ], - "x-ms-correlation-request-id": [ "93cd8966-157d-473a-934a-4bdb728b4f62" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182207Z:93cd8966-157d-473a-934a-4bdb728b4f62" ], + "x-ms-original-request-ids": [ "59a2fbb3-d96f-4be0-82ee-2c3c6865c9e3", "e604d9d6-55d2-4e95-a95b-57df99b71d3f", "dfa9e5a7-55c7-426e-af31-211347a2c85e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "1f06fb65-9ce9-40b4-91b0-e0801ec9c245" ], + "x-ms-correlation-request-id": [ "1f06fb65-9ce9-40b4-91b0-e0801ec9c245" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013316Z:1f06fb65-9ce9-40b4-91b0-e0801ec9c245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02B180817DC64FF4B6FC0CA3A80323AD Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABFEE9E9B24E439CA29EC33EEF9B26DD Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:15Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "205" ], - "x-ms-client-request-id": [ "761a7d74-d9c0-4cb1-bd04-3ba9130d43b9" ], + "x-ms-unique-id": [ "176" ], + "x-ms-client-request-id": [ "ff18decf-6fe3-4185-ae19-0d135f21766e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -453,16 +453,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a5481b32-63a4-43f3-a943-86767fb4e73b" ], + "x-ms-request-id": [ "ac8fa797-456e-43f3-90c3-c96997796e26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/89352b2f-a411-4055-b528-e62f07aead6f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4730193b-bcb3-4ae6-a517-8ed34f082eb4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a3e0b407-8994-4b55-b41f-1407b950037e" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T182208Z:a3e0b407-8994-4b55-b41f-1407b950037e" ], + "x-ms-correlation-request-id": [ "b80ca1ac-4218-4936-862f-8ab324543b29" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013316Z:b80ca1ac-4218-4936-862f-8ab324543b29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C8F89B0B2F74C29BAC8CE72241F6CC6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83956CE7EC5B4C53BA5AC264D7926B14 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:16Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -473,10 +473,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-DotNetIsolated-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -496,30 +496,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d1da3da3-df3c-472c-bdbc-4370202b9cde" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f8a9bed0-5e54-4cb0-adb7-58bc3bcb88b2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "733f3bb6-5f6d-461b-830a-4919205717da" ], - "x-ms-correlation-request-id": [ "733f3bb6-5f6d-461b-830a-4919205717da" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182223Z:733f3bb6-5f6d-461b-830a-4919205717da" ], + "x-ms-request-id": [ "51d5d38d-eb09-4430-a9e7-8bea322175d9" ], + "x-ms-correlation-request-id": [ "51d5d38d-eb09-4430-a9e7-8bea322175d9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013329Z:51d5d38d-eb09-4430-a9e7-8bea322175d9" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED9D88C82CB2456CB28A2B9F868779AF Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B874D9A56C7C4B47B77550ADC225ACB6 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:16Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0504c62d-0000-0200-0000-691b67df0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-w8x9\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-w8x9\",\r\n \"AppId\": \"d6367ac1-db56-4e2c-a641-d9b692b06f29\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"17f77b21-0beb-4175-9463-925d912cda3a\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:22:10.8748461+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-w8x9_d6367ac1-db56-4e2c-a641-d9b692b06f29_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8300be5a-0000-0200-0000-69c72fe90000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-3wro\",\r\n \"name\": \"Functions-Flex-DotNetIsolated-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-DotNetIsolated-3wro\",\r\n \"AppId\": \"e42f26b9-8136-4e63-b5b2-50b1856f971f\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ca64bb30-d9a5-4ad5-ae07-c548157d84ae\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-DotNetIsolated-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:33:18.6373455+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-3wro_e42f26b9-8136-4e63-b5b2-50b1856f971f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappdotnetisolatedsaw.blob.core.windows.net/app-package-functionsflexdotnetisolatedw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"dotnet-isolated\",\r\n \"version\": \"8.0\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappdotnetisolatedsa3.blob.core.windows.net/app-package-functionsflexdotnetisolated3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"dotnet-isolated\",\r\n \"version\": \"8.0\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -533,43 +533,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF2051BC20\"" ], + "ETag": [ "\"1DCBE52E37818CB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f47cbac7-d3e9-42d3-bd32-b555147dfe57" ], + "x-ms-request-id": [ "c32beda9-9a4a-4507-935d-89886c50fe01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a6802412-4bcb-4556-9ed4-e558bc40c884" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9d06086a-f38b-4a49-a886-5efb30568749" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "2c3c7095-3ec2-4c2c-834a-819596adabce" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182248Z:2c3c7095-3ec2-4c2c-834a-819596adabce" ], + "x-ms-correlation-request-id": [ "5670966c-e940-4c13-9bb9-0837b64e7885" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013353Z:5670966c-e940-4c13-9bb9-0837b64e7885" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EE4BC6D39164AB596287D93857268EB Ref B: MWH011020807031 Ref C: 2025-11-17T18:22:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:22:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDC52F293B17412C966C8812510E5C36 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:33:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:33:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9628" ], + "Content-Length": [ "9790" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-DotNetIsolated-w8x9\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:22:25.8033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/app-package-functionsflexdotnetisolatedw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-w8x9\\\\$Functions-Flex-DotNetIsolated-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-DotNetIsolated-3wro\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:33:31.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/app-package-functionsflexdotnetisolated3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-3wro\\\\$Functions-Flex-DotNetIsolated-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "208" ], - "x-ms-client-request-id": [ "69787e2c-5dc7-498e-a67b-0e0cbfb00ecd" ], + "x-ms-unique-id": [ "179" ], + "x-ms-client-request-id": [ "5a151a1b-2bc1-412b-b784-18f1a627bf68" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -579,42 +579,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF2D4907B5\"" ], + "ETag": [ "1DCBE52EF8F1680" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2a9d6e2-5d64-4754-b56c-d931b6b09223" ], + "x-ms-request-id": [ "70d612c4-2996-4b39-8e51-b70599a05032" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5030f3d3-fee9-424f-a31a-df6ae334a8c6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182318Z:5030f3d3-fee9-424f-a31a-df6ae334a8c6" ], + "x-ms-correlation-request-id": [ "3cf2c8ec-e8d7-4e53-bf05-61fb55d43030" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013423Z:3cf2c8ec-e8d7-4e53-bf05-61fb55d43030" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A0EBEE22F7F434A94D2C2F46382A163 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61182E88AB6F47A39B56A1D5C363482E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9605" ], + "Content-Length": [ "9586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-DotNetIsolated-w8x9\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:22:48.2833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/app-package-functionsflexdotnetisolatedw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-w8x9\\\\$Functions-Flex-DotNetIsolated-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-DotNetIsolated-3wro\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:33:53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/app-package-functionsflexdotnetisolated3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-3wro\\\\$Functions-Flex-DotNetIsolated-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "209" ], - "x-ms-client-request-id": [ "24d5d04e-cacf-4354-aea7-35bd58dcf160" ], + "x-ms-unique-id": [ "180" ], + "x-ms-client-request-id": [ "96b10fe4-752b-4f28-8a63-c8e701e7b043" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -625,42 +625,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF2D4907B5\"" ], + "ETag": [ "1DCBE52EF8F1680" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95379b82-e56f-43e8-9668-70f70e536e8b" ], + "x-ms-request-id": [ "25662e75-8ff1-48b7-9cd5-b636b51129fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db6a4048-febe-4925-93f6-2b73a77a1f95" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182319Z:db6a4048-febe-4925-93f6-2b73a77a1f95" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3c9a3c7b-e693-402e-8675-cddf6801781b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013424Z:3c9a3c7b-e693-402e-8675-cddf6801781b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41A3C118ECAA4D059C2EF2779BA44252 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 147376C3F80E40669653AE1A5F47CD24 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9605" ], + "Content-Length": [ "9586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-DotNetIsolated-w8x9\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:22:48.2833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/app-package-functionsflexdotnetisolatedw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-w8x9\\\\$Functions-Flex-DotNetIsolated-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-DotNetIsolated-3wro\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:33:53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/app-package-functionsflexdotnetisolated3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-3wro\\\\$Functions-Flex-DotNetIsolated-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "210" ], - "x-ms-client-request-id": [ "6419bd2c-a739-46c8-9806-8a183ad2474c" ], + "x-ms-unique-id": [ "181" ], + "x-ms-client-request-id": [ "7f6fd92b-ee32-404a-b796-19105e011193" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -672,40 +672,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8fbd0b88-0f79-4813-b117-db86d07bad80" ], + "x-ms-request-id": [ "c5fb1892-14c4-45b9-85f7-66051ef34351" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/734578fe-9f69-4072-a25c-02efc12c9b8e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a46b7122-238c-4ac7-b752-065d2b628898" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "859a2c69-b95f-4142-b6be-5908505ba198" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182319Z:859a2c69-b95f-4142-b6be-5908505ba198" ], + "x-ms-correlation-request-id": [ "11387817-61ec-4947-b358-ee93defa85f8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013424Z:11387817-61ec-4947-b358-ee93defa85f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ACAF4D15B05B4832857B26646685EEFD Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8D22AC58699A4144BB619D9F81032961 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "211" ], - "x-ms-client-request-id": [ "7ab0fb3a-c6c5-4cbd-adc6-b16bf7d73001" ], + "x-ms-unique-id": [ "182" ], + "x-ms-client-request-id": [ "6a28438e-731a-433e-8796-6224806ac3ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -717,41 +717,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e72c20d-f8c7-4f9c-a23d-9a0528f96355" ], + "x-ms-request-id": [ "040f22cb-ab5e-4f82-b2ce-2848554639ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/51ff87d1-5eaf-495d-a6f4-3c280ff5695a" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "404a3901-d870-4b2b-bf6a-dfd7f76a0f63" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182320Z:404a3901-d870-4b2b-bf6a-dfd7f76a0f63" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/97626bf0-e3c5-48d1-8b3d-24de75af6cc5" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "902105ad-63fa-49ca-abd5-500747e0f9f6" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013425Z:902105ad-63fa-49ca-abd5-500747e0f9f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED4BADFDB214448CA74009B546291761 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37F65D6008D04CAC9C63C28EFE2F0CEC Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "f4eb8966-4f79-410d-8ac4-8e2177d044cc" ], + "x-ms-unique-id": [ "183" ], + "x-ms-client-request-id": [ "e502cc9d-1097-416a-b9d9-b60661077aab" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -763,40 +763,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6cffecaf-d5e5-40dd-a34a-f8dbccf410d1" ], + "x-ms-request-id": [ "bb4c52bd-151e-4219-b523-7c3bbc3dc5a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0535c84a-0ee0-426f-a54b-d26a86a53721" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182320Z:0535c84a-0ee0-426f-a54b-d26a86a53721" ], + "x-ms-correlation-request-id": [ "6aaa3f17-dfb3-4bb2-a93e-db1eacc17d94" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013425Z:6aaa3f17-dfb3-4bb2-a93e-db1eacc17d94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9AFF3C8500914B159562084E30F8A7C4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 093124F96C474A1E987B3B5AC8413429 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52908,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52908\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:21:31.7566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68095,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68095\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:32:41.76\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "213" ], - "x-ms-client-request-id": [ "3fcf50e6-043b-4b09-9e1a-e416219182cf" ], + "x-ms-unique-id": [ "184" ], + "x-ms-client-request-id": [ "6f744e5b-6d03-408b-80ce-4b7a28845fa9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -808,40 +808,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32a858f6-b1ac-4f7b-bd10-f731ab88eec8" ], + "x-ms-request-id": [ "54dcc37d-f1e1-4991-b778-3afa20ad154b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8ab3e59d-b8f6-43b1-a604-646960f4a67e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cedc9f02-41c3-4ac0-b94c-fbf3dfaf2b64" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1bacfedd-eb69-4ccc-860d-45b22ad4b747" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182320Z:1bacfedd-eb69-4ccc-860d-45b22ad4b747" ], + "x-ms-correlation-request-id": [ "9cbb3862-8985-40e9-84a8-3bdf5185ed9b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013425Z:9cbb3862-8985-40e9-84a8-3bdf5185ed9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE5580C6EAD64E9E97F4C9D143536C41 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58D47C6ECA7541C1BDEC25F51AD41C8F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "214" ], - "x-ms-client-request-id": [ "861a223b-a4e4-4868-a5c7-a4b070aae670" ], + "x-ms-unique-id": [ "185" ], + "x-ms-client-request-id": [ "579244f5-2b99-454f-b3fe-95e1e3f6d329" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -852,42 +852,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF2D4907B5\"" ], + "ETag": [ "1DCBE52EF8F1680" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e5eaeab-a927-43f9-a9d8-446dfeb64eea" ], + "x-ms-request-id": [ "9d369b51-38fb-4ed0-b18c-920f9d887f79" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9958f3e3-ab70-4c64-a003-871e46bd96ad" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182321Z:9958f3e3-ab70-4c64-a003-871e46bd96ad" ], + "x-ms-correlation-request-id": [ "9a477613-3b3e-4c91-8d58-124e098b62f9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013426Z:9a477613-3b3e-4c91-8d58-124e098b62f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89CE71DFC70743C692A1A69DAC308453 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AAB91C9B30DB48E3B23CEC3DDCEC3201 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9605" ], + "Content-Length": [ "9586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-DotNetIsolated-w8x9\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:22:48.2833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/app-package-functionsflexdotnetisolatedw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-w8x9\\\\$Functions-Flex-DotNetIsolated-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-DotNetIsolated-3wro\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:33:53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/app-package-functionsflexdotnetisolated3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-3wro\\\\$Functions-Flex-DotNetIsolated-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "215" ], - "x-ms-client-request-id": [ "86e8a6e8-ef2b-47a2-b775-3d57f6047c7d" ], + "x-ms-unique-id": [ "186" ], + "x-ms-client-request-id": [ "143c7d80-fbb3-49c0-a390-f0a12ac8fa32" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -899,40 +899,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbe9639a-2117-4de4-9673-1389f22ab3e0" ], + "x-ms-request-id": [ "fba0564e-c450-4d7a-a3fa-d80deab8bb58" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6f8e0e66-1b17-40a1-8c97-ca987b195588" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1ac13250-a5fd-4475-a622-cf516398ea87" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c48844ac-665e-456f-87f3-eb463fc93928" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182321Z:c48844ac-665e-456f-87f3-eb463fc93928" ], + "x-ms-correlation-request-id": [ "361110b9-2909-45af-8a85-bd7fba78fcb5" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013426Z:361110b9-2909-45af-8a85-bd7fba78fcb5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AFB67B393EC405E93CF1813B64AA02A Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BFAED47EE6E6400EB4B07454C6B7B842 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "216" ], - "x-ms-client-request-id": [ "0d360ca6-b50b-409c-b7fb-a4203aeac9dd" ], + "x-ms-unique-id": [ "187" ], + "x-ms-client-request-id": [ "a472cab2-c181-4fd9-a813-7ee14c97e8ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -944,41 +944,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5d925eab-f8a4-4c9a-8af1-bec3981d9a3d" ], + "x-ms-request-id": [ "bdbac7a8-30fe-44f6-85ea-287b03f8fa73" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/af75c9f6-bab0-47cf-be9c-b8412ab5ab75" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cc1d7960-dae4-40ca-961e-f4589891ff35" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "a20ef208-7e4e-48c1-afb9-18d7a4b73154" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182321Z:a20ef208-7e4e-48c1-afb9-18d7a4b73154" ], + "x-ms-correlation-request-id": [ "9c323071-857a-4d75-90b1-f2973dd0a9a7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013427Z:9c323071-857a-4d75-90b1-f2973dd0a9a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFA2A28B153949B0AF969660C873908B Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C45A6898215F400DAA7DE3EB5C96B4D5 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "217" ], - "x-ms-client-request-id": [ "ef51db60-c4fc-47d3-bc4b-37cbff579abf" ], + "x-ms-unique-id": [ "188" ], + "x-ms-client-request-id": [ "4ea8ae55-7277-49a8-99fa-b98b79013836" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -989,42 +989,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF2D4907B5\"" ], + "ETag": [ "1DCBE52EF8F1680" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd84b241-4129-42a2-bfef-bf6821e18df8" ], + "x-ms-request-id": [ "a09e31a0-71de-4faa-8fff-c522907c40dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "dbfa84f0-a715-4224-b0e0-210eff5fd7dd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182322Z:dbfa84f0-a715-4224-b0e0-210eff5fd7dd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "26bbbbac-508a-46b2-97bc-d501d2d2ba1e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013427Z:26bbbbac-508a-46b2-97bc-d501d2d2ba1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DD5F645B42544E69EB7023F7F141ABA Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFDD8075D8304F50B4DBA8C50BFDC77E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9605" ], + "Content-Length": [ "9586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-DotNetIsolated-w8x9\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:22:48.2833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/app-package-functionsflexdotnetisolatedw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-w8x9\\\\$Functions-Flex-DotNetIsolated-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-dotnetisolated-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-DotNetIsolated-3wro\",\"repositorySiteName\":\"Functions-Flex-DotNetIsolated-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-dotnetisolated-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:33:53\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/app-package-functionsflexdotnetisolated3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"dotnet-isolated\",\"version\":\"8.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-DotNetIsolated-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-DotNetIsolated-3wro\\\\$Functions-Flex-DotNetIsolated-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-dotnetisolated-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "ed819ef0-d423-4891-9431-669410ec0dfb" ], + "x-ms-unique-id": [ "189" ], + "x-ms-client-request-id": [ "02e71c82-c4c7-4dd0-bf00-b4c4c687a5fd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1036,40 +1036,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6769f25e-eba8-4ac5-8e07-fd8f3ec582f2" ], + "x-ms-request-id": [ "c3ac4f91-0f7f-49f7-8867-1b48712ba33e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fc1a0563-5a9f-4847-a388-bc374758ead7" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5403b77f-579b-4c34-97df-2199c516b663" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182322Z:5403b77f-579b-4c34-97df-2199c516b663" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/01da8351-193f-4266-b873-68abf269d216" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "946e2236-5517-438f-965c-bac8d5f30c03" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013427Z:946e2236-5517-438f-965c-bac8d5f30c03" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F3FAD2BD0264D16936DA1A52984C4D9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC865B0DE3D64434B14CEF923B9F0085 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1027" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "3596f6f9-9095-4da2-ae8a-92146fc7ee44" ], + "x-ms-unique-id": [ "190" ], + "x-ms-client-request-id": [ "ea783605-42ee-40cd-bb82-680fe22db3cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1081,41 +1081,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ba93d76-f6be-4b8f-a6a2-e53930a0d169" ], + "x-ms-request-id": [ "8a4d9adf-368e-4aed-a35b-129703306b01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/73bdaa40-78a7-4668-bf5f-fd3d02c4611c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "350e955a-815a-44ba-a92b-6aa454f7e672" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182322Z:350e955a-815a-44ba-a92b-6aa454f7e672" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/00b1bba9-8376-4019-9ab5-ffec81ed166c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "29d88cc5-aa43-4913-aa3a-378f4b05df60" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013428Z:29d88cc5-aa43-4913-aa3a-378f4b05df60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 887303ACF6AB4742A1954497A6A9FE50 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 660449EBA11449BCB2014259F58C3BCF Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro/config/web\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "220" ], - "x-ms-client-request-id": [ "b4167c36-db55-4373-a06f-5616e908d626" ], + "x-ms-unique-id": [ "191" ], + "x-ms-client-request-id": [ "303b2347-c1dc-441c-9367-b3b729aada4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1127,40 +1127,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "913f5918-1285-4238-b4e5-0c5d58440f1f" ], + "x-ms-request-id": [ "6f894a3a-8212-4d10-9fc7-b1b255651cb8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b3121a1c-2709-4d6d-af96-0142ed1d9005" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182323Z:b3121a1c-2709-4d6d-af96-0142ed1d9005" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "18d8b4f1-605f-4279-a888-3a3c8e5b56a6" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013428Z:18d8b4f1-605f-4279-a888-3a3c8e5b56a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A76C1B77AFB4C4A8F355BD0820574B3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ABE29AA46AF74A0085E13E91DC42689F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52908,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52908\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:21:31.7566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68095,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68095\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:32:41.76\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create DotNet-Isolated Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-DotNetIsolated-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "221" ], - "x-ms-client-request-id": [ "b245bc66-fd3f-4e02-a958-8ab1ad8b6da0" ], + "x-ms-unique-id": [ "192" ], + "x-ms-client-request-id": [ "43c08f69-cba8-4edf-891b-8da070a7ab7f" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1171,20 +1171,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF2D4907B5\"" ], + "ETag": [ "\"1DCBE52EF8F1680\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f7c6d7b8-834e-4ff3-8d6a-a75547f6a56d" ], + "x-ms-request-id": [ "fd28c13d-8cb8-4e5d-aac2-a12c2b5fda78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/428ceec7-59c7-46e7-a01b-546b4b34fce5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8557ef95-b990-4b15-8281-9b1a9f308db9" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "918c6435-8dc8-42da-a5d8-03209709a82e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182340Z:918c6435-8dc8-42da-a5d8-03209709a82e" ], + "x-ms-correlation-request-id": [ "4babbd3d-e8c2-4566-bac7-8a68cd248194" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013448Z:4babbd3d-e8c2-4566-bac7-8a68cd248194" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E97C9EE2C354B67B4EF9958C7E0BBD2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A9BAAB1E8A846D2AE0C76E5C4AFD7A0 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1198,7 +1198,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Node-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Node-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1213,18 +1213,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9afc4aab-bfbc-4518-9f0a-ab10e94d72d4" ], + "x-ms-request-id": [ "89dcfac2-fa38-4cb9-b71d-45bac021063c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e895488e-8ccf-4431-9a00-3f9e936de75f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/cdb3794d-93d4-4e0d-b86b-402e77197374" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4221c12c-5c9e-4028-82e3-ddb6cf7033f3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182340Z:4221c12c-5c9e-4028-82e3-ddb6cf7033f3" ], + "x-ms-correlation-request-id": [ "e681cc99-8589-4385-bb95-2159feb53f93" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013449Z:e681cc99-8589-4385-bb95-2159feb53f93" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34A227CF744B44D1ABAC23861D37EB18 Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:40Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 867EBF97FB5C42CA8F460A28A84FA8F1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1235,10 +1235,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1254,42 +1254,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b13ecc04-a851-462b-bc31-8e94144687f8" ], + "x-ms-request-id": [ "53b42683-ea57-4d73-9783-ed128ca33aad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c4324c56-5d0e-4c11-85e6-12d0ab02c66d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/54da7019-80d8-4ff7-a6ec-3722fbca5949" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3cbec861-6fc0-4bfa-9653-fe0442c883af" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182346Z:3cbec861-6fc0-4bfa-9653-fe0442c883af" ], + "x-ms-correlation-request-id": [ "1d50c914-3f5d-465c-869c-4c37b1a9ab9d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013452Z:1d50c914-3f5d-465c-869c-4c37b1a9ab9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D1976D98BD34D7A9C85C9630BA2C70C Ref B: MWH011020807031 Ref C: 2025-11-17T18:23:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:23:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83DDBB03C72E4244AE626B5718929872 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:34:49Z" ], + "Date": [ "Sat, 28 Mar 2026 01:34:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1901" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62354,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62354\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:23:46.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68096,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68096\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:34:51.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "225" ], - "x-ms-client-request-id": [ "4e54c1bb-9826-4978-8a0d-1bf462baeef5" ], + "x-ms-unique-id": [ "196" ], + "x-ms-client-request-id": [ "b8681ef5-0a74-4110-bf46-8afb0fa67240" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1300,41 +1300,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7891b68f-fa45-4985-ac83-57bed54f88c6" ], + "x-ms-request-id": [ "82128170-7439-4da2-99b8-fead183d391d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f484e3ce-f52c-4260-953d-24db12e43057" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182416Z:f484e3ce-f52c-4260-953d-24db12e43057" ], + "x-ms-correlation-request-id": [ "c6dfeb5a-289e-4963-b257-51930f5021a9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013522Z:c6dfeb5a-289e-4963-b257-51930f5021a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7D713870AA84CE5BB0201B17399535B Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B0C66B0354304E77B727605E3AC72DD4 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:22Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62354,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62354\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:23:46.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68096,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68096\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:34:51.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "226" ], - "x-ms-client-request-id": [ "4e54c1bb-9826-4978-8a0d-1bf462baeef5" ], + "x-ms-unique-id": [ "197" ], + "x-ms-client-request-id": [ "b8681ef5-0a74-4110-bf46-8afb0fa67240" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1345,24 +1345,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e27cac3-c390-4177-8070-8030937d103d" ], + "x-ms-request-id": [ "762bfe2b-84bd-4e38-ab49-354dcdb03b9d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "705a52cb-c401-43ad-bcc2-17a2cfd7fdb7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182417Z:705a52cb-c401-43ad-bcc2-17a2cfd7fdb7" ], + "x-ms-correlation-request-id": [ "b85c31da-5d07-42a3-a39b-cf498b5f07ff" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013523Z:b85c31da-5d07-42a3-a39b-cf498b5f07ff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 636AC06CD5524AA5AB3C9EBBED116ABF Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD5C07B9BD9D4521A59C7B07659478F4 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:22Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62354,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62354\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:23:46.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68096,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68096\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:34:51.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -1373,12 +1373,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "227" ], - "x-ms-client-request-id": [ "625923f8-7a8b-4c27-bd33-9205b5ae9293" ], + "x-ms-unique-id": [ "198" ], + "x-ms-client-request-id": [ "77eb5ecc-3446-4add-a785-c27af849de78" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1389,40 +1389,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d683ac31-ed04-4841-ba9a-f6545ee4fd2b", "a15eb769-2ab5-4cf0-9ffc-822a67467430", "9b37dad9-77c5-4a66-88c8-6e6ea9d3d170" ], + "x-ms-original-request-ids": [ "5bfc98a7-e405-45fc-bf23-b9dd23b44910", "c3563fc2-ae55-494a-976c-3296cdc8e0b9", "305b5f02-363e-417e-8901-6ae2e6a975c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4d3122b7-d9e1-41a0-bece-42fb790b7005" ], - "x-ms-correlation-request-id": [ "4d3122b7-d9e1-41a0-bece-42fb790b7005" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182417Z:4d3122b7-d9e1-41a0-bece-42fb790b7005" ], + "x-ms-request-id": [ "e345a120-0adc-4fd6-8d64-439bda066e89" ], + "x-ms-correlation-request-id": [ "e345a120-0adc-4fd6-8d64-439bda066e89" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013523Z:e345a120-0adc-4fd6-8d64-439bda066e89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8AC5AD4CBDB42C29DD6073DDD799CD8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:17Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 644A24EEAAEC4498B7CFCA7E3CBC9CF0 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsflexnodew8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsflexnode3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsflexnodew8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsflexnode3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "228" ], - "x-ms-client-request-id": [ "161cd370-e5e7-4836-8b45-a56f6a601379" ], + "x-ms-unique-id": [ "199" ], + "x-ms-client-request-id": [ "665a20ae-bb42-40d9-8d3b-2b1eec983a92" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1433,31 +1433,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "d99c7674-8541-4a41-8032-9377abb18afd" ], + "x-ms-request-id": [ "e568710e-40db-4a29-9bb7-a295b88b3929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/18d283f6-c7a0-43df-9d57-a20aefc2d2f4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/540e1764-d61c-4530-b18c-fab388da105e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4695b411-561e-457f-b40b-b793bd7a3290" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182418Z:4695b411-561e-457f-b40b-b793bd7a3290" ], + "x-ms-correlation-request-id": [ "9f4c427a-fe6f-44ab-b227-e7672ced9486" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013523Z:9f4c427a-fe6f-44ab-b227-e7672ced9486" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 149F32FA1C8447D7990655EB4CBDCE4C Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F834234DB1574099998ABCA4339E2651 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:9ef55aa5-f01e-0019-60ef-5779ba000000\\nTime:2025-11-17T18:24:18.3640945Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:b9f39627-401e-0077-5d53-bef0f4000000\\nTime:2026-03-28T01:35:23.9343975Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsflexnodew8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsflexnode3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsflexnodew8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsflexnode3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1472,25 +1472,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE260685C2FA11\"" ], - "x-ms-request-id": [ "45e55c70-2f94-4213-9c1b-b9db35919c3e" ], + "ETag": [ "\"0x8DE8C6A48873570\"" ], + "x-ms-request-id": [ "eccf1bd2-47d0-424f-8912-49a503199e81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/89dc04a0-fa8d-4115-8ca1-7e70813136b9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3bdeb4a0-6284-4311-9c37-eb9fbc645e36" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "5b860e9c-036a-4331-a796-c202dec1ecfe" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182418Z:5b860e9c-036a-4331-a796-c202dec1ecfe" ], + "x-ms-correlation-request-id": [ "6866cbc0-48c9-4f2a-8ea3-728e47ebdeae" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013524Z:6866cbc0-48c9-4f2a-8ea3-728e47ebdeae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A2BFE4E833D45ECB254266BBA5098DC Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A1456F905D2E42C3ADB77791943C796B Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "440" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsflexnodew8x9-0000000\",\"name\":\"app-package-functionsflexnodew8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsflexnode3wro-0000000\",\"name\":\"app-package-functionsflexnode3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -1501,12 +1501,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "a2a729de-80f8-4ba0-a36a-1b9e126c21b4" ], + "x-ms-unique-id": [ "201" ], + "x-ms-client-request-id": [ "5dcfaef0-5b72-42d6-bad9-9fb29c22d37f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1517,40 +1517,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "19c574c2-d9da-4ae9-84d5-5dc30b82f6be", "62132112-70a4-424c-9f2b-c0594606e2cc", "f04abb15-16bc-456b-933b-252be4195186" ], + "x-ms-original-request-ids": [ "9e0ac6e5-ceb8-4651-80ac-d927a8a39d2c", "669508a9-eaa6-4247-8293-e4bf236e8df1", "b7ca41d9-a71a-425e-8627-574fd8c176b9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b19d0d39-6ada-466e-a50a-aca04eb3a8d9" ], - "x-ms-correlation-request-id": [ "b19d0d39-6ada-466e-a50a-aca04eb3a8d9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182419Z:b19d0d39-6ada-466e-a50a-aca04eb3a8d9" ], + "x-ms-request-id": [ "66753713-243c-45cc-b141-226c0dc048b5" ], + "x-ms-correlation-request-id": [ "66753713-243c-45cc-b141-226c0dc048b5" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013525Z:66753713-243c-45cc-b141-226c0dc048b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE57AD953F1749CB984CE692518902B9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F80925E7B1174241A8B868B01DD45F7F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "231" ], - "x-ms-client-request-id": [ "7d660255-a13d-4d82-9350-46df70a62687" ], + "x-ms-unique-id": [ "202" ], + "x-ms-client-request-id": [ "598bd47a-9700-4737-8183-4af4b213a2c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1561,16 +1561,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "007a3d5b-9865-435e-ad04-1763ed10ac8d" ], + "x-ms-request-id": [ "b179eeb2-c667-40a5-a585-09bb37d3b618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d9ce2509-d620-4047-bdee-5c47cc4254c3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/592edd7b-3de6-4b93-9329-4c4af6a83c86" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "420ab122-9ea8-4d0c-8a7d-4bff10888617" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182420Z:420ab122-9ea8-4d0c-8a7d-4bff10888617" ], + "x-ms-correlation-request-id": [ "33e0a054-67ae-4d14-b4a1-548ff378f8dc" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013525Z:33e0a054-67ae-4d14-b4a1-548ff378f8dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 187B11432F604E358F07AA09138E981D Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 577C41AD0C734E4CB1C961249F9B282B Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1588,12 +1588,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "232" ], - "x-ms-client-request-id": [ "615aaacd-6d38-413e-b19d-4a0b829e4767" ], + "x-ms-unique-id": [ "203" ], + "x-ms-client-request-id": [ "b0d7f1b9-1ac0-4f6c-ac5c-fb1907bf1235" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1604,40 +1604,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8b58079c-b042-44d3-ba54-2a2aad00bb7a", "a43203c6-98ba-4f5b-a73b-f24d2c05884f", "ad5c2c0f-20e1-4881-9786-45a763b80f85" ], + "x-ms-original-request-ids": [ "f7ced290-0b11-4931-baa4-758f5013372c", "846bf736-ce83-4b3a-b5eb-a860452cd340", "a2eb9621-e7c8-4375-a434-653a608a5bf3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3900594c-d60f-4728-a437-6782334663ae" ], - "x-ms-correlation-request-id": [ "3900594c-d60f-4728-a437-6782334663ae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182420Z:3900594c-d60f-4728-a437-6782334663ae" ], + "x-ms-request-id": [ "dc6ad930-4cc5-40b3-8f0d-dce4d71fdade" ], + "x-ms-correlation-request-id": [ "dc6ad930-4cc5-40b3-8f0d-dce4d71fdade" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013526Z:dc6ad930-4cc5-40b3-8f0d-dce4d71fdade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DC185B1A84C44AD96A4A56E9C00DA78 Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4EE7561406D34D10B39B7E440EB9BDE3 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "132b2d1b-fa99-4230-b651-858fe4ab1dd3" ], + "x-ms-unique-id": [ "204" ], + "x-ms-client-request-id": [ "ffabdae0-bf16-484c-bc18-6e01efd41140" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1648,16 +1648,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8b7a6212-a75d-41b0-b55d-365fc547f39b" ], + "x-ms-request-id": [ "5a117c5d-86ca-4b18-96bf-d4fe4eb93aab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b00f44c0-178a-44bd-9177-7161df14a71d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/114d6184-e5d3-497d-89fd-dff07dc60f57" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0d172cb6-9938-40ae-bb17-2444c8bbe7e2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182421Z:0d172cb6-9938-40ae-bb17-2444c8bbe7e2" ], + "x-ms-correlation-request-id": [ "8af439bc-f7cb-44e3-a0c4-a2d02d8101b0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013526Z:8af439bc-f7cb-44e3-a0c4-a2d02d8101b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85FA4F3BAB624D31BBFBAE64E65DD79E Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 375CF00D9D864D119E6C0A19B9867248 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1668,10 +1668,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Node-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Node-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Node-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Node-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -1691,30 +1691,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2c8fdce9-60cd-4610-b8fe-618ce156088f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fd989ddf-3ab9-42ea-ba28-62a6cdfb5903" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "53d9cf60-afe8-4e2e-8c3c-40f540eb3ce1" ], - "x-ms-correlation-request-id": [ "53d9cf60-afe8-4e2e-8c3c-40f540eb3ce1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182436Z:53d9cf60-afe8-4e2e-8c3c-40f540eb3ce1" ], + "x-ms-request-id": [ "c89f0997-a40f-4a03-b0a4-c0322ffb6153" ], + "x-ms-correlation-request-id": [ "c89f0997-a40f-4a03-b0a4-c0322ffb6153" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013540Z:c89f0997-a40f-4a03-b0a4-c0322ffb6153" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D53930DABA234AAA8D88126E2F0E506C Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:24:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A729763B4BD4F2893B83B96CD1FCF69 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:35:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1600" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0504f150-0000-0200-0000-691b68640000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Node-w8x9\",\r\n \"name\": \"Functions-Flex-Node-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-w8x9\",\r\n \"AppId\": \"1b22435a-afef-4bbd-b4ce-42187faa2b8b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"cafe75a6-5f27-413e-abf7-4b1f5adea9f2\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Node-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:24:23.5205749+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-w8x9_1b22435a-afef-4bbd-b4ce-42187faa2b8b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8300e260-0000-0200-0000-69c7306b0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Node-3wro\",\r\n \"name\": \"Functions-Flex-Node-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Node-3wro\",\r\n \"AppId\": \"b81d42c4-502b-41c3-a62e-2666c367bb6a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"1db2b2ae-442e-4be7-bc76-15269a77c189\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Node-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:35:28.4432788+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-3wro_b81d42c4-502b-41c3-a62e-2666c367bb6a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsflexnodew8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"node\",\r\n \"version\": \"22\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsflexnode3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"node\",\r\n \"version\": \"22\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1728,43 +1728,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF6F997340\"" ], + "ETag": [ "\"1DCBE5331308A60\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec4f5829-2263-4044-841f-ea11bd1026eb" ], + "x-ms-request-id": [ "bc7d7712-088a-49c7-939b-806d59142a92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/905f14b3-b004-4d4f-865c-c7c0130acfb0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1aff7d32-b7b3-436f-98db-87ea873c6806" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "60946b58-5788-4c0b-953a-8fe0df37364d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182500Z:60946b58-5788-4c0b-953a-8fe0df37364d" ], + "x-ms-correlation-request-id": [ "2e99b04f-c921-4451-8094-06c3702876fe" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013603Z:2e99b04f-c921-4451-8094-06c3702876fe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4D65FFDE3584DAA9F56D438E9E1A19D Ref B: MWH011020807031 Ref C: 2025-11-17T18:24:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A88F9EA05B1544A8A2901FD146F53380 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:35:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9466" ], + "Content-Length": [ "9626" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Node-w8x9\",\"repositorySiteName\":\"Functions-Flex-Node-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\",\"functions-flex-node-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:24:38.7666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsflexnodew8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-w8x9\\\\$Functions-Flex-Node-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-node-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Node-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Node-3wro\",\"repositorySiteName\":\"Functions-Flex-Node-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-3wro.azurewebsites.net\",\"functions-flex-node-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:35:42.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsflexnode3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Node-3wro\\\\$Functions-Flex-Node-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-node-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "2ee65acd-180e-4039-a64f-afc8efaea939" ], + "x-ms-unique-id": [ "207" ], + "x-ms-client-request-id": [ "434a3a8d-3564-4a6e-b908-4adba841dec5" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1774,42 +1774,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF7C1F5260\"" ], + "ETag": [ "1DCBE533D51B440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e14f112-d5c9-4fc3-8519-bccd5a9e4410" ], + "x-ms-request-id": [ "5c4ef977-d30b-42ab-94ee-4e6767a9c884" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62ea0db9-b681-4f14-9ea9-be37ddac3956" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182531Z:62ea0db9-b681-4f14-9ea9-be37ddac3956" ], + "x-ms-correlation-request-id": [ "5b25020d-9de0-449f-a667-12d105ac1583" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013634Z:5b25020d-9de0-449f-a667-12d105ac1583" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1462AFDA1341415BB0EF3585B2CD9561 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D203BCFB9AE8477D83D2A7E7E553F2DC Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9438" ], + "Content-Length": [ "9420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Node-w8x9\",\"repositorySiteName\":\"Functions-Flex-Node-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\",\"functions-flex-node-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:25:00.55\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsflexnodew8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-w8x9\\\\$Functions-Flex-Node-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-node-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Node-3wro\",\"repositorySiteName\":\"Functions-Flex-Node-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-3wro.azurewebsites.net\",\"functions-flex-node-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:36:03.46\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsflexnode3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Node-3wro\\\\$Functions-Flex-Node-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-node-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "237" ], - "x-ms-client-request-id": [ "2b92ee79-0cbb-4ba1-a9ea-e37031637d86" ], + "x-ms-unique-id": [ "208" ], + "x-ms-client-request-id": [ "7993f162-0602-4153-a8d8-9179564443db" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1820,42 +1820,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF7C1F5260\"" ], + "ETag": [ "1DCBE533D51B440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe076bb5-9227-4908-8288-e3c4492b288f" ], + "x-ms-request-id": [ "1c80dfb8-4c73-464f-b03b-f1e56b5801ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "31cf3e82-65c2-4823-a0f8-a08347ff49cf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182531Z:31cf3e82-65c2-4823-a0f8-a08347ff49cf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "914fb3b3-1a21-49bf-8432-6b340a2bc299" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013634Z:914fb3b3-1a21-49bf-8432-6b340a2bc299" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D185A72C43AA42E6897AAEF53272B534 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69EB79E161CA4E608469BA24622EAE03 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9438" ], + "Content-Length": [ "9420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Node-w8x9\",\"repositorySiteName\":\"Functions-Flex-Node-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\",\"functions-flex-node-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:25:00.55\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsflexnodew8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-w8x9\\\\$Functions-Flex-Node-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-node-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Node-3wro\",\"repositorySiteName\":\"Functions-Flex-Node-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-3wro.azurewebsites.net\",\"functions-flex-node-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:36:03.46\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsflexnode3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Node-3wro\\\\$Functions-Flex-Node-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-node-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "238" ], - "x-ms-client-request-id": [ "8ca19b3d-9c00-4865-bc2a-fa0cac255526" ], + "x-ms-unique-id": [ "209" ], + "x-ms-client-request-id": [ "949084c7-010d-4f1c-9acf-462cdaf50d2a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1867,40 +1867,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dfb7b2bc-71d3-4b8d-b4a5-57ff362cce49" ], + "x-ms-request-id": [ "0ce85720-2879-45f4-a5f8-3bf4e5d98c5d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8a8ae175-6afd-457c-b671-13ef9e9d1284" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a887e917-53b9-4848-a730-c60149db0394" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f0350298-84e0-46ed-a3ce-f5850ff6587a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182531Z:f0350298-84e0-46ed-a3ce-f5850ff6587a" ], + "x-ms-correlation-request-id": [ "416a1d11-c2cd-4aa0-804e-293f82750665" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013635Z:416a1d11-c2cd-4aa0-804e-293f82750665" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F93EB5B533D4B3192A73FA0FE5AED43 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F759C6B60BCC4CE1B4D1CFEB71442726 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "239" ], - "x-ms-client-request-id": [ "dd830e5c-b3de-466f-9999-051c727aeb3c" ], + "x-ms-unique-id": [ "210" ], + "x-ms-client-request-id": [ "2ebcd016-35ca-44f9-a6fa-da63687ddcdd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1912,41 +1912,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "61c06ca4-9c34-4f9b-8da9-093730af22e9" ], + "x-ms-request-id": [ "d8a1ca2f-bc4a-4755-bcaf-5b4ec2f001e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d5efcc43-980d-45b5-bcf8-7b5ea5dbcef3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/abb1357b-98ee-4c47-9c7f-c51773fc7bd8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e14f77d-2af5-4462-90a1-0dd5c68925fc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182532Z:4e14f77d-2af5-4462-90a1-0dd5c68925fc" ], + "x-ms-correlation-request-id": [ "f69fb538-5a94-4488-827e-5c4c49c6a219" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013635Z:f69fb538-5a94-4488-827e-5c4c49c6a219" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E389F8BF7DFC47E5A4309640624A7AF9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D45A524EF924D77970CF5AFD6B8C056 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "240" ], - "x-ms-client-request-id": [ "8aa321f1-71fe-46a5-b313-8a7c0e878cd1" ], + "x-ms-unique-id": [ "211" ], + "x-ms-client-request-id": [ "7bcfa3dc-eeaf-4a48-97d5-91de5ae1198a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1958,40 +1958,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3b912e5-0fc4-4b6f-b308-84293aa7b4d1" ], + "x-ms-request-id": [ "91528a8b-5e87-4d66-90f0-8649a8680e28" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b4654694-8108-447c-9ace-e90eceff40bb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182532Z:b4654694-8108-447c-9ace-e90eceff40bb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ade9666f-db39-4617-9a02-2b1f61c009aa" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013636Z:ade9666f-db39-4617-9a02-2b1f61c009aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7DAABC7B7CDA417D8B787E57D8E9D814 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A607CFC60C5544889703A4D3457D5701 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62354,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62354\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:23:46.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68096,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68096\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:34:51.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "241" ], - "x-ms-client-request-id": [ "b36f29e0-92ae-469f-b652-4f90b68e8692" ], + "x-ms-unique-id": [ "212" ], + "x-ms-client-request-id": [ "fb4d8123-cedb-4737-870d-f20ef8cc56f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2003,40 +2003,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "893f379b-537a-4af2-9ffa-e382a05650fa" ], + "x-ms-request-id": [ "82a81377-7a92-4a05-93c8-fc7bee35f743" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4fc7a835-a136-4832-be07-42e44ff6bc2b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c5e17dc7-3227-4f32-b902-c4992f2c5810" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a389e44a-d6d2-4b44-a87c-4288a8ff8a7f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182533Z:a389e44a-d6d2-4b44-a87c-4288a8ff8a7f" ], + "x-ms-correlation-request-id": [ "2839471b-2dbc-49fa-a556-4a4a8eae0625" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013636Z:2839471b-2dbc-49fa-a556-4a4a8eae0625" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 266B6D084022447299C3BD9D27959147 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC660DCAA7054F5D89508800CF3C7EA5 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "0fb2637e-fbeb-4ef6-841d-8601732c53b2" ], + "x-ms-unique-id": [ "213" ], + "x-ms-client-request-id": [ "69df1b51-ab4d-43b5-b755-b9a6d4906047" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2047,42 +2047,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF7C1F5260\"" ], + "ETag": [ "1DCBE533D51B440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07c11e73-3133-4ebc-ab53-69cec91914bf" ], + "x-ms-request-id": [ "736d81c3-0780-4393-bac9-a65aef10e390" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "be12d775-b2d2-4813-ae3d-e84b0162aa28" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182533Z:be12d775-b2d2-4813-ae3d-e84b0162aa28" ], + "x-ms-correlation-request-id": [ "aaae09dc-66e6-4ebb-af20-3c4571047bcf" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013637Z:aaae09dc-66e6-4ebb-af20-3c4571047bcf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A67B060E4B84598A317E3AE1E76125D Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF01AFC95FBC42D0835125BF74005646 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9438" ], + "Content-Length": [ "9420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Node-w8x9\",\"repositorySiteName\":\"Functions-Flex-Node-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\",\"functions-flex-node-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:25:00.55\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsflexnodew8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-w8x9\\\\$Functions-Flex-Node-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-node-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Node-3wro\",\"repositorySiteName\":\"Functions-Flex-Node-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-3wro.azurewebsites.net\",\"functions-flex-node-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:36:03.46\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsflexnode3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Node-3wro\\\\$Functions-Flex-Node-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-node-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "243" ], - "x-ms-client-request-id": [ "31513e1d-b9d1-4271-973d-2e7703d61320" ], + "x-ms-unique-id": [ "214" ], + "x-ms-client-request-id": [ "cc8a7ee3-53fc-449b-9aba-cb1c907c2f7e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2094,40 +2094,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0346fa82-9511-4629-9af1-cdb695859db4" ], + "x-ms-request-id": [ "e71e88e8-6bd2-43cd-868d-36126a4961cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/509c1800-d585-491c-811d-dd7f375fbade" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cf9c3f3c-235f-4a43-92e0-bc8c9b3f8ae0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "faaa19f3-26b7-46da-ba8b-798c7b96cd0a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182533Z:faaa19f3-26b7-46da-ba8b-798c7b96cd0a" ], + "x-ms-correlation-request-id": [ "23b52fd2-f779-4064-9737-b69a7f26032a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013637Z:23b52fd2-f779-4064-9737-b69a7f26032a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 10AC7714B94A46289D22FFEB55F33357 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EE5F8378D21346DAAA8A19E637F3BA37 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "244" ], - "x-ms-client-request-id": [ "ce4c1d45-40ac-4260-a639-c1b8efc36ce0" ], + "x-ms-unique-id": [ "215" ], + "x-ms-client-request-id": [ "86e23bf3-d64d-4ac6-aae7-09b37fcf9ba9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2139,41 +2139,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5aad7978-f29f-4139-92df-29a84f0f4742" ], + "x-ms-request-id": [ "635f4d15-ba63-4d73-ab3d-88b568b4052e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9ea9a2d9-8575-41f9-9175-2f1bc9f6bc40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/027b72d8-96fe-4fc0-abb5-7342db8ac278" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "6da97c1e-11a9-4586-9a89-23905f1b519a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182534Z:6da97c1e-11a9-4586-9a89-23905f1b519a" ], + "x-ms-correlation-request-id": [ "3c11cd68-a6f3-49d1-8a7a-89fcdb5f1faf" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013637Z:3c11cd68-a6f3-49d1-8a7a-89fcdb5f1faf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07AAA966E54B4A7981C34CB421B8DD5A Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D875382B7C344DF59C4799EF6E63E1FD Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "245" ], - "x-ms-client-request-id": [ "3004a0df-4e3f-47c7-8006-5d6be9632e70" ], + "x-ms-unique-id": [ "216" ], + "x-ms-client-request-id": [ "059f2dbb-d509-42e5-9b00-74b505311227" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2184,42 +2184,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF7C1F5260\"" ], + "ETag": [ "1DCBE533D51B440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "970da676-6eac-4326-b951-cf69f24b720e" ], + "x-ms-request-id": [ "905d1501-9379-4b5b-bd5c-778b2436b2ec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "0f3b3d31-6c86-41b1-90a0-6c542d2a0d1a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182534Z:0f3b3d31-6c86-41b1-90a0-6c542d2a0d1a" ], + "x-ms-correlation-request-id": [ "c4b46ff9-73f5-49a8-81d9-65c4a39084d9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013638Z:c4b46ff9-73f5-49a8-81d9-65c4a39084d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86D9D65C5AE94184A58BC638C22C71E1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 338DAF506DD7450DACDA2CB7408200BB Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9438" ], + "Content-Length": [ "9420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Node-w8x9\",\"repositorySiteName\":\"Functions-Flex-Node-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-w8x9.azurewebsites.net\",\"functions-flex-node-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:25:00.55\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsflexnodew8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Node-w8x9\\\\$Functions-Flex-Node-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-node-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Node-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-node-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Node-3wro\",\"repositorySiteName\":\"Functions-Flex-Node-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-node-3wro.azurewebsites.net\",\"functions-flex-node-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-node-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-node-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:36:03.46\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsflexnode3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Node-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Node-3wro\\\\$Functions-Flex-Node-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-node-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "246" ], - "x-ms-client-request-id": [ "0bb039d8-c578-478d-9a43-a36c068acb8d" ], + "x-ms-unique-id": [ "217" ], + "x-ms-client-request-id": [ "c1a3e5ad-7d87-4b5f-8c66-9c6d5e306c32" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2231,40 +2231,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19a98b0e-f989-4ae9-a936-edde5e632d30" ], + "x-ms-request-id": [ "c3de9f84-0e55-4d83-b54f-162687ac4eee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/40a4bed7-bd71-475c-818e-3661cda3f31e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "01d438e0-95cf-427c-816b-0ac0ba3bc05a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182534Z:01d438e0-95cf-427c-816b-0ac0ba3bc05a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6576d4cf-9d0b-44d3-8245-7cbd881aa427" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "373b6f5b-9978-437a-8833-6311ceee61dc" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013638Z:373b6f5b-9978-437a-8833-6311ceee61dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79DA2439CD224CA98FAE43D0526504D2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55E0C9591D074BDD9781CE3770456904 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "247" ], - "x-ms-client-request-id": [ "a7ba55af-2c20-4853-945d-e41295e4a951" ], + "x-ms-unique-id": [ "218" ], + "x-ms-client-request-id": [ "16a7c69f-1e22-44b3-b583-3eec3f226c44" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2276,41 +2276,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e34bcfce-b8a2-4e14-9c21-6eaa6ab22a7e" ], + "x-ms-request-id": [ "39d7bee5-81c8-48e5-a5d2-b88426b708e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b390c57b-ebc1-4a72-a68f-e91611d9fe1e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ef58faef-42be-4a84-aca9-92d10fbda76d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182535Z:ef58faef-42be-4a84-aca9-92d10fbda76d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d3fa22ec-6f42-48b6-a43a-16acc424b9dd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1053cad9-fa7c-4b09-b9f0-6cc9d6390813" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013638Z:1053cad9-fa7c-4b09-b9f0-6cc9d6390813" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B22B4D7B0F94E6B92599019FAB0122E Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D6995326E2974EC7B969F56F61E19C7C Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9/config/web\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro/config/web\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "248" ], - "x-ms-client-request-id": [ "2148d7c9-af18-4b55-b138-05a76c2a4ad7" ], + "x-ms-unique-id": [ "219" ], + "x-ms-client-request-id": [ "beb6ad7d-15d5-456e-8cfd-351e9d3e1080" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2322,40 +2322,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2b6e2f0-b19b-42db-b886-c64e166e139c" ], + "x-ms-request-id": [ "5e3aacb9-570c-4653-8a80-b53e57eb6912" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], - "x-ms-correlation-request-id": [ "6977cc1a-4022-4de7-a149-6f5305db90c9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182535Z:6977cc1a-4022-4de7-a149-6f5305db90c9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "8e6a6a1d-3aeb-4e4e-8e13-1549abac77f3" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013639Z:8e6a6a1d-3aeb-4e4e-8e13-1549abac77f3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AB9BD26A30B49F78040C418947714F9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D8477B3080B540FA9C9A3BD1EB34D84E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62354,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62354\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:23:46.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68096,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68096\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:34:51.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Node-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Node-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "249" ], - "x-ms-client-request-id": [ "801b8642-fcd6-42ad-9896-294442e74082" ], + "x-ms-unique-id": [ "220" ], + "x-ms-client-request-id": [ "78f6afbe-c051-4079-9f27-ffdee05e6ceb" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2366,20 +2366,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EF7C1F5260\"" ], + "ETag": [ "\"1DCBE533D51B440\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "99313b75-1b8c-40fa-a690-79d8497e7387" ], + "x-ms-request-id": [ "14643467-3b20-4256-bc0f-c19033d1c76a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8f6ea2dc-28c3-4f1c-acb3-272d9f6a9154" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a3aa13f7-becc-499a-9692-b67126c53de7" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "b8233a45-d32f-4617-80ae-23a1bac2a518" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182554Z:b8233a45-d32f-4617-80ae-23a1bac2a518" ], + "x-ms-correlation-request-id": [ "f55c1e5d-da1f-438b-b5ec-a6c104ab42e1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013653Z:f55c1e5d-da1f-438b-b5ec-a6c104ab42e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D81D56D5EDD43CF896C322D3F002D4A Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23348271B16541B9B1BEFF1F2555D329 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:53 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2393,7 +2393,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Python-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Python-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2408,18 +2408,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e08f1fe-7392-4047-a405-1fb9c406e0b8" ], + "x-ms-request-id": [ "c9587136-6ee5-47cf-8086-013456f0dfa3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e494b191-f763-4b2c-b68c-396fd9e6c343" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9f49f5bf-410b-49ef-be90-a26fc975797b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2eecd2dc-0e06-444f-933b-6170157fe9b7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182555Z:2eecd2dc-0e06-444f-933b-6170157fe9b7" ], + "x-ms-correlation-request-id": [ "df5d2324-3b7a-4ad0-a47e-a72b5ed6a284" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013654Z:df5d2324-3b7a-4ad0-a47e-a72b5ed6a284" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04A6F7884BE248E7A1A9398F632101E8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6059B0B25404FAFA1DD40EC4E55FBAE Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:53Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2430,10 +2430,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -2449,42 +2449,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c16fda7-d435-45b4-b808-8d26ab9bbe2e" ], + "x-ms-request-id": [ "472197d3-da41-45f4-a7af-1a7e5a9bbc96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5fc55fff-e75d-4751-8d45-1b8a4a81ea1f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/16cad8bf-b5ed-4d7a-99a5-e37e580dadfc" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "f611ba37-cd8c-4b22-a444-fba0192a8155" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182600Z:f611ba37-cd8c-4b22-a444-fba0192a8155" ], + "x-ms-correlation-request-id": [ "746999ef-91bf-4766-84db-1115d1039c01" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013657Z:746999ef-91bf-4766-84db-1115d1039c01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3633ADE485394A46A712E45444A2900A Ref B: MWH011020807031 Ref C: 2025-11-17T18:25:55Z" ], - "Date": [ "Mon, 17 Nov 2025 18:25:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBB9333851354D68ABC02E3C5E9DA4DD Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:36:54Z" ], + "Date": [ "Sat, 28 Mar 2026 01:36:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52909,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52909\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:25:59.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":77752,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77752\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:36:57.0966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "2934b6bb-727b-49e3-a365-e0ea429a46fd" ], + "x-ms-unique-id": [ "224" ], + "x-ms-client-request-id": [ "f15aac20-f008-43dc-afa8-7c2d641ba243" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -2495,41 +2495,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05bc6d05-e7d9-4a92-8b63-ac83edf245d7" ], + "x-ms-request-id": [ "1e5f8698-2c0d-4a1b-83a1-54649b6b00dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "945ba29a-a9e9-4548-9c44-77b725268be8" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182631Z:945ba29a-a9e9-4548-9c44-77b725268be8" ], + "x-ms-correlation-request-id": [ "05bd65df-64f0-47be-ac8a-608789a53547" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013728Z:05bd65df-64f0-47be-ac8a-608789a53547" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB93810E9807494CB66FAD41749EFCD3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:30Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9583DD44F2340319B15A7261C6E239F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52909,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52909\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:25:59.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77752,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77752\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:36:57.0966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "254" ], - "x-ms-client-request-id": [ "2934b6bb-727b-49e3-a365-e0ea429a46fd" ], + "x-ms-unique-id": [ "225" ], + "x-ms-client-request-id": [ "f15aac20-f008-43dc-afa8-7c2d641ba243" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -2540,24 +2540,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba30de5e-7a45-4351-8fe3-af452246fbc5" ], + "x-ms-request-id": [ "c2d34284-e217-49fd-aec2-2abcfe4943a1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d616d15-1d67-4302-b64d-ae9541e7c610" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182631Z:1d616d15-1d67-4302-b64d-ae9541e7c610" ], + "x-ms-correlation-request-id": [ "337b3f3c-7dfc-482b-94ba-d922e37b6082" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013728Z:337b3f3c-7dfc-482b-94ba-d922e37b6082" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2E47E301D1594D20BA0BCB925765AB83 Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DC3C8257846441087CE89741CA93038 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52909,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52909\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:25:59.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77752,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77752\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:36:57.0966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -2568,12 +2568,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "255" ], - "x-ms-client-request-id": [ "b14ca704-232c-4c30-ab81-78c85d8752e6" ], + "x-ms-unique-id": [ "226" ], + "x-ms-client-request-id": [ "3cc83089-c887-4fe3-ab52-4d70025a9be2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2584,40 +2584,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "96362787-9b88-4037-8ddc-1f12a466e92e", "863e6aa4-3190-499f-a2d6-deb2b3b6a22f", "545e00dc-3160-4f6f-8186-677f50f87f2d" ], + "x-ms-original-request-ids": [ "ac915611-394d-492a-a7e7-967e5eded65b", "d95664a8-02a0-4a74-b0c5-681d5ff7a8d4", "bbfdb103-ab5f-4c62-91fd-5bca71a4ff37" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9b3d670e-e83c-44ab-9487-38b0768b758f" ], - "x-ms-correlation-request-id": [ "9b3d670e-e83c-44ab-9487-38b0768b758f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182632Z:9b3d670e-e83c-44ab-9487-38b0768b758f" ], + "x-ms-request-id": [ "da54083d-9b25-4ca3-ac9f-aac62e843316" ], + "x-ms-correlation-request-id": [ "da54083d-9b25-4ca3-ac9f-aac62e843316" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013729Z:da54083d-9b25-4ca3-ac9f-aac62e843316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B87824D2A2504A999465E1273C4029ED Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B36B4455DA34C3199148806245CAF13 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionsflexpythonw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionsflexpython3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionsflexpythonw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionsflexpython3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "e43098c9-3b68-466a-b01a-fa7a485f3ec8" ], + "x-ms-unique-id": [ "227" ], + "x-ms-client-request-id": [ "339d47cb-659b-40c2-b96f-c16533be31c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2628,31 +2628,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "60aba24d-9a2a-4b43-8dfa-1f4a77b417d4" ], + "x-ms-request-id": [ "a891df9a-c32d-413f-98d7-1b749d693e88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/17e05757-ba83-47e0-b78d-cfa0c1ef3ddc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0b0f3415-ac07-4b43-9e3c-b2924a9f5781" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cb4016bf-bef9-45f5-b729-9986c3af1d59" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182632Z:cb4016bf-bef9-45f5-b729-9986c3af1d59" ], + "x-ms-correlation-request-id": [ "cf198db5-77ae-42ee-b1ce-e04413fbb28f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013729Z:cf198db5-77ae-42ee-b1ce-e04413fbb28f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A7ABB7EC63B4BEC9EB79754AFBDA5B5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 41D98300A02E4B20AC61ED6160E7FAAF Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:0424cd6e-601e-0011-32ef-57fa1d000000\\nTime:2025-11-17T18:26:32.6399807Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:7722ad92-c01e-0086-5653-bea292000000\\nTime:2026-03-28T01:37:29.3114674Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionsflexpythonw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionsflexpython3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionsflexpythonw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionsflexpython3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -2667,25 +2667,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE2606D5D17BD1\"" ], - "x-ms-request-id": [ "223501ae-d4c8-4520-af42-16757c7cf89b" ], + "ETag": [ "\"0x8DE8C6A934E9E89\"" ], + "x-ms-request-id": [ "7b380154-a2cc-447e-81b5-792e6d640955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ef74078d-5094-4207-b151-2c5b040af7a1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2a825a9c-a25d-43ae-b014-1d95f83a375a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "ea94c19e-eab9-4425-9ae6-5f2e10e158ba" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182633Z:ea94c19e-eab9-4425-9ae6-5f2e10e158ba" ], + "x-ms-correlation-request-id": [ "d4084164-54d3-4be6-aea2-035e57ddbf25" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013729Z:d4084164-54d3-4be6-aea2-035e57ddbf25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 427AA7EF99524ADB9DC0A3FEC5B70C5A Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B0371E8300648CCBF8A18FD2C1C49F1 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "446" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionsflexpythonw8x9-0000000\",\"name\":\"app-package-functionsflexpythonw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionsflexpython3wro-0000000\",\"name\":\"app-package-functionsflexpython3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -2696,12 +2696,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "0d515912-865d-4cae-84b4-eb539cc9a7ef" ], + "x-ms-unique-id": [ "229" ], + "x-ms-client-request-id": [ "080e1e95-054d-4ed3-b08d-2e03da974104" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2712,40 +2712,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "90d935e2-3e3a-4020-bb20-9cb6b54c728e", "7f336088-560d-4287-8dd4-3d5fddfc87e9", "5e956ffd-3023-414a-8180-5494240a19ae" ], + "x-ms-original-request-ids": [ "c2f74a17-6796-47a8-a5f1-0b2974b2714d", "5d29b115-5538-431a-b103-82076ab4017a", "73fdab63-e910-4aaf-9da0-a733b9abeb05" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d662facd-9f5f-48ba-8199-adb235a7567a" ], - "x-ms-correlation-request-id": [ "d662facd-9f5f-48ba-8199-adb235a7567a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182634Z:d662facd-9f5f-48ba-8199-adb235a7567a" ], + "x-ms-request-id": [ "1c16402c-387b-4911-b857-1f5dd8f3f606" ], + "x-ms-correlation-request-id": [ "1c16402c-387b-4911-b857-1f5dd8f3f606" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013730Z:1c16402c-387b-4911-b857-1f5dd8f3f606" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBC0A828C365438E937D56EEB977B4F2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8EF350C29BB844A48B36DA1B71391A32 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "79c684b7-2e69-419f-954b-022fd0815dc3" ], + "x-ms-unique-id": [ "230" ], + "x-ms-client-request-id": [ "13895f92-5eec-468b-9ccf-175bf045013a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2756,16 +2756,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "60aa6143-929c-4fc7-80eb-49a2e128a2f7" ], + "x-ms-request-id": [ "b6d026db-cdca-4efc-8587-48b837858b6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/5eeea4b3-d893-4fe7-a940-019d56e3483b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8ce9f080-56f1-42cc-a5fe-526f479bc542" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5b6507b9-499a-4d09-9a4f-0e0cd2003263" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T182634Z:5b6507b9-499a-4d09-9a4f-0e0cd2003263" ], + "x-ms-correlation-request-id": [ "2309c4d8-648c-4df5-a1b4-ab158c03eb5d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013730Z:2309c4d8-648c-4df5-a1b4-ab158c03eb5d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA00CEEBE394464E9B88B6EC6FAC296E Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A66D4C3BDD924E5F9F620028F30EFDCA Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -2783,12 +2783,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "260" ], - "x-ms-client-request-id": [ "522da561-df88-458c-9b01-9dcb9d0ea625" ], + "x-ms-unique-id": [ "231" ], + "x-ms-client-request-id": [ "385218fb-16bd-43e6-aa8b-1d899deb7bcc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2799,40 +2799,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "acf93549-524b-447b-9624-77657522d83e", "3f231623-487e-4e58-b8af-1c3df3f85097", "2220a61e-1a2e-4a5e-a9e6-cccaa2619521" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "e97174f6-0704-4f40-be29-4860e545c093" ], - "x-ms-correlation-request-id": [ "e97174f6-0704-4f40-be29-4860e545c093" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182635Z:e97174f6-0704-4f40-be29-4860e545c093" ], + "x-ms-original-request-ids": [ "572f7aa7-582d-43fc-9431-2cc94a1cf90a", "0b9465d5-6862-4bab-ad59-a6dd0ac20091", "5cab535c-e549-47cd-895e-919e04f10839" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "0a9e8db4-20ff-4476-b21f-61ceb470ed40" ], + "x-ms-correlation-request-id": [ "0a9e8db4-20ff-4476-b21f-61ceb470ed40" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T013731Z:0a9e8db4-20ff-4476-b21f-61ceb470ed40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 450493D5F47D43E9BA53062A1C93275A Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B59D04F003A44E68972E5380105DE19 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:31Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "261" ], - "x-ms-client-request-id": [ "374420f4-bc80-4085-9d4a-1653406ed2ba" ], + "x-ms-unique-id": [ "232" ], + "x-ms-client-request-id": [ "def4cca3-bc92-4ecb-9657-23597d6c17e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2843,16 +2843,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8de465e6-a41f-4a2d-be1b-bb0953da093c" ], + "x-ms-request-id": [ "c3c8bae8-1486-4f37-b7c0-977721b7db52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/187f2d6a-6765-470c-a82d-49ea8d0478d0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/deca68cd-425b-4cab-9231-587174b89648" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "24f03e32-e10c-4ccd-92b6-b842a154e6b0" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T182636Z:24f03e32-e10c-4ccd-92b6-b842a154e6b0" ], + "x-ms-correlation-request-id": [ "4b84c4d3-0389-4b82-a5e3-adcf642647f8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013731Z:4b84c4d3-0389-4b82-a5e3-adcf642647f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D224D4EE087F4C9C9BAF9A0115088349 Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C58F356FF1FC455E8401B7ECE807FAA4 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:31Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -2863,10 +2863,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Python-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Python-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Python-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Python-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -2886,30 +2886,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5245e6dc-421f-46ef-a1fe-31936eb813b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/44b4bed6-0dfd-4d2b-8f5d-7f8c38feae54" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "7a7d992e-661d-46aa-a235-29e6a428d374" ], - "x-ms-correlation-request-id": [ "7a7d992e-661d-46aa-a235-29e6a428d374" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182649Z:7a7d992e-661d-46aa-a235-29e6a428d374" ], + "x-ms-request-id": [ "6e224630-1217-478e-b198-b1eec594112a" ], + "x-ms-correlation-request-id": [ "6e224630-1217-478e-b198-b1eec594112a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013743Z:6e224630-1217-478e-b198-b1eec594112a" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8BD0518DF78A4009980D2CE93EA7CBA5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:26:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE45E2122574485CA004B226F8B2FA8D Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:31Z" ], + "Date": [ "Sat, 28 Mar 2026 01:37:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"05042e62-0000-0200-0000-691b68e90000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Python-w8x9\",\r\n \"name\": \"Functions-Flex-Python-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-w8x9\",\r\n \"AppId\": \"58458e0c-8dab-4cf2-ad43-70f2b5a4baa5\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"aee607a4-89d2-4c33-b3ea-c3bdab86cb5e\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Python-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:26:38.7613209+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-w8x9_58458e0c-8dab-4cf2-ad43-70f2b5a4baa5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"83002167-0000-0200-0000-69c730e70000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Python-3wro\",\r\n \"name\": \"Functions-Flex-Python-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Python-3wro\",\r\n \"AppId\": \"7308590b-f88e-4610-80e0-b6189b46f1f6\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"134c599d-3400-48f8-9422-8455a04c7fe8\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Python-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:37:34.0688266+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-3wro_7308590b-f88e-4610-80e0-b6189b46f1f6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionsflexpythonw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"python\",\r\n \"version\": \"3.12\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionsflexpython3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"python\",\r\n \"version\": \"3.12\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2923,43 +2923,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EFBEB4EA40\"" ], + "ETag": [ "\"1DCBE537A604C8B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36ac9b61-4cb4-44b7-a9dd-edb5f2524f91" ], + "x-ms-request-id": [ "87ac3937-a095-4f37-8640-0fda946de93b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1b7042c7-4332-4eb5-9ba8-d722ec6d2a06" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d0c54c6a-2a31-4f83-9cd9-7abb93d1e70d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5175d746-d534-4e42-9d55-3f1fb17a87ee" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182713Z:5175d746-d534-4e42-9d55-3f1fb17a87ee" ], + "x-ms-correlation-request-id": [ "c487aa1e-5e42-4753-9302-64a950283ec8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013806Z:c487aa1e-5e42-4753-9302-64a950283ec8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C159541BEC849C69CD1D101FDDAB5D5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:26:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 65EDB13A024D4134A5AC9F4607421BD7 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:37:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9490" ], + "Content-Length": [ "9669" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Python-w8x9\",\"repositorySiteName\":\"Functions-Flex-Python-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\",\"functions-flex-python-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:26:51.72\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionsflexpythonw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Python-w8x9\\\\$Functions-Flex-Python-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-python-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Python-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Python-3wro\",\"repositorySiteName\":\"Functions-Flex-Python-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-3wro.azurewebsites.net\",\"functions-flex-python-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:37:45.4633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionsflexpython3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Python-3wro\\\\$Functions-Flex-Python-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-python-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "264" ], - "x-ms-client-request-id": [ "8f253373-e64f-4c4d-aa7a-d5c33e17f265" ], + "x-ms-unique-id": [ "235" ], + "x-ms-client-request-id": [ "cba636d6-20cb-4d74-90c2-66f0450a99f2" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -2969,42 +2969,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EFCAFBB78B\"" ], + "ETag": [ "1DCBE5386A81E40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dffd9e69-9096-4b01-9cfb-3f6c1c152da2" ], + "x-ms-request-id": [ "8644fdbc-9055-4211-b251-7c6922315d92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b7cf492d-f8bf-4d30-8f83-c24f6ee1226f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182743Z:b7cf492d-f8bf-4d30-8f83-c24f6ee1226f" ], + "x-ms-correlation-request-id": [ "78cea11f-68d6-43f0-bc12-198a545fd920" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013837Z:78cea11f-68d6-43f0-bc12-198a545fd920" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3ADB42712C66421481F7CB3BBB1C03FB Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE794A2DA0834B1C9F352D878EC09014 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9462" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Python-w8x9\",\"repositorySiteName\":\"Functions-Flex-Python-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\",\"functions-flex-python-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:27:12.8566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionsflexpythonw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Python-w8x9\\\\$Functions-Flex-Python-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-python-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Python-3wro\",\"repositorySiteName\":\"Functions-Flex-Python-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-3wro.azurewebsites.net\",\"functions-flex-python-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:38:06.5\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionsflexpython3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Python-3wro\\\\$Functions-Flex-Python-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-python-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "265" ], - "x-ms-client-request-id": [ "a1971cda-f3cb-49bf-8107-5b9eaa787a0e" ], + "x-ms-unique-id": [ "236" ], + "x-ms-client-request-id": [ "74ace94f-3262-42b1-a70d-c86e72f88b94" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3015,42 +3015,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EFCAFBB78B\"" ], + "ETag": [ "1DCBE5386A81E40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c82b878-51a3-408a-b2de-65079fcb9ea2" ], + "x-ms-request-id": [ "b514fc14-0051-47d3-bed7-d9a2b476dc3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5db130d2-52d8-49e6-905d-a68f2f49a7f0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182743Z:5db130d2-52d8-49e6-905d-a68f2f49a7f0" ], + "x-ms-correlation-request-id": [ "c41ebd06-f6f5-46ce-bd8c-c317db87f42b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013837Z:c41ebd06-f6f5-46ce-bd8c-c317db87f42b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 008982775FD343F2B526D16376F13678 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04375A7376B844ADB727FBCC1ACF8A87 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9462" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Python-w8x9\",\"repositorySiteName\":\"Functions-Flex-Python-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\",\"functions-flex-python-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:27:12.8566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionsflexpythonw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Python-w8x9\\\\$Functions-Flex-Python-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-python-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Python-3wro\",\"repositorySiteName\":\"Functions-Flex-Python-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-3wro.azurewebsites.net\",\"functions-flex-python-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:38:06.5\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionsflexpython3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Python-3wro\\\\$Functions-Flex-Python-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-python-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "266" ], - "x-ms-client-request-id": [ "ff199797-1997-4258-98c6-c332dd2cbf8c" ], + "x-ms-unique-id": [ "237" ], + "x-ms-client-request-id": [ "040d4340-f26b-43c3-9a88-c31a28d2e846" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3062,40 +3062,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "beba27ce-3dbc-4921-bf57-8bbb6e226c85" ], + "x-ms-request-id": [ "d704fb34-c205-48f3-ae24-7aa0099ffa1a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/44fbb807-f7e2-408b-bc77-f9cacda82a21" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cba1a9a0-5452-4b04-af1a-c832078f8bde" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "91ef2cdb-413d-4dd3-bc69-3eb43160da5e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182744Z:91ef2cdb-413d-4dd3-bc69-3eb43160da5e" ], + "x-ms-correlation-request-id": [ "8f0ef63f-c61f-41c7-b714-c9e435121e57" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013838Z:8f0ef63f-c61f-41c7-b714-c9e435121e57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 328FD3A7700248FA915972CD61031BF9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7525951339384AC89D5545BC51DEB30C Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "4c4795ff-6d39-457d-8e0b-663eba979491" ], + "x-ms-unique-id": [ "238" ], + "x-ms-client-request-id": [ "180f3770-b94d-4176-8f19-6ef56082687f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3107,41 +3107,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "515d72d9-3e6a-42b2-8364-9519c97a33ad" ], + "x-ms-request-id": [ "568057dd-0310-4efe-a889-36ea9c7afd91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d183ac76-fbec-43c7-b2d8-cb664eb57251" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9d1fdf5d-977c-4ff2-814a-9cb9804e3e63" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a15fe153-dea3-4628-8833-1a09447523f2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182744Z:a15fe153-dea3-4628-8833-1a09447523f2" ], + "x-ms-correlation-request-id": [ "d7c6fe46-2a1a-429d-9bed-a0313e742ee9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013838Z:d7c6fe46-2a1a-429d-9bed-a0313e742ee9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EA76321C65E415BBFCDDFB0EFF51A51 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4E9D1D7019424901858C88FFD06EB8C8 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "268" ], - "x-ms-client-request-id": [ "2ad4db9c-5950-4904-9973-1908bc1a1045" ], + "x-ms-unique-id": [ "239" ], + "x-ms-client-request-id": [ "2d5cb81b-4cc3-4f2e-91f3-8fa6090d1b6e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3153,40 +3153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b210af0-d100-4ab6-922f-0257e7334e30" ], + "x-ms-request-id": [ "bbe9b15f-f723-44bc-9168-ee4ca993816b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bf48135e-b094-4f09-843f-9d361045762d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182744Z:bf48135e-b094-4f09-843f-9d361045762d" ], + "x-ms-correlation-request-id": [ "78b62f78-57ad-47d2-b0e5-615f79aff570" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013838Z:78b62f78-57ad-47d2-b0e5-615f79aff570" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CEC26DCF3A58411ABA5A4A9AFC43BA9E Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 20A8DD2CA85C412F8279C3B4BDC7C4E8 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52909,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52909\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:25:59.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77752,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77752\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:36:57.0966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "269" ], - "x-ms-client-request-id": [ "ec73209d-2fbc-4724-850e-60707571ee3d" ], + "x-ms-unique-id": [ "240" ], + "x-ms-client-request-id": [ "1fe6b896-f9e5-4a32-a240-6a6f31589c23" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3198,40 +3198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a0daf9d6-7415-4d86-804e-eaf19af6d29f" ], + "x-ms-request-id": [ "4e323edf-0941-445f-9556-c3a1cda09d92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/67071d0a-7786-4d16-ac1c-2732e95053b6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/873e8bb9-dc70-422e-ba7b-16fff36e32bf" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "149b2730-d841-4786-a823-9c094e253f6c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182745Z:149b2730-d841-4786-a823-9c094e253f6c" ], + "x-ms-correlation-request-id": [ "5cd54a7a-97ce-4622-b9ed-f117e05208bf" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013839Z:5cd54a7a-97ce-4622-b9ed-f117e05208bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7BB79452A2449E5972DD29917E7080A Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2303738CA9D64DEA9D764A469BC7580F Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "270" ], - "x-ms-client-request-id": [ "d8f71d26-c0cc-431c-839d-cf6d6b0c0e85" ], + "x-ms-unique-id": [ "241" ], + "x-ms-client-request-id": [ "1bbb0475-08ad-43e4-bb8d-233c5eaddd50" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3242,42 +3242,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EFCAFBB78B\"" ], + "ETag": [ "1DCBE5386A81E40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a990396-140d-4797-b554-14bf334c937a" ], + "x-ms-request-id": [ "cdf527bf-99ab-41dc-b485-2be003aa4baa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "34a3ae0e-2d0d-4261-a24d-9ee4839ad836" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182745Z:34a3ae0e-2d0d-4261-a24d-9ee4839ad836" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1636a5e1-217e-4220-a620-c03af85f454c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013839Z:1636a5e1-217e-4220-a620-c03af85f454c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 77A1D0A57728477ABD8830B50E9D5EAE Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB56E6DEC7AB4FC28BB3F8FB130E9B19 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9462" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Python-w8x9\",\"repositorySiteName\":\"Functions-Flex-Python-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\",\"functions-flex-python-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:27:12.8566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionsflexpythonw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Python-w8x9\\\\$Functions-Flex-Python-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-python-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Python-3wro\",\"repositorySiteName\":\"Functions-Flex-Python-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-3wro.azurewebsites.net\",\"functions-flex-python-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:38:06.5\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionsflexpython3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Python-3wro\\\\$Functions-Flex-Python-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-python-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "271" ], - "x-ms-client-request-id": [ "6f1e814d-64c6-4ba5-8c14-71fa90e515ec" ], + "x-ms-unique-id": [ "242" ], + "x-ms-client-request-id": [ "638a83b3-d7ca-4883-b623-5f1a498044b0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3289,40 +3289,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ee421f4-17a1-4c2e-844d-b4f46f0c214b" ], + "x-ms-request-id": [ "83436cad-09ac-4c04-9802-e16a5c681cd8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d6194afb-fc4c-4bfd-ba83-26a0b29619b5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4234e220-65ee-4c45-bc08-81551afa1e99" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4ec9bbf0-bb6d-496d-b572-9d5c9625302f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182746Z:4ec9bbf0-bb6d-496d-b572-9d5c9625302f" ], + "x-ms-correlation-request-id": [ "48f6e59a-0793-4861-a979-442d0fb72b13" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013840Z:48f6e59a-0793-4861-a979-442d0fb72b13" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 525F751118B9422D8FFD348101A8E64F Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE3FD1C72A0A413B935DA6F42019209E Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "272" ], - "x-ms-client-request-id": [ "deaa1f44-a2d9-4ff5-8452-064803b10e94" ], + "x-ms-unique-id": [ "243" ], + "x-ms-client-request-id": [ "cd27270d-74f4-401b-96b9-7cfa2725a0d9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3334,41 +3334,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bc978561-2c99-418b-b3a6-60e709fc2b1e" ], + "x-ms-request-id": [ "6bfef314-461d-412a-b1df-8435bab7ecb5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c7cfa3d4-eecf-41bc-97c0-6da2c8560f10" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bf09cbc6-fa72-4126-9630-8c2f0f67aa87" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "9e025252-5995-4bcd-99a1-61558a84f527" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182746Z:9e025252-5995-4bcd-99a1-61558a84f527" ], + "x-ms-correlation-request-id": [ "ec6a9f32-b562-484b-b4e7-bba317d6f911" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013840Z:ec6a9f32-b562-484b-b4e7-bba317d6f911" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E301B81FFC2D445388F6C690E3ED7920 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9139239B7DE24D9C9A6A96B92BFF639A Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "273" ], - "x-ms-client-request-id": [ "5b3e1ad3-af05-4a69-9347-044d971117af" ], + "x-ms-unique-id": [ "244" ], + "x-ms-client-request-id": [ "8a73bd66-4fa1-4e09-8f07-8eb78c0c39e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3379,42 +3379,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EFCAFBB78B\"" ], + "ETag": [ "1DCBE5386A81E40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0278fa65-6901-4d40-b070-60f437dce529" ], + "x-ms-request-id": [ "1d13dc63-065d-4be7-a4b5-5f05b8accf11" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "f3b02c81-e94d-473b-a841-cbf79d348cf0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182746Z:f3b02c81-e94d-473b-a841-cbf79d348cf0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "07932e04-598e-4c36-82e0-7e95d8a952b0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013840Z:07932e04-598e-4c36-82e0-7e95d8a952b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E9F1E466154477DB470F6D20DE554F0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A69927F69C7458F83EB11526AEF7C86 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9472" ], + "Content-Length": [ "9462" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Python-w8x9\",\"repositorySiteName\":\"Functions-Flex-Python-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-w8x9.azurewebsites.net\",\"functions-flex-python-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:27:12.8566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionsflexpythonw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Python-w8x9\\\\$Functions-Flex-Python-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-python-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Python-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-python-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Python-3wro\",\"repositorySiteName\":\"Functions-Flex-Python-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-python-3wro.azurewebsites.net\",\"functions-flex-python-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-python-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-python-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:38:06.5\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionsflexpython3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.12\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Python-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Python-3wro\\\\$Functions-Flex-Python-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-python-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "274" ], - "x-ms-client-request-id": [ "4c92404c-9272-4055-8680-616ee6730bc4" ], + "x-ms-unique-id": [ "245" ], + "x-ms-client-request-id": [ "943abb62-bfac-47bd-8691-1339f8da8eeb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3426,40 +3426,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cffd9757-a2f1-4aad-8bc9-5dda508b145a" ], + "x-ms-request-id": [ "e07c284b-56a3-4b03-8edb-da2c4fe4374b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c10f0e71-112e-4c79-9323-aa0b21f8dca5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f4bd47b3-40c0-4093-9fb4-61bbab108e82" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "efbf21cd-a94a-48d2-872f-4f9e42452626" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182747Z:efbf21cd-a94a-48d2-872f-4f9e42452626" ], + "x-ms-correlation-request-id": [ "663a9878-2d00-48d0-ad65-633cae56f4d7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013841Z:663a9878-2d00-48d0-ad65-633cae56f4d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BD20647A16E4FB59B321FCF16A4D479 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDD784F3EEB84978A84C9024C5ED7CA0 Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "93d2d25c-800c-4c88-ad08-26a8a89d44ba" ], + "x-ms-unique-id": [ "246" ], + "x-ms-client-request-id": [ "eadf9d05-7f29-49e1-8ca2-a79eceb38ae0" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3471,41 +3471,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a8d8b91-d7cf-4d50-aade-27c7b5d74f69" ], + "x-ms-request-id": [ "5d921b4d-89f5-411e-a744-23c895bf7d83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ee4fb0b4-8bd8-4232-a3e4-10c2122bab80" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "156912e9-115f-4ab8-b50a-426bf93f421f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182747Z:156912e9-115f-4ab8-b50a-426bf93f421f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/39f24e1c-c6eb-4b5d-95e0-27e0cd8ae7fe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "24918eb3-fa8b-4c1d-a238-c8bbf719acf3" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013841Z:24918eb3-fa8b-4c1d-a238-c8bbf719acf3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE176C49013C4FE9BDAC6F8120D75DF9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 936492D88E074ACB8AC2BE7340CD185C Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9/config/web\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro/config/web\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "35d34057-1255-4745-b787-d06d698bb126" ], + "x-ms-unique-id": [ "247" ], + "x-ms-client-request-id": [ "ce85763d-3d09-495c-9b62-192097fa8151" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3517,40 +3517,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d538dd2-96b0-4678-a6da-2c414e79f76b" ], + "x-ms-request-id": [ "6e761503-ea8c-4170-b532-427c279b4a74" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "00f734fc-dad7-4bc9-ac1b-550dc9a3cdf7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182747Z:00f734fc-dad7-4bc9-ac1b-550dc9a3cdf7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e2c47bdb-4fb5-4ae2-8a2f-4cda7a4ad713" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T013841Z:e2c47bdb-4fb5-4ae2-8a2f-4cda7a4ad713" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E480E23AA4F245A1BAC6E07EF18867A3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:27:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2FDCD4A9B9C7462485B0CD93B82377BA Ref B: CO6AA3150218049 Ref C: 2026-03-28T01:38:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:38:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52909,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52909\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:25:59.7133333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77752,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77752\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:36:57.0966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Python-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Python-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "277" ], - "x-ms-client-request-id": [ "6bc475d9-9c2b-400f-9683-f70c8e80feaf" ], + "x-ms-unique-id": [ "248" ], + "x-ms-client-request-id": [ "a05d0038-6a9c-4f3d-b83b-bc3343b378d7" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3561,20 +3561,19 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57EFCAFBB78B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d29c2c79-87ff-47a4-9848-70d075533d5d" ], + "x-ms-request-id": [ "32745b06-0725-4ac2-8756-2486240fdaed" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2a13ce35-ed15-4093-ab7f-d7eed6bf1f60" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "3108d546-7004-47ae-8515-0588de311651" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182806Z:3108d546-7004-47ae-8515-0588de311651" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d1b3ebe6-d566-4a4e-b592-fb937191de57" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "ce8919fe-b928-41d2-8ad5-f512087f747d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014058Z:ce8919fe-b928-41d2-8ad5-f512087f747d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 21B9531CEE754DA69B03E3DEA317DDF6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:27:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48FCC5F44D684D4EAB3409BA769E80AC Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:40:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:40:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3588,7 +3587,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Java-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Java-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3603,18 +3602,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cf24a0d7-5b60-4e4c-aaf8-2e2e313d0299" ], + "x-ms-request-id": [ "dd9e3d5e-df99-4096-8efc-380f3097faa8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3757dc6c-6469-4b96-9745-9799f2a2b046" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2337a621-8d0f-4823-be19-ef6ef135d11f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "295fe0da-541b-4261-af90-89ec9caf35e3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182807Z:295fe0da-541b-4261-af90-89ec9caf35e3" ], + "x-ms-correlation-request-id": [ "9b8455c3-a4f2-4cfb-819c-5613b5bae324" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014101Z:9b8455c3-a4f2-4cfb-819c-5613b5bae324" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A136008C22BF4EF39DA73BB78A5CA598 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 252CB2181AA7415EB7DB659A83A9A1AF Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:40:58Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3625,10 +3624,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -3644,42 +3643,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3b182d9-bfee-4c50-8222-b760819ea97a" ], + "x-ms-request-id": [ "2344e73f-b44d-4bff-a7d5-527245db0655" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/b7d909df-961d-4141-b4d4-d68fd5540225" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2540d428-5e15-41c1-ae56-54eb93549ab2" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "27e18e41-62f1-4b48-a144-2e0bdb8e7862" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T182812Z:27e18e41-62f1-4b48-a144-2e0bdb8e7862" ], + "x-ms-correlation-request-id": [ "fb1db5af-224b-4a87-9f72-191aac8bfaea" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014104Z:fb1db5af-224b-4a87-9f72-191aac8bfaea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53D43BE918864E2CBF9B2604387D817A Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4448EFE0282748D7926B4D9F6C98329B Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:01Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52910,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52910\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:28:12.26\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68097,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68097\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:41:04.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "43733597-2a47-40d5-9723-2eaf1bbe4a32" ], + "x-ms-unique-id": [ "252" ], + "x-ms-client-request-id": [ "7ac788be-3f05-419a-80a1-80bfaac3e109" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -3690,41 +3689,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe7780a0-df5c-4894-90f7-e8b34ed703dc" ], + "x-ms-request-id": [ "0755368c-045d-469a-b054-238638a809a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d6c05e0c-d869-4b4e-92c8-a9a61918d89d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182843Z:d6c05e0c-d869-4b4e-92c8-a9a61918d89d" ], + "x-ms-correlation-request-id": [ "9a7d527a-3464-4848-90d9-8c09a2fb721a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014134Z:9a7d527a-3464-4848-90d9-8c09a2fb721a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 87AB7BF69CD74EC2BCB006DC8A523E02 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56A907C36F7A435CACAA97680C76D0F7 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52910,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52910\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:28:12.26\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68097,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68097\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:41:04.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "43733597-2a47-40d5-9723-2eaf1bbe4a32" ], + "x-ms-unique-id": [ "253" ], + "x-ms-client-request-id": [ "7ac788be-3f05-419a-80a1-80bfaac3e109" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -3735,24 +3734,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c7f62ee-d69a-40c1-a880-b4b719208660" ], + "x-ms-request-id": [ "15c22c10-b750-4517-94e1-a0d264f06012" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d10a487b-4381-4e02-af09-882024e3eccd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182843Z:d10a487b-4381-4e02-af09-882024e3eccd" ], + "x-ms-correlation-request-id": [ "e11bdfcb-e40f-49ec-9acf-8f2eb0280235" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014135Z:e11bdfcb-e40f-49ec-9acf-8f2eb0280235" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D508E1525BD24DD49D966820E5008BE4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 81851C19134241389D1D1508CE2D62EB Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52910,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52910\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:28:12.26\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68097,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68097\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:41:04.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -3763,12 +3762,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "283" ], - "x-ms-client-request-id": [ "b8639c5c-8855-486f-bac7-ba961401880d" ], + "x-ms-unique-id": [ "254" ], + "x-ms-client-request-id": [ "af06daea-bb60-4fe5-9def-81060facfe72" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3779,40 +3778,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a94c4e92-4540-4f37-90c0-f83632eb26d9", "d63b6466-fc19-468b-ab40-3659bbf653f8", "1bac6ae0-1c93-4bd6-9c7d-b77fe2b6b0a9" ], + "x-ms-original-request-ids": [ "3a1ccac0-81cb-479b-829b-cbfe4081a20d", "1450867f-5796-443a-a07b-a0169d6e22a6", "8581075c-15c7-4e92-88a0-bacd8eaca1b7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b2573b23-4228-4a94-b9c8-c86d5dfcee0d" ], - "x-ms-correlation-request-id": [ "b2573b23-4228-4a94-b9c8-c86d5dfcee0d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182843Z:b2573b23-4228-4a94-b9c8-c86d5dfcee0d" ], + "x-ms-request-id": [ "8568233a-e401-4078-97a0-6433c515f289" ], + "x-ms-correlation-request-id": [ "8568233a-e401-4078-97a0-6433c515f289" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014136Z:8568233a-e401-4078-97a0-6433c515f289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7B456EEB56942109EEC3E4D68C02656 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6F9C84165C74E61863E3E8B0C1111C0 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsflexjavaw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsflexjava3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsflexjavaw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsflexjava3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "e76937c1-ede8-464e-a459-04dc5a0a70d8" ], + "x-ms-unique-id": [ "255" ], + "x-ms-client-request-id": [ "aa384f18-0204-441e-bb7f-57acf24fe70b" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3823,31 +3822,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "19a21f8b-1d53-418a-b1e2-58e3b00ed495" ], + "x-ms-request-id": [ "b9827970-2384-4010-8268-a8bc3a8459c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/ecb02506-9544-4e82-a622-60da62964a55" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "18b94f5e-b755-4f8d-b148-7ba97c9ec125" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T182844Z:18b94f5e-b755-4f8d-b148-7ba97c9ec125" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e47b8117-549c-42a9-b9eb-1a5e73fc95c3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c3e6c079-8dc2-4259-b2c9-8bc43628595e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014136Z:c3e6c079-8dc2-4259-b2c9-8bc43628595e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 01FF9ECAD1574C28BFB5AFE5F0BC5F29 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A110216C8604C4AAADE68C62F386346 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:46c42f16-401e-0053-3af0-574d1f000000\\nTime:2025-11-17T18:28:44.3676111Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:e4dca613-e01e-0028-5454-be0f83000000\\nTime:2026-03-28T01:41:36.4384503Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsflexjavaw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsflexjava3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsflexjavaw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsflexjava3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -3862,25 +3861,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE260724570049\"" ], - "x-ms-request-id": [ "3a050e15-7a66-498f-b22e-00112a0f30e1" ], + "ETag": [ "\"0x8DE8C6B26862B87\"" ], + "x-ms-request-id": [ "4b575f6f-ee11-466e-b88a-29c2a8572cd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/037f5637-0e90-4af8-aea3-33bd1c2cd170" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b159cf8c-9dc4-4815-9992-b4f1c03d8b4c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "9d3a2bb3-066f-42d7-b1c4-2205238f0aba" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182845Z:9d3a2bb3-066f-42d7-b1c4-2205238f0aba" ], + "x-ms-correlation-request-id": [ "c6fc6ab2-a637-4a92-9ea8-9a2dd45682e3" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014136Z:c6fc6ab2-a637-4a92-9ea8-9a2dd45682e3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1BA4330D15414E0F88A9E1E7804C3C3A Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F593D4208F80489699ABF421CAE2FE55 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "440" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsflexjavaw8x9-0000000\",\"name\":\"app-package-functionsflexjavaw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsflexjava3wro-0000000\",\"name\":\"app-package-functionsflexjava3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -3891,12 +3890,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "286" ], - "x-ms-client-request-id": [ "1820cec6-ff20-4e78-8408-ea54852d88e6" ], + "x-ms-unique-id": [ "257" ], + "x-ms-client-request-id": [ "915dcf3a-f2ee-41a4-b429-bf734e88d701" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3907,40 +3906,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "778c01ff-91e9-4ebf-9262-5799414bd824", "1e249ecb-939b-4001-b919-8179cc34160e", "cb7076b5-8c86-4408-9571-4b6fb83d424a" ], + "x-ms-original-request-ids": [ "0fa94815-23c3-4eb2-9362-ce4a0d84c23d", "8cecf0d1-393c-47a8-bb76-239fbd441edf", "0778d7dc-e92c-45bf-a693-bb63db515ad4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "2efdd2f7-ab63-44fc-b337-ddcd4dcd301c" ], - "x-ms-correlation-request-id": [ "2efdd2f7-ab63-44fc-b337-ddcd4dcd301c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182845Z:2efdd2f7-ab63-44fc-b337-ddcd4dcd301c" ], + "x-ms-request-id": [ "fe0a3510-095b-473e-bee8-189ced3b5dae" ], + "x-ms-correlation-request-id": [ "fe0a3510-095b-473e-bee8-189ced3b5dae" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T014137Z:fe0a3510-095b-473e-bee8-189ced3b5dae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2AAC434F486427B96CE9977EBDD9102 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03299BEA7DCE4A908E8715BE81FBDD98 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "287" ], - "x-ms-client-request-id": [ "84b6b736-aa32-4a0c-82c0-0f34c64c3eee" ], + "x-ms-unique-id": [ "258" ], + "x-ms-client-request-id": [ "92fac9fe-5a2d-40b9-a9cc-a2bd13153ccb" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3951,16 +3950,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3615c7f5-e143-490e-ab51-f26a8fcb7bd0" ], + "x-ms-request-id": [ "65c3bbd8-b523-4963-9691-6d7395fa7184" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/61bcbacd-d882-40f9-bac5-917cc3c7521d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1fae4b34-b9b4-4bdd-b221-285c5a387f6d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1fc99846-943d-49e5-a44a-a954b6cccaac" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182846Z:1fc99846-943d-49e5-a44a-a954b6cccaac" ], + "x-ms-correlation-request-id": [ "730d9214-f8d6-47c5-bcfe-bdb0c477c2cc" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014137Z:730d9214-f8d6-47c5-bcfe-bdb0c477c2cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FB25DB4821345FEBFFCD343744CCF2C Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BEC95DBFD8754D668F09BABA2C8C8FA6 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -3978,12 +3977,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "288" ], - "x-ms-client-request-id": [ "7d27c0f1-21dd-4b20-9c9b-f9667ccafec5" ], + "x-ms-unique-id": [ "259" ], + "x-ms-client-request-id": [ "4fc50beb-9324-42e3-b9cf-a5f5688f428f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3994,40 +3993,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9d7ed067-381f-45c1-bc9c-ba776f603d60", "9dd9fc73-d26d-48d1-b60a-cc31b1da2dfa", "475640d2-33b0-4fde-b51a-e7d28353aa79" ], + "x-ms-original-request-ids": [ "d593e1e7-6bbb-404d-be60-f8a4271eedab", "7718417a-7b25-408d-9122-ebd0da40c8fc", "bac7275c-ce65-4b54-9ba9-eff4bc3b4f70" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6b78342f-b4f5-44c7-b27c-38ccfb6dac43" ], - "x-ms-correlation-request-id": [ "6b78342f-b4f5-44c7-b27c-38ccfb6dac43" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182847Z:6b78342f-b4f5-44c7-b27c-38ccfb6dac43" ], + "x-ms-request-id": [ "634fa60f-5f94-4a53-8918-17d0a21af79d" ], + "x-ms-correlation-request-id": [ "634fa60f-5f94-4a53-8918-17d0a21af79d" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T014138Z:634fa60f-5f94-4a53-8918-17d0a21af79d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64A5A49EB5CB43108D8BC6C021480913 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5F5E84CD6814D8EB036C19C2E106309 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "289" ], - "x-ms-client-request-id": [ "cbe13a83-20db-4e37-92d9-a539fd8d6052" ], + "x-ms-unique-id": [ "260" ], + "x-ms-client-request-id": [ "3f890087-2f72-4033-8430-7d12dff0d4e0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4038,16 +4037,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "25bbc3b4-c24f-4278-82bf-3430b0bfdd15" ], + "x-ms-request-id": [ "da9f76b5-7ae0-4e5b-9799-f92ceae21d0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/15b784db-032a-467e-8971-692114b3658f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9b0dd56c-385e-40bd-a173-d79ffa272297" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c1685ed9-7adb-4bc2-a9aa-145b58f841a1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T182847Z:c1685ed9-7adb-4bc2-a9aa-145b58f841a1" ], + "x-ms-correlation-request-id": [ "775ab04c-4f70-4f55-b4e8-17e304cb0d97" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014138Z:775ab04c-4f70-4f55-b4e8-17e304cb0d97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2BE77DD85FA48CFA93AEEB1DE3F16A3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:28:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 27F0468024E9444F81E642503D351534 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -4058,10 +4057,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Java-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Java-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Java-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Java-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -4081,30 +4080,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b1915564-e6f2-4a91-a02b-56186961f5a2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/eb037238-7fc1-4cc9-a43f-2098609ff8eb" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "6a91b94e-0db0-42e8-9361-2bb4427031f4" ], - "x-ms-correlation-request-id": [ "6a91b94e-0db0-42e8-9361-2bb4427031f4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182904Z:6a91b94e-0db0-42e8-9361-2bb4427031f4" ], + "x-ms-request-id": [ "850fe2c8-f2d8-4fdf-95f5-2b3dd924ea57" ], + "x-ms-correlation-request-id": [ "850fe2c8-f2d8-4fdf-95f5-2b3dd924ea57" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014152Z:850fe2c8-f2d8-4fdf-95f5-2b3dd924ea57" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6474F7E2E0394A1E86234C2EAFD0BEC6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:28:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:29:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B1DF4FD184A49BAB13B7C7579F7B9A2 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:41:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1600" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0504166c-0000-0200-0000-691b69700000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Java-w8x9\",\r\n \"name\": \"Functions-Flex-Java-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-w8x9\",\r\n \"AppId\": \"92e030bd-22b9-42a1-8732-ad4b05e6ad5b\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"4d80d63b-ad7e-49e9-894e-0925317090f0\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Java-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:28:49.9983613+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-w8x9_92e030bd-22b9-42a1-8732-ad4b05e6ad5b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"83009471-0000-0200-0000-69c731e00000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Java-3wro\",\r\n \"name\": \"Functions-Flex-Java-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Java-3wro\",\r\n \"AppId\": \"bba8b51a-196f-4938-bcf4-5387d44ac633\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"0c757c3f-a532-4bae-bb47-52c485ac89e9\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Java-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:41:40.1581305+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-3wro_bba8b51a-196f-4938-bcf4-5387d44ac633_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsflexjavaw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"java\",\r\n \"version\": \"17\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsflexjava3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"java\",\r\n \"version\": \"17\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4118,43 +4117,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F00F0A33CB\"" ], + "ETag": [ "\"1DCBE540F177C80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dcff8a1a-900d-48f2-b603-941918a1101d" ], + "x-ms-request-id": [ "b07329a8-517e-4fc8-8288-a27d51881462" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e87c739b-ad5d-454e-8b9b-ce0c43febc1e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1c9dd6af-5f0e-468f-a945-438d62eecfdc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "f231dbec-7354-4914-adb5-c75e70c68ff2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182928Z:f231dbec-7354-4914-adb5-c75e70c68ff2" ], + "x-ms-correlation-request-id": [ "305b7c41-8994-4aaa-8963-d7e33d7af473" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014216Z:305b7c41-8994-4aaa-8963-d7e33d7af473" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 655B54429DBF4100BF3D2D3BD4D9D353 Ref B: MWH011020807031 Ref C: 2025-11-17T18:29:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:29:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F63DA1C670D5472F94EBE0B2496A6AFE Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:41:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9459" ], + "Content-Length": [ "9626" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Java-w8x9\",\"repositorySiteName\":\"Functions-Flex-Java-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\",\"functions-flex-java-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:29:06.4533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsflexjavaw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-w8x9\\\\$Functions-Flex-Java-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-java-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Java-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Java-3wro\",\"repositorySiteName\":\"Functions-Flex-Java-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-3wro.azurewebsites.net\",\"functions-flex-java-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:41:54.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsflexjava3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-3wro\\\\$Functions-Flex-Java-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-java-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "292" ], - "x-ms-client-request-id": [ "f9be1bfd-1dbc-459a-9982-5d0ac28956e4" ], + "x-ms-unique-id": [ "263" ], + "x-ms-client-request-id": [ "500fef61-dfb4-43c4-8e9c-030787a10104" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -4164,42 +4163,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F01BA0DBCB\"" ], + "ETag": [ "1DCBE541B549FD5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "940a8a1f-3c7f-40bd-a4a7-807b7f52b75a" ], + "x-ms-request-id": [ "df95d453-462d-481c-8e9a-b76c06af7778" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0ec86180-3003-4e13-a637-133ea34fce6f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182958Z:0ec86180-3003-4e13-a637-133ea34fce6f" ], + "x-ms-correlation-request-id": [ "617e47bc-45b1-4549-91f7-2d4c9a460b04" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014246Z:617e47bc-45b1-4549-91f7-2d4c9a460b04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD12179859724640A7E454787D8258B6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:29:58Z" ], - "Date": [ "Mon, 17 Nov 2025 18:29:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6945109660714D7491E0AB9C06FB3A9E Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:46Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9425" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Java-w8x9\",\"repositorySiteName\":\"Functions-Flex-Java-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\",\"functions-flex-java-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:29:28.1566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsflexjavaw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-w8x9\\\\$Functions-Flex-Java-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-java-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Java-3wro\",\"repositorySiteName\":\"Functions-Flex-Java-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-3wro.azurewebsites.net\",\"functions-flex-java-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:42:15.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsflexjava3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-3wro\\\\$Functions-Flex-Java-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-java-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "27e01a55-4fd8-434d-9b89-fa7bd71367c4" ], + "x-ms-unique-id": [ "264" ], + "x-ms-client-request-id": [ "2eb22fff-d0ed-4a21-9589-f43e017df3b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4210,42 +4209,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F01BA0DBCB\"" ], + "ETag": [ "1DCBE541B549FD5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0aa43a5-db3e-48d3-b1db-df19f3942899" ], + "x-ms-request-id": [ "1c8d6eed-5e30-4da5-8403-6a274c4e1aa5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4fb0a9da-6155-40f5-b57b-22590aa31f2b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182959Z:4fb0a9da-6155-40f5-b57b-22590aa31f2b" ], + "x-ms-correlation-request-id": [ "b250bd8b-20ca-4066-8ee5-8e5efa9caf42" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014247Z:b250bd8b-20ca-4066-8ee5-8e5efa9caf42" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 521BE3FF70B3417388A0BB43FC70003C Ref B: MWH011020807031 Ref C: 2025-11-17T18:29:58Z" ], - "Date": [ "Mon, 17 Nov 2025 18:29:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 630710D2953941188F7E81EFD2506528 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:47Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9425" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Java-w8x9\",\"repositorySiteName\":\"Functions-Flex-Java-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\",\"functions-flex-java-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:29:28.1566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsflexjavaw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-w8x9\\\\$Functions-Flex-Java-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-java-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Java-3wro\",\"repositorySiteName\":\"Functions-Flex-Java-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-3wro.azurewebsites.net\",\"functions-flex-java-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:42:15.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsflexjava3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-3wro\\\\$Functions-Flex-Java-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-java-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "294" ], - "x-ms-client-request-id": [ "ca30c1bb-705d-44e2-a62f-fe75568f705e" ], + "x-ms-unique-id": [ "265" ], + "x-ms-client-request-id": [ "420b6ab4-5f3a-4ec9-b41f-d22a4d13eb8a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4257,40 +4256,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5ea52b9a-7252-4f7d-9b0c-390fcd9c79d1" ], + "x-ms-request-id": [ "0bda3bfb-85ff-48ad-aac6-e9d08b9f6f77" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/edcfd7e7-7e36-4ff2-9873-5feac865bbcb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/70e642c0-d276-4234-af74-5e24b0828ec2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "64ee919c-2847-4a77-bb22-fccb008c3ad6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182959Z:64ee919c-2847-4a77-bb22-fccb008c3ad6" ], + "x-ms-correlation-request-id": [ "f875a29c-46d7-4541-8aff-1a72183f7df6" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014247Z:f875a29c-46d7-4541-8aff-1a72183f7df6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 651D0B4BAB2C4C25B34770374BE6268D Ref B: MWH011020807031 Ref C: 2025-11-17T18:29:59Z" ], - "Date": [ "Mon, 17 Nov 2025 18:29:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4EFC57424C29426F9EF7CD1641B20DD9 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:47Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "295" ], - "x-ms-client-request-id": [ "99c742e4-0ac8-46bc-b5cd-29aef9e18907" ], + "x-ms-unique-id": [ "266" ], + "x-ms-client-request-id": [ "5ca406d1-ec54-4ec0-8804-7c2782cfd5e7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4302,41 +4301,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e479f66e-d0bd-4e02-855b-73a8f851c65a" ], + "x-ms-request-id": [ "7362b839-2851-44b9-94ba-44d772f070eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/86ee5cc0-76d6-4eb9-975b-918091fb6a59" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6049fd3-9284-465d-8a74-33bd3b6932fa" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T182959Z:c6049fd3-9284-465d-8a74-33bd3b6932fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/af3b69da-7d6d-4071-aae6-bdbab81af572" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "95068771-7d0f-4360-bb62-fc02042b1079" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014248Z:95068771-7d0f-4360-bb62-fc02042b1079" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 563D95AF8E794A7A9EC5527A955BDE76 Ref B: MWH011020807031 Ref C: 2025-11-17T18:29:59Z" ], - "Date": [ "Mon, 17 Nov 2025 18:29:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 927E723707C9480FB71FCAFF5343E799 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:47Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "a89f76af-0c6c-4051-82eb-4df6e1055f25" ], + "x-ms-unique-id": [ "267" ], + "x-ms-client-request-id": [ "2a3ef2c0-4b64-4d84-a389-61f0f33dc813" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4348,40 +4347,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a8338d43-18c7-49d7-97b2-95ece4053789" ], + "x-ms-request-id": [ "901a08cd-965e-4742-ace7-b3e7d06ef7f0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a5db4502-af13-41df-b4ef-e23583128c7a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183000Z:a5db4502-af13-41df-b4ef-e23583128c7a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "74b40af9-938e-4563-9a8a-64a9a55a447f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014248Z:74b40af9-938e-4563-9a8a-64a9a55a447f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 50AEBC3801984E0AA1EA1F0B3165F28B Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:00Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 30FC29F0D1AB4BA490D219F4F96F19C9 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52910,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52910\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:28:12.26\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68097,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68097\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:41:04.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "297" ], - "x-ms-client-request-id": [ "45c88142-1785-494a-8087-fe8c47fbfef3" ], + "x-ms-unique-id": [ "268" ], + "x-ms-client-request-id": [ "9af88a27-89ed-49b0-8c52-4877baace658" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4393,40 +4392,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2bc130e7-cd8d-4a6b-aa98-fb066f110105" ], + "x-ms-request-id": [ "67500e97-f4bc-4b7f-9f59-58ee49db2297" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/73ccbdb6-492b-4bd3-94bb-a894c430f682" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6ac9c8ca-7a3a-4419-90ef-406a5d709b75" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183002Z:6ac9c8ca-7a3a-4419-90ef-406a5d709b75" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3ec436bd-e494-4d58-b64e-ad764c469c79" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "5366a2fc-9f4a-4981-8b30-560a7c9c671f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014248Z:5366a2fc-9f4a-4981-8b30-560a7c9c671f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECFC95A40132494780053DA2CF6BC843 Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:00Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6D528DE1EB254CCB9D107A26A3F9FE14 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "298" ], - "x-ms-client-request-id": [ "ec29fbe3-45c1-4ea2-b3ad-3bc0873eea07" ], + "x-ms-unique-id": [ "269" ], + "x-ms-client-request-id": [ "3d284159-9dde-48f3-82b3-68170d15706c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4437,42 +4436,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F01BA0DBCB\"" ], + "ETag": [ "1DCBE541B549FD5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "45e7b386-49f1-497a-973c-9d864e7cff03" ], + "x-ms-request-id": [ "a6bc8d44-144a-4cd6-8a89-0480d859f92a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "111a808f-a0d5-4a69-9970-7a134c83da01" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183003Z:111a808f-a0d5-4a69-9970-7a134c83da01" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "109349f7-eb61-4107-8c21-2cb39a5dfee2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014249Z:109349f7-eb61-4107-8c21-2cb39a5dfee2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35C2C9E86C354C99BE014E2A64E8D1CA Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 04D7E08E3A3641C0AE72959A98598996 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:48Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9425" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Java-w8x9\",\"repositorySiteName\":\"Functions-Flex-Java-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\",\"functions-flex-java-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:29:28.1566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsflexjavaw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-w8x9\\\\$Functions-Flex-Java-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-java-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Java-3wro\",\"repositorySiteName\":\"Functions-Flex-Java-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-3wro.azurewebsites.net\",\"functions-flex-java-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:42:15.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsflexjava3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-3wro\\\\$Functions-Flex-Java-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-java-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "299" ], - "x-ms-client-request-id": [ "d28bbf03-b653-415e-9e9c-0b31dd727fd9" ], + "x-ms-unique-id": [ "270" ], + "x-ms-client-request-id": [ "bd7ed1cc-7bb6-4d17-8f4e-ca60a6b4d1bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4484,40 +4483,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1383ee4b-d106-4313-8f18-3b6bf4d498b2" ], + "x-ms-request-id": [ "23ecdb0c-4453-4273-82d4-1eafc3bdfadd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/11b47802-8e45-4c0a-aa3f-53e31e3af694" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "987f1fb8-6102-492c-a2bb-324c09365a11" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183003Z:987f1fb8-6102-492c-a2bb-324c09365a11" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a3a569ae-4fc3-408f-9857-e7629ee92bc5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d86416b1-2926-44f3-ba77-25b6e10f9132" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014249Z:d86416b1-2926-44f3-ba77-25b6e10f9132" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A925A6218A1439D9A88F130AE76FFDA Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A27927E535004194B4099AB90BED200F Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:49Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "2f44281f-905b-4662-b6e8-b7b549a861f4" ], + "x-ms-unique-id": [ "271" ], + "x-ms-client-request-id": [ "3972444c-e209-41a9-b41f-5a60ac1b4957" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4529,41 +4528,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce48cbca-2dd7-4d74-928c-b16fec8e1412" ], + "x-ms-request-id": [ "95fbfbea-1723-495f-a8c0-1eed965c6970" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e94997bb-c9fa-45f7-8478-40fadf5e7085" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bfabb6cd-6a13-4c7c-86c9-3bfc6e4fe861" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183004Z:bfabb6cd-6a13-4c7c-86c9-3bfc6e4fe861" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bd7f80f4-360c-4927-86fe-e148fabaea4b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "ed022a85-e923-411d-9b91-647a05722210" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014249Z:ed022a85-e923-411d-9b91-647a05722210" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EEA8CD7CE1B54ADCB95ED1DACF2F53C9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:03Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 093F77832E3145FEA10EB38C93E37B5B Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:49Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "301" ], - "x-ms-client-request-id": [ "21bf587e-6c60-4d96-821e-7cf1e4d7abac" ], + "x-ms-unique-id": [ "272" ], + "x-ms-client-request-id": [ "6e767d59-5c9d-4ef3-9c12-ba48c474d448" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4574,42 +4573,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F01BA0DBCB\"" ], + "ETag": [ "1DCBE541B549FD5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "89be1650-e2be-4870-874d-ee5e01eb7698" ], + "x-ms-request-id": [ "ebcb2b75-e58b-49ea-a6c2-25a76be2f2e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e1fca680-acf0-4949-9441-2ccbc02eefb6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183005Z:e1fca680-acf0-4949-9441-2ccbc02eefb6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "4fe65ea7-fb0c-46cd-aceb-83cde9983ff4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014250Z:4fe65ea7-fb0c-46cd-aceb-83cde9983ff4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F37BA9FED5B9424F88A64F58CE76D354 Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC23D5B8A4DC415EAD715C3FD81A3E6B Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9436" ], + "Content-Length": [ "9425" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Java-w8x9\",\"repositorySiteName\":\"Functions-Flex-Java-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-w8x9.azurewebsites.net\",\"functions-flex-java-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:29:28.1566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsflexjavaw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-w8x9\\\\$Functions-Flex-Java-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-java-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Java-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-java-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Java-3wro\",\"repositorySiteName\":\"Functions-Flex-Java-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-java-3wro.azurewebsites.net\",\"functions-flex-java-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-java-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-java-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:42:15.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsflexjava3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Java-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-Java-3wro\\\\$Functions-Flex-Java-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-java-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "70def511-9d78-40a5-b39f-9af63890fe36" ], + "x-ms-unique-id": [ "273" ], + "x-ms-client-request-id": [ "76c34170-1b0e-4c85-903f-fb8a2ab5dd40" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4621,40 +4620,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2853f966-62aa-4742-a201-dc1e8cf63323" ], + "x-ms-request-id": [ "2db7887c-5d52-4244-a8c2-556c159d4a4b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3d01f665-f536-4b67-b56a-d68534e69b38" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/626de12b-2e28-4fcb-b7ef-c82b78c4042c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7d8cc600-7ed2-4684-a777-07167b6625fa" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183006Z:7d8cc600-7ed2-4684-a777-07167b6625fa" ], + "x-ms-correlation-request-id": [ "94aa18af-c3e8-4083-a7ea-a775bf508287" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014250Z:94aa18af-c3e8-4083-a7ea-a775bf508287" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A70030D48A8B4B42878E5CD06441CF4D Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66DB683FBA484C2893AEDDFF9EFF1404 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "303" ], - "x-ms-client-request-id": [ "03fdc64c-0f0b-4b7c-b607-3ab9bd953c42" ], + "x-ms-unique-id": [ "274" ], + "x-ms-client-request-id": [ "86f0b0f4-9095-4f8a-a3de-590eb2360acc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4666,41 +4665,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e49b51bd-42e7-4e44-b6a6-19872bb3b4ba" ], + "x-ms-request-id": [ "a62d28cb-39c8-4e69-a5b9-0859095e4954" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d9297bbc-3fea-49c2-8657-92e1f3964c4f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a3d9d8e3-e9a1-46aa-994e-040b50b17086" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183008Z:a3d9d8e3-e9a1-46aa-994e-040b50b17086" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/637003c9-670e-4975-a68f-9faa8d34aec7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1095" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16495" ], + "x-ms-correlation-request-id": [ "e2ea8c67-a2f8-49f2-b28b-b0a7bbc1003c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014250Z:e2ea8c67-a2f8-49f2-b28b-b0a7bbc1003c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5AF69A103B943AABFF6D5CD3C3B924B Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6A0FEA475854287B84704BEE7510055 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4149" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9/config/web\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro/config/web\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "304" ], - "x-ms-client-request-id": [ "da3ea76a-4eeb-4a98-b7e2-2edb53c23e56" ], + "x-ms-unique-id": [ "275" ], + "x-ms-client-request-id": [ "2e7f373d-1604-4542-8081-92ddb719aea9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4712,40 +4711,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05b70853-ce00-4aac-9d8e-b6fd74f85217" ], + "x-ms-request-id": [ "ea69eea3-33ef-401d-a303-61fcede84382" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e64a700e-b93f-4ab7-b23b-08901904b1d0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183009Z:e64a700e-b93f-4ab7-b23b-08901904b1d0" ], + "x-ms-correlation-request-id": [ "f7339b14-cab0-4c06-bd5e-07bcbfa1eb93" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014251Z:f7339b14-cab0-4c06-bd5e-07bcbfa1eb93" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9CA6193DF024E3790341BCC18DECF83 Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F8200CBD964E4892AB1A0259CAFF613C Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:42:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52910,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52910\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:28:12.26\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68097,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68097\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:41:04.02\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Java-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Java-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "305" ], - "x-ms-client-request-id": [ "054a4dbf-528a-4f72-9389-0ba0e7ed2610" ], + "x-ms-unique-id": [ "276" ], + "x-ms-client-request-id": [ "9d6c14a5-e292-438e-a158-cd20d1388270" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4756,20 +4755,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F01BA0DBCB\"" ], + "ETag": [ "\"1DCBE541B549FD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d52308a-dcaa-4612-9c7e-7e0af347d5e6" ], + "x-ms-request-id": [ "cc99b3d0-068e-40e8-86c6-8e896955aa4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a58d11c0-ac2c-4907-8af5-51e02be444cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/895ae899-3b92-4bf7-99a6-b7d813eaace3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "8d997425-96a2-4fdc-8d6e-a750cb664f3a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183027Z:8d997425-96a2-4fdc-8d6e-a750cb664f3a" ], + "x-ms-correlation-request-id": [ "25534b6b-e17f-48d2-8179-660945fe2fcd" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014306Z:25534b6b-e17f-48d2-8179-660945fe2fcd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90E03DABBC994A6B948C990B3B259A89 Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D6F71F908284BEB9557BB955E31AACB Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:42:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4783,7 +4782,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-PowerShell-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-PowerShell-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -4798,18 +4797,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b91d3b48-d29d-421e-b2a9-daec6ecf9734" ], + "x-ms-request-id": [ "44f7707f-35c4-45a3-a3a5-3559f7a7dc8b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/72c00245-daf1-4346-b338-4b3edad32c4b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/332eb3f3-47f2-4034-b894-221d8eb098aa" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4da289e6-fce7-4637-82cf-63bb7e413178" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183028Z:4da289e6-fce7-4637-82cf-63bb7e413178" ], + "x-ms-correlation-request-id": [ "e3ab1b64-785e-434a-85e6-53b4cf9625fb" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014306Z:e3ab1b64-785e-434a-85e6-53b4cf9625fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53C0FE66F96A454B91A28106851D1A80 Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:27Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD06F24E977346D4BF5CFF0DFB062C40 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:06Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -4820,10 +4819,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -4839,42 +4838,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "def0d55c-a6ae-445c-8cfd-1213ce53d29b" ], + "x-ms-request-id": [ "123db7cd-afe6-4169-a997-caa8aa966335" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/bdae7357-dfb7-4062-9f6f-ee5d9715aafe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/768af76e-c1f1-4207-96cc-3f876d77d80b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "be0f327b-419e-4a67-aa8f-f2226deb9325" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T183034Z:be0f327b-419e-4a67-aa8f-f2226deb9325" ], + "x-ms-correlation-request-id": [ "2f4307af-6893-422a-b278-581b558a03b0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014309Z:2f4307af-6893-422a-b278-581b558a03b0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C60BB140CFCF49C38BFF61A2910A9E73 Ref B: MWH011020807031 Ref C: 2025-11-17T18:30:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:30:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D63EF660658424A994B25A40C431A33 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:06Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52911,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52911\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:30:33.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68098,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68098\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:43:09.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "309" ], - "x-ms-client-request-id": [ "b64e280e-225c-4e96-a1f7-c3ec0f66ab56" ], + "x-ms-unique-id": [ "280" ], + "x-ms-client-request-id": [ "b5647817-2298-40f9-97bb-bc8b113ff46f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -4885,41 +4884,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f94bea53-4f81-4f27-ac06-7443388fa14a" ], + "x-ms-request-id": [ "c4dee067-ebe9-4a5a-aa10-622eb04c399f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "588e13a1-1d3c-49cd-872c-f121908fb881" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183104Z:588e13a1-1d3c-49cd-872c-f121908fb881" ], + "x-ms-correlation-request-id": [ "2a14417a-0e59-44a1-ae7b-3ff33d7818a3" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014340Z:2a14417a-0e59-44a1-ae7b-3ff33d7818a3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D305819226B44AA290108033BBD2C6E6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9B296AB4B1C48F49D782081A3BD5297 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52911,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52911\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:30:33.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68098,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68098\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:43:09.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "310" ], - "x-ms-client-request-id": [ "b64e280e-225c-4e96-a1f7-c3ec0f66ab56" ], + "x-ms-unique-id": [ "281" ], + "x-ms-client-request-id": [ "b5647817-2298-40f9-97bb-bc8b113ff46f" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -4930,24 +4929,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6e7990e-c92f-4476-a5c7-26c18b1a39cf" ], + "x-ms-request-id": [ "fe28e316-cd29-497d-956e-e2a466802a01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "86861d90-8aa4-404a-a5d7-f9b6abbead23" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183104Z:86861d90-8aa4-404a-a5d7-f9b6abbead23" ], + "x-ms-correlation-request-id": [ "a55abf81-7d32-4637-aa69-dbde8ed413a9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014340Z:a55abf81-7d32-4637-aa69-dbde8ed413a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FEA9527A3354AA3A129C60772C17159 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26437A50D9F04DED91A91B2A8D08A859 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52911,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52911\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:30:33.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68098,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68098\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:43:09.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -4958,12 +4957,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "311" ], - "x-ms-client-request-id": [ "b8105538-562b-43c2-965c-3c8b78bca569" ], + "x-ms-unique-id": [ "282" ], + "x-ms-client-request-id": [ "db550f98-6fb2-457c-8c88-70a74a51f643" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4974,40 +4973,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ef8ed9a5-6731-4716-8f26-69a2a0ca6401", "0688e735-f8e6-459a-8af5-9321507a9d21", "7f61e812-c5f2-431d-92c2-8c740b2132bf" ], + "x-ms-original-request-ids": [ "56930f07-cf7a-44fa-bb4a-c5e4f32693ec", "5ae06e8b-e921-4cd8-a22e-47dc829da9a8", "0650c95f-1646-4972-a668-0d90098cd5a9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f8b745dc-7345-4caa-9552-335a608f7922" ], - "x-ms-correlation-request-id": [ "f8b745dc-7345-4caa-9552-335a608f7922" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183105Z:f8b745dc-7345-4caa-9552-335a608f7922" ], + "x-ms-request-id": [ "316b3d46-5749-4cf2-ba94-17c14c44fa49" ], + "x-ms-correlation-request-id": [ "316b3d46-5749-4cf2-ba94-17c14c44fa49" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014341Z:316b3d46-5749-4cf2-ba94-17c14c44fa49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49CB7993F298484B82CB27E3CDCAF44D Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9BCC3E450194ED1BDB08C1E7FF90552 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsflexpowershellw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsflexpowershell3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsflexpowershellw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsflexpowershell3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "e5834761-3bfb-4f24-8621-5b40472e18e9" ], + "x-ms-unique-id": [ "283" ], + "x-ms-client-request-id": [ "742119bd-4472-456d-9156-4ac83c654a64" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5018,31 +5017,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4a385c40-4e78-412d-9023-bad258c277f6" ], + "x-ms-request-id": [ "1deeaca6-b280-416e-b243-c1bd7d12532e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2558b4e5-206f-479e-94cd-5c537dfacce8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "845b14b9-1e1f-4119-a712-85fc0d48b2d3" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183106Z:845b14b9-1e1f-4119-a712-85fc0d48b2d3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b76bedf8-7d80-4ba2-965e-52340b12e1b9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8a4fa875-f010-4b1a-a38c-71aa0090fe16" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014341Z:8a4fa875-f010-4b1a-a38c-71aa0090fe16" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6B2DB823A324FFA8A1481A8C66E8D36 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B996E5DD5CE540CB98015FD033F03ADE Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:a4ae2835-f01e-002c-1ff0-573787000000\\nTime:2025-11-17T18:31:06.0495067Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:2fd8cbd2-201e-005d-2454-bed1ac000000\\nTime:2026-03-28T01:43:41.5617933Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsflexpowershellw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsflexpowershell3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsflexpowershellw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsflexpowershell3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -5057,25 +5056,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE260778CAE659\"" ], - "x-ms-request-id": [ "e343a024-83ae-4424-9705-85634ae1f271" ], + "ETag": [ "\"0x8DE8C6B71199385\"" ], + "x-ms-request-id": [ "9f636787-4764-4fc7-a017-f92643d4c2f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7695260f-8f8e-4647-a888-cd74c6faae43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6084e296-eee0-401c-b5f8-5853b95db40b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d4336680-3cb7-4901-b6a1-355b71cfc299" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183106Z:d4336680-3cb7-4901-b6a1-355b71cfc299" ], + "x-ms-correlation-request-id": [ "b3b3cb7a-bdad-4c82-9a93-51b8b3223522" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014342Z:b3b3cb7a-bdad-4c82-9a93-51b8b3223522" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C43AB04340EB40259A8CCD3F4277B990 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10F6D92FF35444BA86339AF6FECA7412 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsflexpowershellw8x9-0000000\",\"name\":\"app-package-functionsflexpowershellw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsflexpowershell3wro-0000000\",\"name\":\"app-package-functionsflexpowershell3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -5086,12 +5085,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "314" ], - "x-ms-client-request-id": [ "24ca5437-8a8d-4445-b96a-63ba251f50e4" ], + "x-ms-unique-id": [ "285" ], + "x-ms-client-request-id": [ "f4cd13bb-4db3-4d4e-b58b-eb10e28b0636" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5102,40 +5101,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "831d501e-823b-47e7-9682-5e01bc3d8f91", "f7a31d0f-1700-4356-9a38-834f2e4ee287", "def0969a-120f-4928-9555-93f159c0c064" ], + "x-ms-original-request-ids": [ "90e7bb2a-b47e-46b8-aad1-6912ac7f9975", "439f4304-bc92-4a65-acc4-944f0a90a485", "dac09d56-93de-40db-933c-aa849a14745f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5919a917-5818-4715-8f7a-17251765cd85" ], - "x-ms-correlation-request-id": [ "5919a917-5818-4715-8f7a-17251765cd85" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183107Z:5919a917-5818-4715-8f7a-17251765cd85" ], + "x-ms-request-id": [ "facf7610-0913-4bd8-a707-9ea9fa2d3768" ], + "x-ms-correlation-request-id": [ "facf7610-0913-4bd8-a707-9ea9fa2d3768" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014342Z:facf7610-0913-4bd8-a707-9ea9fa2d3768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FC8DDB1F8A84D4C9283EC789D345163 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:06Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 786AA4175C4A467699323063C713D8F7 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:42Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "2d91a73f-c405-45d8-9541-1a2111cf0f02" ], + "x-ms-unique-id": [ "286" ], + "x-ms-client-request-id": [ "60c5dd7b-38dd-4aa8-8a9e-3a75964ecdbb" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5146,16 +5145,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fc64126d-5605-4cd1-84a8-4a8206b25df0" ], + "x-ms-request-id": [ "d64abf0a-5d9f-4aeb-b011-08de9dad7d59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/51bfb9bd-b759-4e60-8c24-914d15e9595d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7d84aca6-4f8f-460e-b1ea-2f648c9450d3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "01596249-0c11-4184-a8f8-d17c3837b247" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183108Z:01596249-0c11-4184-a8f8-d17c3837b247" ], + "x-ms-correlation-request-id": [ "0384ca67-4ac1-4358-9583-78d3944714fd" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014343Z:0384ca67-4ac1-4358-9583-78d3944714fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BC000A0CB6F4DCD91403500A234C2CD Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 337E6E8791CC4D91BC90224B1171838D Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:42Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -5173,12 +5172,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "316" ], - "x-ms-client-request-id": [ "b1449a76-3f20-431e-9583-757b844f889d" ], + "x-ms-unique-id": [ "287" ], + "x-ms-client-request-id": [ "e271b216-a8e1-4880-9386-8491b3d95383" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5189,40 +5188,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a7f451c6-9332-43c0-8d93-3aadc7e8ce49", "0d35e915-819e-401f-a6e3-be6c955f4ae3", "a661e1dd-e118-4425-9d11-5ab0abe16386" ], + "x-ms-original-request-ids": [ "09965bf7-7a31-4d34-af4f-cc9f639a6935", "5c53bade-817e-4ecc-b3bd-baa399665dd9", "09680fa2-7c07-4dd0-8d2c-206505a92e27" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3c229366-687b-47e1-bec7-6ba5b80da3c3" ], - "x-ms-correlation-request-id": [ "3c229366-687b-47e1-bec7-6ba5b80da3c3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183108Z:3c229366-687b-47e1-bec7-6ba5b80da3c3" ], + "x-ms-request-id": [ "2319f3cc-49d3-4458-83a1-1d4357e1c225" ], + "x-ms-correlation-request-id": [ "2319f3cc-49d3-4458-83a1-1d4357e1c225" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014343Z:2319f3cc-49d3-4458-83a1-1d4357e1c225" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B32D64154F44C32B10F4D2CF8FA1A64 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F02938BFD704E3DB945E1240A46907A Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "8e4e6f47-b668-49f2-b84e-75d111519ac6" ], + "x-ms-unique-id": [ "288" ], + "x-ms-client-request-id": [ "9c416ea7-4020-41a9-86e2-1c0b238890a0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5233,16 +5232,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7407cc11-ffe5-4441-b213-52b9a62cfa44" ], + "x-ms-request-id": [ "c25be2ba-bbdb-4209-8d36-815543dbb48d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/bd073b4d-4a8e-4fce-9fc6-5805460379a3" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2f9b4fa1-c67f-4896-a4a0-e1cc610823c1" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183109Z:2f9b4fa1-c67f-4896-a4a0-e1cc610823c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/eaa90beb-6f5c-4161-abb6-42ee6ec6fe71" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "50a431f9-74ca-40d0-b684-084c26324400" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014344Z:50a431f9-74ca-40d0-b684-084c26324400" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 91BA2C42A6D54293932BD041482F669C Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A6C6D977ECC42EB938E3C730BCF99A2 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -5253,10 +5252,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-PowerShell-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -5276,30 +5275,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/76acbf76-7993-47c8-a266-5e73c6feed5f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e0591a80-6bab-4596-8e4f-8890c98be4cb" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "2d32afec-f99e-48e9-b703-fc7b3fc0c4a6" ], - "x-ms-correlation-request-id": [ "2d32afec-f99e-48e9-b703-fc7b3fc0c4a6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183123Z:2d32afec-f99e-48e9-b703-fc7b3fc0c4a6" ], + "x-ms-request-id": [ "34b12c45-d962-4d8d-ad23-40be888e0acc" ], + "x-ms-correlation-request-id": [ "34b12c45-d962-4d8d-ad23-40be888e0acc" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014400Z:34b12c45-d962-4d8d-ad23-40be888e0acc" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 865FF14460994AECBEE6BB5E5AF598B8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 77357250F4E74D52A282AEC4B7864EA9 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:43:44Z" ], + "Date": [ "Sat, 28 Mar 2026 01:43:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0504e776-0000-0200-0000-691b69fb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-PowerShell-w8x9\",\r\n \"name\": \"Functions-Flex-PowerShell-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-w8x9\",\r\n \"AppId\": \"24b8a2ca-9998-4333-8118-ff36434a5c74\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ac211e29-8b06-494c-8235-95cb1d5315de\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-PowerShell-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:31:11.5940642+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-w8x9_24b8a2ca-9998-4333-8118-ff36434a5c74_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8300fe75-0000-0200-0000-69c7325f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-PowerShell-3wro\",\r\n \"name\": \"Functions-Flex-PowerShell-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-PowerShell-3wro\",\r\n \"AppId\": \"73904fad-1a42-4b9e-9cec-5a2dd95b15bf\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"20b0b8c4-d784-4c4d-92b5-184ae96fd401\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-PowerShell-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:43:46.2304096+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-3wro_73904fad-1a42-4b9e-9cec-5a2dd95b15bf_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsflexpowershellw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsflexpowershell3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5313,43 +5312,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F061EC0EA0\"" ], + "ETag": [ "\"1DCBE545B3A0BD5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0dce64a-f28c-4572-8e80-3ac0410230ab" ], + "x-ms-request-id": [ "c9ffcfee-6ad4-4ff2-b597-b49b23994d5a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d3846a0d-1ad0-48bd-aa84-64aed3388218" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8bb95618-f75d-4b0c-91c3-091ae91f9eeb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "63145000-c8dc-4fef-8ac2-e0ea79a10fa0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183147Z:63145000-c8dc-4fef-8ac2-e0ea79a10fa0" ], + "x-ms-correlation-request-id": [ "fb343fb5-5530-46fd-bd20-40db6ca602dd" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014423Z:fb343fb5-5530-46fd-bd20-40db6ca602dd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F216C04973164D688B13465959415221 Ref B: MWH011020807031 Ref C: 2025-11-17T18:31:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:31:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0458BD26A290445BAFB117FE9542C9BF Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:00Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9562" ], + "Content-Length": [ "9729" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-PowerShell-w8x9\",\"repositorySiteName\":\"Functions-Flex-PowerShell-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\",\"functions-flex-powershell-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:31:25.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsflexpowershellw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-w8x9\\\\$Functions-Flex-PowerShell-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-PowerShell-3wro\",\"repositorySiteName\":\"Functions-Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\",\"functions-flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:44:02.2366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsflexpowershell3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-3wro\\\\$Functions-Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "320" ], - "x-ms-client-request-id": [ "ee574fbe-1a68-47b5-a4a1-0341320c8233" ], + "x-ms-unique-id": [ "291" ], + "x-ms-client-request-id": [ "fabeedf8-401d-424d-ab4b-546dd3ac22a7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -5359,42 +5358,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F06E90F475\"" ], + "ETag": [ "1DCBE5467592CE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b7b7a809-31e0-4446-81ce-d3b7fb627f4c" ], + "x-ms-request-id": [ "c562ac7d-058c-4755-8a5d-fb00ade15a04" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4f01f10b-e54f-458b-92ed-d1d4863ea8d1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183217Z:4f01f10b-e54f-458b-92ed-d1d4863ea8d1" ], + "x-ms-correlation-request-id": [ "276773e1-4523-4d8a-b406-0792800de215" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014455Z:276773e1-4523-4d8a-b406-0792800de215" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B612C6CE6DF45AE9000DE1271435162 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:17Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F89FB2CC1706475A8450692ABCA72CDA Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:54Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9539" ], + "Content-Length": [ "9523" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-PowerShell-w8x9\",\"repositorySiteName\":\"Functions-Flex-PowerShell-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\",\"functions-flex-powershell-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:31:47.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsflexpowershellw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-w8x9\\\\$Functions-Flex-PowerShell-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-PowerShell-3wro\",\"repositorySiteName\":\"Functions-Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\",\"functions-flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:44:23.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsflexpowershell3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-3wro\\\\$Functions-Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "321" ], - "x-ms-client-request-id": [ "c482862c-60e9-4cec-893d-d74dd866bbfb" ], + "x-ms-unique-id": [ "292" ], + "x-ms-client-request-id": [ "ca370de8-2cac-4522-b135-42ca47b85beb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5405,42 +5404,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F06E90F475\"" ], + "ETag": [ "1DCBE5467592CE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "777e921f-b6d2-4531-bc2c-433967125b00" ], + "x-ms-request-id": [ "1868c648-9ee0-4cc5-b0be-5ee9a3907d7a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3a8c4b1b-c75f-46f6-a571-5d042ef24e0a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183218Z:3a8c4b1b-c75f-46f6-a571-5d042ef24e0a" ], + "x-ms-correlation-request-id": [ "5b8e5825-cbdf-4017-9b2c-62714f8a6eb9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014455Z:5b8e5825-cbdf-4017-9b2c-62714f8a6eb9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF68AE3120B847C19EB4DAE15F688B65 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DEE5ADC99F847FCB771E25868E1DD8C Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:55Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9539" ], + "Content-Length": [ "9523" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-PowerShell-w8x9\",\"repositorySiteName\":\"Functions-Flex-PowerShell-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\",\"functions-flex-powershell-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:31:47.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsflexpowershellw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-w8x9\\\\$Functions-Flex-PowerShell-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-PowerShell-3wro\",\"repositorySiteName\":\"Functions-Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\",\"functions-flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:44:23.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsflexpowershell3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-3wro\\\\$Functions-Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "322" ], - "x-ms-client-request-id": [ "0bcb4968-477a-44f8-99e5-c5501fa27b6d" ], + "x-ms-unique-id": [ "293" ], + "x-ms-client-request-id": [ "196a76b1-5fbd-4170-a374-477c9ab2c5c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5452,40 +5451,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3ea57086-fe14-4fcd-99b9-a95f8ba8b4a0" ], + "x-ms-request-id": [ "dac9703c-fd6c-4b90-b95f-be0a11b5bddb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bc87922b-1b1c-467f-a9d1-cd8b95814649" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/30f1b08e-f17a-48fc-a32f-68f1e419393a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "82f95b2c-ce0e-4bf3-a501-a9bd5f9b5061" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183220Z:82f95b2c-ce0e-4bf3-a501-a9bd5f9b5061" ], + "x-ms-correlation-request-id": [ "6acc0f42-53b2-496d-9eba-2fab4432e9dc" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014456Z:6acc0f42-53b2-496d-9eba-2fab4432e9dc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C980384C4C7949B3A6B3FECFA2A6F4E9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9E3A77108A034C95B63E86DED10D1A9A Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:56Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "6e3535b5-1816-48f6-9b9a-13f4007839be" ], + "x-ms-unique-id": [ "294" ], + "x-ms-client-request-id": [ "d2cd2d2c-7dcf-4108-82a4-de6a79850f81" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5497,41 +5496,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "843f6fde-5077-4ffb-9ae6-ae69766ff4e1" ], + "x-ms-request-id": [ "3fd34909-76da-4b2f-8aea-af5406e27e6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e102f097-013f-4767-ab63-4ec09c0e8ad6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2847435-c4c4-40de-a0c4-d98084af42cb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183221Z:b2847435-c4c4-40de-a0c4-d98084af42cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b7871cbd-b55c-4ed7-9e66-763ea7e3b276" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "75fd010e-ed88-4ebb-81dd-05b9b664c6ed" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014456Z:75fd010e-ed88-4ebb-81dd-05b9b664c6ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CC4EBEEBE674F14A2DEF23E44939FD4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C634C45374841C7881A9B66FA98D25E Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:56Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "324" ], - "x-ms-client-request-id": [ "6c44d295-3ba2-4857-bf56-bb9e19901da0" ], + "x-ms-unique-id": [ "295" ], + "x-ms-client-request-id": [ "ed27a304-62e2-465c-b2cd-648929c145fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5543,40 +5542,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac433bc5-bf46-4860-9373-72ac656263da" ], + "x-ms-request-id": [ "0a497fa3-a6cf-4cb6-a3d1-4afb53d2905b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4e5b7414-3cd4-420c-8fd6-43606dafc23a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183221Z:4e5b7414-3cd4-420c-8fd6-43606dafc23a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "e9bac4d5-d443-420c-b5a2-edceeb869ef6" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014457Z:e9bac4d5-d443-420c-b5a2-edceeb869ef6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9940D7350BB84CE08F60667F9BCC1BC6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B8CB459598E4264872D51DE3AC5460D Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:56Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52911,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52911\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:30:33.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68098,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68098\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:43:09.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "325" ], - "x-ms-client-request-id": [ "e543cb79-bff5-45d5-bae0-dda5e31efbe6" ], + "x-ms-unique-id": [ "296" ], + "x-ms-client-request-id": [ "85227c69-9765-438f-bb71-35e2bb28f717" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5588,40 +5587,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41d25827-b789-4a67-98a6-8971f6eb8eed" ], + "x-ms-request-id": [ "f55c0a30-47c7-4da5-92bb-c6b42e5c4153" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/132d5a82-2a8a-4c09-8d4e-5f4ae55beb7e" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d59a1200-473b-41bb-b095-a26393103627" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183222Z:d59a1200-473b-41bb-b095-a26393103627" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d07e6c44-50e5-4083-9c16-3b3a06142586" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "5d60239e-c82a-4959-bd32-a006e0cbd9df" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014457Z:5d60239e-c82a-4959-bd32-a006e0cbd9df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92672292FD62437692C6EB72F2CB3CF7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E3F7EE39C8246AAB15B7FC0BAC49946 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "326" ], - "x-ms-client-request-id": [ "a4cf652a-c7f0-4810-b981-06954da8511d" ], + "x-ms-unique-id": [ "297" ], + "x-ms-client-request-id": [ "90d62cd0-c0ac-49c0-9ded-7ac2ed64e59d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5632,42 +5631,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F06E90F475\"" ], + "ETag": [ "1DCBE5467592CE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e2d59d9-0c06-4d84-a877-9e7462302c94" ], + "x-ms-request-id": [ "caa2173c-41d6-4609-96ef-8c1212de545d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63a80ac4-0e3f-4f79-9593-8785c9aac97f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183222Z:63a80ac4-0e3f-4f79-9593-8785c9aac97f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "aff21ab0-95e4-4ed5-96de-4f0adc448454" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014457Z:aff21ab0-95e4-4ed5-96de-4f0adc448454" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2987C1649E748D89617CF3E31A8DBAB Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC28396AA1074F42A0817B4D954D5D4F Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9539" ], + "Content-Length": [ "9523" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-PowerShell-w8x9\",\"repositorySiteName\":\"Functions-Flex-PowerShell-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\",\"functions-flex-powershell-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:31:47.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsflexpowershellw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-w8x9\\\\$Functions-Flex-PowerShell-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-PowerShell-3wro\",\"repositorySiteName\":\"Functions-Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\",\"functions-flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:44:23.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsflexpowershell3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-3wro\\\\$Functions-Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "327" ], - "x-ms-client-request-id": [ "148d9069-fa49-48c3-82b8-2c3e19715606" ], + "x-ms-unique-id": [ "298" ], + "x-ms-client-request-id": [ "604fd82a-a99b-4c33-93cf-846d7179afec" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5679,40 +5678,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43e1c193-549d-404e-8589-f909c3885c65" ], + "x-ms-request-id": [ "f1d2743e-0af3-45c8-8d47-060173953d0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/52f6fb09-0b0e-4966-9849-162510dca8de" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f7d4927f-94b4-48b9-a628-5297fd39228c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0872a6df-313e-4c98-a5cc-f7d8ee10ed64" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183223Z:0872a6df-313e-4c98-a5cc-f7d8ee10ed64" ], + "x-ms-correlation-request-id": [ "207eafe4-f659-4533-b136-85d3a398e4ea" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014458Z:207eafe4-f659-4533-b136-85d3a398e4ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53628EAC94124F33B77345A24F874C9B Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82B2C47554FA4BD1AD396F3B1C2C7D57 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "328" ], - "x-ms-client-request-id": [ "552cfb05-fe41-4e8a-915b-072e75b70719" ], + "x-ms-unique-id": [ "299" ], + "x-ms-client-request-id": [ "b7068f6e-ef02-47fc-b1b2-2e2a97a59765" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5724,41 +5723,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "781e1604-bdbd-4163-92f1-0e523211e8f7" ], + "x-ms-request-id": [ "5e982235-eb51-43fd-b56a-66da5f0019a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6e4a7b1d-cdf8-4828-b99a-b1ee00e0ab85" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3b31ca18-1fd3-421d-8f09-7bc3287576e3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "397470f1-69fa-4525-a752-61e50bdf9670" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183223Z:397470f1-69fa-4525-a752-61e50bdf9670" ], + "x-ms-correlation-request-id": [ "28f3120a-739b-4996-a2db-221e0ca81569" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014458Z:28f3120a-739b-4996-a2db-221e0ca81569" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7F984A10AB404D6DB69C1292DCF45A05 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 22079F057A87433AB76E33380A1EF5A1 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:58Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "329" ], - "x-ms-client-request-id": [ "09760809-de15-456a-8ee7-1c1c649c0209" ], + "x-ms-unique-id": [ "300" ], + "x-ms-client-request-id": [ "52725906-922e-4c23-b3fe-2905f7b1b064" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5769,42 +5768,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F06E90F475\"" ], + "ETag": [ "1DCBE5467592CE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c6f51ba1-a830-4533-9b47-c898dd021817" ], + "x-ms-request-id": [ "5f8a0b08-3c5b-480c-a130-ff72ec1aa047" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c81a536-34bb-4520-8e0e-4207cc71eab9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183224Z:6c81a536-34bb-4520-8e0e-4207cc71eab9" ], + "x-ms-correlation-request-id": [ "c2ffc745-53f9-413b-ba5c-bc999b814667" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014458Z:c2ffc745-53f9-413b-ba5c-bc999b814667" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 37AF397210FA4D9EB32CA1AFE42241E0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E3C0F9EBB7F4F5683522DA283DCC76F Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:58Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9539" ], + "Content-Length": [ "9523" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-PowerShell-w8x9\",\"repositorySiteName\":\"Functions-Flex-PowerShell-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-w8x9.azurewebsites.net\",\"functions-flex-powershell-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:31:47.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsflexpowershellw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-w8x9\\\\$Functions-Flex-PowerShell-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-powershell-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-PowerShell-3wro\",\"repositorySiteName\":\"Functions-Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-powershell-3wro.azurewebsites.net\",\"functions-flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:44:23.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsflexpowershell3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Flex-PowerShell-3wro\\\\$Functions-Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "330" ], - "x-ms-client-request-id": [ "3fc36a2e-84df-44db-bf6f-22cbce99f0ba" ], + "x-ms-unique-id": [ "301" ], + "x-ms-client-request-id": [ "e714201a-46b4-4b99-9196-7014455ede27" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5816,40 +5815,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0fc2c52-e654-4b65-a550-90b69b1040b8" ], + "x-ms-request-id": [ "e37e64d0-7be5-431c-979c-ba0d4cd24543" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ac5b0d86-1725-490c-b782-2dc6205c5a3a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1bb71147-e65f-4032-81cf-85152dd49353" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b4aba554-1a87-4909-ade8-7fd0a016890a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183224Z:b4aba554-1a87-4909-ade8-7fd0a016890a" ], + "x-ms-correlation-request-id": [ "814d08b2-b667-48df-a301-1b3f42d75425" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014459Z:814d08b2-b667-48df-a301-1b3f42d75425" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5247C987BD0842348A44B4B3411B49F0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 766C5A344A864FCE8EB1D091A2F4F6D5 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:59Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "331" ], - "x-ms-client-request-id": [ "b9ce220d-2535-4e87-b6b9-2ca5485fdb34" ], + "x-ms-unique-id": [ "302" ], + "x-ms-client-request-id": [ "08a10864-0de4-4ba7-aa99-5db7c274457e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5861,41 +5860,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af569765-6fb7-4f3e-aad3-c72733b39345" ], + "x-ms-request-id": [ "31b17f91-2843-48f4-9884-1b3c4a5ffc81" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/83366c8a-05b6-4bed-9ff8-04d44e8da3f0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4c4d138e-85d3-45f0-a917-e104b14751e4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183224Z:4c4d138e-85d3-45f0-a917-e104b14751e4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/04d64e83-eeee-46d1-a37d-b76877a7a487" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "f0b1ca0b-0150-457d-afdb-ba7746b1480a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014459Z:f0b1ca0b-0150-457d-afdb-ba7746b1480a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3849A1691D284274A67651FF2FD78E59 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DCF977064E534BDFBAF5A87437ABE43D Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:59Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9/config/web\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro/config/web\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "eb99c43c-bd0b-4fe7-85a2-9b45efc427cd" ], + "x-ms-unique-id": [ "303" ], + "x-ms-client-request-id": [ "aa48f8db-a4ce-4157-8ff9-7dedab9e726f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5907,40 +5906,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "284c5582-3c95-4e8b-b5e3-cf59a0039e3d" ], + "x-ms-request-id": [ "6371b715-88fd-4746-a587-7f77a21fe8cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9151660e-bd75-4d77-bc95-3f77864ddc3c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183225Z:9151660e-bd75-4d77-bc95-3f77864ddc3c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "6fec75ae-d76a-48cf-8bb3-b98f0f8ff472" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014500Z:6fec75ae-d76a-48cf-8bb3-b98f0f8ff472" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 038187D4B1274B54B42015609D810A36 Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2FC040F92049419CA579139F4853615C Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:44:59Z" ], + "Date": [ "Sat, 28 Mar 2026 01:44:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52911,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52911\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:30:33.78\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68098,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68098\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:43:09.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-PowerShell-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "333" ], - "x-ms-client-request-id": [ "27fd4f5c-142f-4a52-b28f-de2c5db061b7" ], + "x-ms-unique-id": [ "304" ], + "x-ms-client-request-id": [ "4fd8a2f5-7b75-48bb-b05b-0285ed609a29" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5951,20 +5950,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F06E90F475\"" ], + "ETag": [ "\"1DCBE5467592CE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe21c91c-8713-401e-ab28-57e01db235f3" ], + "x-ms-request-id": [ "e04cdf3a-32f7-4387-b645-bb554309f3d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ce375212-3a81-426b-80ac-fcc5021a3993" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/54f29dc5-7785-4fd2-8a84-0eeee833ef21" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "450dc808-2f4a-402a-902b-3dcd1c94e29d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183241Z:450dc808-2f4a-402a-902b-3dcd1c94e29d" ], + "x-ms-correlation-request-id": [ "ced76d8b-ced8-4d91-9068-40f85c76cda0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014515Z:ced76d8b-ced8-4d91-9068-40f85c76cda0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66D77577BF2F4363AE6FC431B3A39F0F Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7FABD505CB8B475991D28687AFF6BD81 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:45:00Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5978,7 +5977,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Flex-Custom-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Flex-Custom-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -5993,18 +5992,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5300c05e-a9d2-4f54-9ab1-fe7a167476cf" ], + "x-ms-request-id": [ "7f097bd5-e714-48a6-a3f3-9fc9f09d9683" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0eff8704-428b-489b-876f-18e325eb957f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ccaf2b72-b114-4b4c-9a3c-195366241c84" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b543077-90d2-467e-b96f-df39f7643ede" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183242Z:9b543077-90d2-467e-b96f-df39f7643ede" ], + "x-ms-correlation-request-id": [ "a1f5b7ec-66d8-42d5-bded-bba9bf788b50" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014516Z:a1f5b7ec-66d8-42d5-bded-bba9bf788b50" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EDBB6DA8617340CEA68FA526ED5A9DEA Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A854A978D3014CF4BDEA80E350F33FAA Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:45:15Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6015,10 +6014,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -6034,42 +6033,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7410ac65-a8e1-41b1-9cd8-d31ebb9c3e25" ], + "x-ms-request-id": [ "5ceb627e-0925-4ff0-aa2a-6ac5e9cb50b9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c44433a5-c706-403b-92ed-54579905db43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ba9116ed-bdcb-4ec8-bf61-ecd563d871c1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "5b20bc8d-a67e-4e04-a6d5-c66138803c6d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183248Z:5b20bc8d-a67e-4e04-a6d5-c66138803c6d" ], + "x-ms-correlation-request-id": [ "9932d906-ae22-4c9c-b8f7-3ecfd81ae8f5" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014519Z:9932d906-ae22-4c9c-b8f7-3ecfd81ae8f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A69045DC0F1A463AA3FC3F5910051C2E Ref B: MWH011020807031 Ref C: 2025-11-17T18:32:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:32:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE3604EF5F2F43AE8E8950B1D9C82771 Ref B: CO6AA3150220027 Ref C: 2026-03-28T01:45:16Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1901" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62355,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62355\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:32:47.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":77753,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77753\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:45:19.41\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "ceac19af-e4c7-4e06-83a0-aa50c5013357" ], + "x-ms-unique-id": [ "308" ], + "x-ms-client-request-id": [ "df79c563-9e12-4983-b251-27c7a7900dfb" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -6080,41 +6079,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff5a8e40-261e-4010-9993-53b9d1cab3a7" ], + "x-ms-request-id": [ "cc1d6921-2d6a-4174-a2db-ecf5801e59ac" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c501afa5-d11f-4e09-85c0-dcbfa52c71c2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183318Z:c501afa5-d11f-4e09-85c0-dcbfa52c71c2" ], + "x-ms-correlation-request-id": [ "f20ae695-6c5b-48af-86ae-7456955796f3" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014550Z:f20ae695-6c5b-48af-86ae-7456955796f3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44D11B0A660844F2A7E51E73524DFF2E Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58C23FB6A99C4E8D9F8A4557DC88A3D5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62355,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62355\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:32:47.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77753,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77753\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:45:19.41\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "338" ], - "x-ms-client-request-id": [ "ceac19af-e4c7-4e06-83a0-aa50c5013357" ], + "x-ms-unique-id": [ "309" ], + "x-ms-client-request-id": [ "df79c563-9e12-4983-b251-27c7a7900dfb" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -6125,24 +6124,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8349439-de37-4c5a-a432-244ee57c58a6" ], + "x-ms-request-id": [ "264dad58-c8e4-42e3-8df4-709ecd6132e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b5960bfb-e0d9-4e31-a81b-b1dbea93306c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183319Z:b5960bfb-e0d9-4e31-a81b-b1dbea93306c" ], + "x-ms-correlation-request-id": [ "55d06857-ca54-4783-b35d-63468982a96a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014550Z:55d06857-ca54-4783-b35d-63468982a96a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8822478C9E3D46F9BBBB90CDB81D3BF8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:18Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 835C8D4B51B644D0862821887CF336E0 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62355,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62355\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:32:47.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77753,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77753\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:45:19.41\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -6153,12 +6152,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "339" ], - "x-ms-client-request-id": [ "ade4528a-7957-40ef-a19f-3fb2eb43f97b" ], + "x-ms-unique-id": [ "310" ], + "x-ms-client-request-id": [ "7c5b5a2d-3b2e-4688-a7ce-cfc4ba01ba41" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6169,40 +6168,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a84da636-875f-474b-aff5-10ff7211986b", "f224b1ee-6c6b-4933-8329-e95ad255e317", "d3f2bad7-b17c-42f0-b9f5-17361abe7232" ], + "x-ms-original-request-ids": [ "f826be37-605b-49a4-8d56-210b2d4e0c07", "ccc0f1be-e343-4da0-8af7-ac19d862fd60", "217cceb4-c57f-4701-8342-ab469a402d82" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "abcfb853-fdf1-4dd9-b95f-c044db048ac7" ], - "x-ms-correlation-request-id": [ "abcfb853-fdf1-4dd9-b95f-c044db048ac7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183320Z:abcfb853-fdf1-4dd9-b95f-c044db048ac7" ], + "x-ms-request-id": [ "4b1245ad-877a-4a64-bdae-466702fdcc9f" ], + "x-ms-correlation-request-id": [ "4b1245ad-877a-4a64-bdae-466702fdcc9f" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014551Z:4b1245ad-877a-4a64-bdae-466702fdcc9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EAB22216BF1E410E8E7D9A4DF5160EFC Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:19Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB017F555BE24587A16DE63E7A1A9069 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/blobServices/default/containers/app-package-functionsflexcustomw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/blobServices/default/containers/app-package-functionsflexcustom3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/blobServices/default/containers/app-package-functionsflexcustomw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/blobServices/default/containers/app-package-functionsflexcustom3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "340" ], - "x-ms-client-request-id": [ "5de83e20-5bbc-4653-aa11-f1426649d03b" ], + "x-ms-unique-id": [ "311" ], + "x-ms-client-request-id": [ "bd38a70f-6589-4349-bbb8-a034ac8c3a71" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6213,31 +6212,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8f470ccd-b5a3-47c7-b1cf-3cde0b2652b3" ], + "x-ms-request-id": [ "71dbfdbb-2310-42d4-b678-4e0317397ba9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d6894312-dd5e-497f-9334-5e18c7306982" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/52f9aa9f-c2d9-4f6a-aa1a-592e3008d82b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d41fa859-aa96-469f-b89c-894caa18aa54" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183320Z:d41fa859-aa96-469f-b89c-894caa18aa54" ], + "x-ms-correlation-request-id": [ "4a87c6ee-2fdd-4cd2-9398-43928b2f47a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014551Z:4a87c6ee-2fdd-4cd2-9398-43928b2f47a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A663FD7397BF464D83F515AC59A1C05B Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0BD5229C70B4D078FF6628D8A146074 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:302d0b6d-301e-004d-5ff0-572817000000\\nTime:2025-11-17T18:33:20.7149939Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:3667ecb1-e01e-0041-4b54-be7d84000000\\nTime:2026-03-28T01:45:51.6615164Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/blobServices/default/containers/app-package-functionsflexcustomw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/blobServices/default/containers/app-package-functionsflexcustom3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/blobServices/default/containers/app-package-functionsflexcustomw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/blobServices/default/containers/app-package-functionsflexcustom3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -6252,25 +6251,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE2607C8FFAC21\"" ], - "x-ms-request-id": [ "da6082be-82fd-42d6-9a94-bb92b2cd7d90" ], + "ETag": [ "\"0x8DE8C6BBEAE92D1\"" ], + "x-ms-request-id": [ "08f5f257-6314-4286-8b73-a1cf42890ef0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e3068f26-d32b-4ae6-ae21-48e9e0ee4e2c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ed6e0548-b0bd-4714-a5d3-b52144349992" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8f37c62e-40a8-4b8a-a7f8-2c0b9f5c68d9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183321Z:8f37c62e-40a8-4b8a-a7f8-2c0b9f5c68d9" ], + "x-ms-correlation-request-id": [ "84e8b743-1e98-499a-b580-4b122222942c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014552Z:84e8b743-1e98-499a-b580-4b122222942c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5BA6ECB259944F878F73BF23349D257F Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:20Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B48EB58EAEF7421E94A61AE4DF672CCB Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "446" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/blobServices/default/containers/app-package-functionsflexcustomw8x9-0000000\",\"name\":\"app-package-functionsflexcustomw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/blobServices/default/containers/app-package-functionsflexcustom3wro-0000000\",\"name\":\"app-package-functionsflexcustom3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -6281,12 +6280,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "342" ], - "x-ms-client-request-id": [ "91e1cc6c-6000-4ec3-b23a-74993c6b0cc3" ], + "x-ms-unique-id": [ "313" ], + "x-ms-client-request-id": [ "f1fbd397-6ed6-4db5-ae86-23e9694fe6f7" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6297,40 +6296,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0f111d75-1178-47da-a642-6e48a18bf1cd", "fda9d05e-50d3-4fb9-9246-1f74a94923df", "7a0e3767-492c-45b8-8a2d-3f1ce2a86727" ], + "x-ms-original-request-ids": [ "b90550cd-ded8-47d6-a686-168ccf7e3ebf", "b710a540-6226-494a-88ba-07af394d43b2", "96581ad8-d203-453d-999a-ff0031140a0e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0077b691-8f96-411e-a1fb-176c8fd7db14" ], - "x-ms-correlation-request-id": [ "0077b691-8f96-411e-a1fb-176c8fd7db14" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183321Z:0077b691-8f96-411e-a1fb-176c8fd7db14" ], + "x-ms-request-id": [ "e06743ad-d4d1-431c-8458-a9c85b075bf1" ], + "x-ms-correlation-request-id": [ "e06743ad-d4d1-431c-8458-a9c85b075bf1" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014552Z:e06743ad-d4d1-431c-8458-a9c85b075bf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFD895F72E2945FCAB26B91D3B75D194 Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:21Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A7B74879761469FA9A434D05841D8E2 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "343" ], - "x-ms-client-request-id": [ "b79755c7-37eb-4a47-a19b-6796153e2a03" ], + "x-ms-unique-id": [ "314" ], + "x-ms-client-request-id": [ "12c76b53-cfc5-4124-a08f-821391d12590" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6341,16 +6340,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c50f3e99-a91d-4ac7-81d1-7a768a15884c" ], + "x-ms-request-id": [ "6baf8377-642f-4a0d-950f-f0cef6bb037e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/3bb297cb-db19-4016-9a47-86d9bf6aea68" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cfbbe9b8-3114-40f2-81bf-b7cdd0615e04" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b1748498-a173-4d97-94e5-e2fcb697440e" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183322Z:b1748498-a173-4d97-94e5-e2fcb697440e" ], + "x-ms-correlation-request-id": [ "2885b3c9-a9a8-4f74-a317-ef4bcc65eba4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014553Z:2885b3c9-a9a8-4f74-a317-ef4bcc65eba4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 509A5B16A990415FBBDDBD35A682B64B Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F336FB02BAE7407DA910DFC9E41E2039 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -6368,12 +6367,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "344" ], - "x-ms-client-request-id": [ "a081c1b2-ec8e-44a7-bd37-5e12915932d4" ], + "x-ms-unique-id": [ "315" ], + "x-ms-client-request-id": [ "8b8d405d-a432-4b21-a8ab-100ca77d1874" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6384,40 +6383,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "122bacc4-e79d-4ea8-8e7b-4c7756a22978", "59330a56-48e0-4049-9e79-88727596c06a", "3b19f6d6-efb8-40cd-a2ba-376862c66662" ], + "x-ms-original-request-ids": [ "d855bd1b-16be-4af7-a548-c8a28d7fbdb4", "d9aad30b-0d55-4416-9955-4c9ffd400682", "a9046d27-41b0-4802-9e9f-5aa6d3c66c67" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b0fe8542-053b-466f-a8eb-c3169ae39af7" ], - "x-ms-correlation-request-id": [ "b0fe8542-053b-466f-a8eb-c3169ae39af7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183323Z:b0fe8542-053b-466f-a8eb-c3169ae39af7" ], + "x-ms-request-id": [ "fa258c58-acbe-4ea4-ab7f-b308e2354ed4" ], + "x-ms-correlation-request-id": [ "fa258c58-acbe-4ea4-ab7f-b308e2354ed4" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T014553Z:fa258c58-acbe-4ea4-ab7f-b308e2354ed4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F936036CAF0E41CC8E5BF5072EF32D99 Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:22Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 062A654A5A144A53B22504C9FBA99B37 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:53Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "345" ], - "x-ms-client-request-id": [ "32a0a16e-8fed-4480-a390-21441a2e5c31" ], + "x-ms-unique-id": [ "316" ], + "x-ms-client-request-id": [ "a737ccf3-e174-4075-9781-86766d4a5039" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6428,16 +6427,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "984cc27d-b4c5-47f9-b339-556a22befc2f" ], + "x-ms-request-id": [ "523d76bc-bbe0-4180-ae9a-0a2cfcb5b204" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/eecccf17-93f6-425b-8071-932421b54d39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4d042370-ae19-4b0c-9fa7-301cf87022a3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2fd5a175-8637-44f1-9672-7578bdde0ea7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183323Z:2fd5a175-8637-44f1-9672-7578bdde0ea7" ], + "x-ms-correlation-request-id": [ "1858b576-31bd-406f-a5ec-59893a2aa677" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014554Z:1858b576-31bd-406f-a5ec-59893a2aa677" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5D6DBCBA41E4171970BD5CBFB794C6A Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 91C1F8C2F2E64F97AFDA0A7D23F7C125 Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:53Z" ], + "Date": [ "Sat, 28 Mar 2026 01:45:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -6448,10 +6447,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Custom-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Custom-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Flex-Custom-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Flex-Custom-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -6471,30 +6470,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/36b9b2da-77a0-4094-a1c4-c58c8c5878dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d8158955-46bc-432b-a40f-fa49f7b31dd8" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "2dc066be-3348-4605-84dd-1f068f7b48ed" ], - "x-ms-correlation-request-id": [ "2dc066be-3348-4605-84dd-1f068f7b48ed" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183337Z:2dc066be-3348-4605-84dd-1f068f7b48ed" ], + "x-ms-request-id": [ "ae7ffc42-f81a-4899-a87a-6d4fb064d312" ], + "x-ms-correlation-request-id": [ "ae7ffc42-f81a-4899-a87a-6d4fb064d312" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014607Z:ae7ffc42-f81a-4899-a87a-6d4fb064d312" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14836999DCCD4D1D99C9F3D755FDBAC6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:23Z" ], - "Date": [ "Mon, 17 Nov 2025 18:33:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A0A290A2BC04557BCF16D2D1325FFCC Ref B: MWH011020809062 Ref C: 2026-03-28T01:45:54Z" ], + "Date": [ "Sat, 28 Mar 2026 01:46:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1612" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"05042ee2-0000-0200-0000-691b6a810000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Custom-w8x9\",\r\n \"name\": \"Functions-Flex-Custom-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-w8x9\",\r\n \"AppId\": \"ba5481a0-9fc3-461d-ad0d-38a125e58163\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7e4d199e-8d5b-4080-a089-a11f19548350\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Custom-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:33:26.0313196+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-w8x9_ba5481a0-9fc3-461d-ad0d-38a125e58163_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8300077a-0000-0200-0000-69c732de0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Custom-3wro\",\r\n \"name\": \"Functions-Flex-Custom-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Flex-Custom-3wro\",\r\n \"AppId\": \"e7a47d21-94e6-449e-bd13-9449dbefaeb4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"432b8997-07fd-4065-9829-15a790aea57b\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Flex-Custom-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:45:56.4069579+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-3wro_e7a47d21-94e6-449e-bd13-9449dbefaeb4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappcustomsaw8x9.blob.core.windows.net/app-package-functionsflexcustomw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"custom\",\r\n \"version\": \"1.0\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappcustomsa3wro.blob.core.windows.net/app-package-functionsflexcustom3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"custom\",\r\n \"version\": \"1.0\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6508,43 +6507,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F0B1E8D7EB\"" ], + "ETag": [ "\"1DCBE54A69CDAA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd64eb60-80cc-4d8e-8e19-373598b12733" ], + "x-ms-request-id": [ "aa3b141f-f544-4f7a-8854-2d783d6a48e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1f4c2814-7455-451d-bf95-2a0b137f5906" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e6ffb14b-d03d-4026-8656-5472d5d19f16" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "0ac61b1d-3c52-4036-97f8-10a4f7b7e9d1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183401Z:0ac61b1d-3c52-4036-97f8-10a4f7b7e9d1" ], + "x-ms-correlation-request-id": [ "9eb7b15b-86d1-4591-90e7-41574d7a2ae6" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014630Z:9eb7b15b-86d1-4591-90e7-41574d7a2ae6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A3BC570B4D6842FFA6EABC49F98547D7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:33:37Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 726F28FAE7D24C928AE7AEACB84DCDE6 Ref B: MWH011020809062 Ref C: 2026-03-28T01:46:07Z" ], + "Date": [ "Sat, 28 Mar 2026 01:46:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9496" ], + "Content-Length": [ "9668" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Custom-w8x9\",\"repositorySiteName\":\"Functions-Flex-Custom-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\",\"functions-flex-custom-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:33:39.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsaw8x9.blob.core.windows.net/app-package-functionsflexcustomw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-w8x9\\\\$Functions-Flex-Custom-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Flex-Custom-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Custom-3wro\",\"repositorySiteName\":\"Functions-Flex-Custom-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\",\"functions-flex-custom-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:46:09.1233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsa3wro.blob.core.windows.net/app-package-functionsflexcustom3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-3wro\\\\$Functions-Flex-Custom-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-custom-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "348" ], - "x-ms-client-request-id": [ "3bf92076-4e58-4f3e-b0e7-a99a9f4e1dcf" ], + "x-ms-unique-id": [ "319" ], + "x-ms-client-request-id": [ "9d52bd6b-2fa0-4182-8c5a-548c82105ffe" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -6554,42 +6553,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F0BE661180\"" ], + "ETag": [ "1DCBE54B2CE4B2B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "453662cb-42af-42bc-bd2a-c9bd76600f39" ], + "x-ms-request-id": [ "29ed1f58-b6eb-489d-bb1d-f0922dbd6d0d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "abc1f61c-3512-420e-b306-67e1d5d00e4a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183431Z:abc1f61c-3512-420e-b306-67e1d5d00e4a" ], + "x-ms-correlation-request-id": [ "7b04d84c-a053-442b-b18c-cb5aa08a0081" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014701Z:7b04d84c-a053-442b-b18c-cb5aa08a0081" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 510E0C955E1143E6A5A3289B3760B6D0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:31Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 859EEF07B4AE428BABD37CF3B97828ED Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:00Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9473" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Custom-w8x9\",\"repositorySiteName\":\"Functions-Flex-Custom-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\",\"functions-flex-custom-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:34:01.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsaw8x9.blob.core.windows.net/app-package-functionsflexcustomw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-w8x9\\\\$Functions-Flex-Custom-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Custom-3wro\",\"repositorySiteName\":\"Functions-Flex-Custom-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\",\"functions-flex-custom-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:46:30.0666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsa3wro.blob.core.windows.net/app-package-functionsflexcustom3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-3wro\\\\$Functions-Flex-Custom-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-custom-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "349" ], - "x-ms-client-request-id": [ "a09931bc-4ec8-4743-9d6b-03a5eaa22ae9" ], + "x-ms-unique-id": [ "320" ], + "x-ms-client-request-id": [ "361ea6f1-f94d-4612-9c97-58c2ef5c8d5b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6600,42 +6599,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F0BE661180\"" ], + "ETag": [ "1DCBE54B2CE4B2B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07d475be-87c8-40a2-b222-41946d0f1157" ], + "x-ms-request-id": [ "49e712e5-9848-4d97-bf67-c82a0d46cddf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f117111a-16a9-4b92-8125-9553c8572fa9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183432Z:f117111a-16a9-4b92-8125-9553c8572fa9" ], + "x-ms-correlation-request-id": [ "b81464dd-5ffc-4fab-a54f-e232a179ac89" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014701Z:b81464dd-5ffc-4fab-a54f-e232a179ac89" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB99B6B7B2BE4013A4FC9BB4B7C429FD Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FD63C7B53E8E4D13A466322067D633F1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:01Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9473" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Custom-w8x9\",\"repositorySiteName\":\"Functions-Flex-Custom-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\",\"functions-flex-custom-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:34:01.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsaw8x9.blob.core.windows.net/app-package-functionsflexcustomw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-w8x9\\\\$Functions-Flex-Custom-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Custom-3wro\",\"repositorySiteName\":\"Functions-Flex-Custom-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\",\"functions-flex-custom-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:46:30.0666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsa3wro.blob.core.windows.net/app-package-functionsflexcustom3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-3wro\\\\$Functions-Flex-Custom-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-custom-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "350" ], - "x-ms-client-request-id": [ "795491ad-65b8-4d6a-9950-77f890abf7d7" ], + "x-ms-unique-id": [ "321" ], + "x-ms-client-request-id": [ "7d49ce9a-c22c-42d2-949d-fc1ca271df2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6647,40 +6646,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d43e047d-2d5f-4623-b039-051bd2059296" ], + "x-ms-request-id": [ "da93bf9b-a237-4f3d-b28f-59a07d5d6ded" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/491a2eb1-7962-4a6f-a289-211b76310df9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c5050931-4615-4d59-af4d-aac7f3b7b6d6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f7b22f84-9ec4-44ad-8309-e344d79cb90c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183432Z:f7b22f84-9ec4-44ad-8309-e344d79cb90c" ], + "x-ms-correlation-request-id": [ "7f1c3dac-1c6b-439e-b379-7f99b2604553" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014701Z:7f1c3dac-1c6b-439e-b379-7f99b2604553" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6587DF1323C454DAF8341C607C6D2EE Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B840B2C79C7499EB4E194DCDA1CCB0B Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:01Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "351" ], - "x-ms-client-request-id": [ "06e05a2d-4f75-4127-b969-005c97c9509c" ], + "x-ms-unique-id": [ "322" ], + "x-ms-client-request-id": [ "45314197-7bd1-4906-8136-0baccadd946d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6692,41 +6691,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "828704ed-a68b-410e-ae33-7b2bbae92bd0" ], + "x-ms-request-id": [ "7bd51916-62a7-4535-ba39-e2f35e4378f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c083546c-0279-4f31-a39e-fae682228ce8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "73bfb2b5-3914-4dd3-80ee-a2318472fa52" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183433Z:73bfb2b5-3914-4dd3-80ee-a2318472fa52" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7af0b7cb-6a51-4b0c-b89a-91d7b5ec36ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a1a9ed0e-7c66-4d73-945f-6e03aa477402" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014704Z:a1a9ed0e-7c66-4d73-945f-6e03aa477402" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7142B7AD903E4309B8169794C33B2183 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:32Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8824B14FB19A466ABC0E305C5697D099 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:02Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "352" ], - "x-ms-client-request-id": [ "812da66a-cabd-409e-82ed-5ea25e1cb741" ], + "x-ms-unique-id": [ "323" ], + "x-ms-client-request-id": [ "e3ea03b6-74f4-47b6-858d-04e34d8d6879" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6738,40 +6737,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a1d8190-8fa1-4851-b901-6a585299d69b" ], + "x-ms-request-id": [ "4eac55e5-a117-4958-ba92-460d8106ff96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7dcc78dd-72af-4213-90a5-1faa7c026a06" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183433Z:7dcc78dd-72af-4213-90a5-1faa7c026a06" ], + "x-ms-correlation-request-id": [ "cb13fc12-d80c-4596-b0b0-46b552bcfa22" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014704Z:cb13fc12-d80c-4596-b0b0-46b552bcfa22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DEAB2B0E953544E5BD5B3B6A6A401E5C Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EAD74C4736A54F7283475D4DFFE7B915 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:04Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62355,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62355\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:32:47.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77753,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77753\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:45:19.41\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "353" ], - "x-ms-client-request-id": [ "50a2607b-5772-47bd-a54b-316cfe07e33c" ], + "x-ms-unique-id": [ "324" ], + "x-ms-client-request-id": [ "10dafb7b-1ac0-47c5-bdea-74e611cbd6d8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6783,40 +6782,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c5c5ee2-2d8c-458b-ba1d-5413263190bb" ], + "x-ms-request-id": [ "88a99b09-97a8-4f73-a8f1-6c93b848ac73" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/72f5a6dc-f511-4f33-9ed3-dfc9a073b7fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e4812f21-022d-43a0-97d1-90774ac8dabb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "aa0be7d6-fce4-48e0-882f-b7f481da9e61" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183433Z:aa0be7d6-fce4-48e0-882f-b7f481da9e61" ], + "x-ms-correlation-request-id": [ "b6db88e9-f1e3-4027-9d7d-db0981068d27" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014704Z:b6db88e9-f1e3-4027-9d7d-db0981068d27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AE993C6DF8A54856AF34F845D1A359B0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFACDCE547F84906855C32BDBAFCB424 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:04Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "354" ], - "x-ms-client-request-id": [ "e2dfcbae-aecd-4e48-bf15-532c604996a4" ], + "x-ms-unique-id": [ "325" ], + "x-ms-client-request-id": [ "9b1ff871-7b10-4768-aad4-63d7532c7b4e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6827,42 +6826,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F0BE661180\"" ], + "ETag": [ "1DCBE54B2CE4B2B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78b08eee-00af-43ee-804c-ebf6f3c44cc9" ], + "x-ms-request-id": [ "3da835fa-1e44-4e34-8d7d-2ab4b53c6e6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ec597ffc-23c2-46cb-82fb-225d21340ff4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183434Z:ec597ffc-23c2-46cb-82fb-225d21340ff4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "cb89f214-e263-4d83-aaa0-3bb0beccac0b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014705Z:cb89f214-e263-4d83-aaa0-3bb0beccac0b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79D7BC6506AE441E84A3366F66E57CC4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6C646FA54F84554915BD6A0490EA974 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:05Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:04 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9473" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Custom-w8x9\",\"repositorySiteName\":\"Functions-Flex-Custom-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\",\"functions-flex-custom-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:34:01.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsaw8x9.blob.core.windows.net/app-package-functionsflexcustomw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-w8x9\\\\$Functions-Flex-Custom-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Custom-3wro\",\"repositorySiteName\":\"Functions-Flex-Custom-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\",\"functions-flex-custom-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:46:30.0666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsa3wro.blob.core.windows.net/app-package-functionsflexcustom3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-3wro\\\\$Functions-Flex-Custom-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-custom-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "355" ], - "x-ms-client-request-id": [ "0e960677-2317-4cbf-96a5-fbb36dd27e3d" ], + "x-ms-unique-id": [ "326" ], + "x-ms-client-request-id": [ "8d39a364-6e13-40cc-b647-9a5f808738e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6874,40 +6873,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6b4fa4f3-ebfd-4a85-8221-63f80c231230" ], + "x-ms-request-id": [ "1ab8d372-a517-4c86-bdba-67ad2cb0cac1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2e911409-1b39-435b-bd37-64235db6ab33" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9172d9af-8b52-4a9e-afa4-4296f574a9e9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e4a59e09-3ec3-4e99-9478-4a9002bfe3f2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183434Z:e4a59e09-3ec3-4e99-9478-4a9002bfe3f2" ], + "x-ms-correlation-request-id": [ "d9149b46-2a68-4e12-9499-5e2b6ec0caf1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014705Z:d9149b46-2a68-4e12-9499-5e2b6ec0caf1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 380631C5FDA348E2AC935EF1D27E5E87 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BEA90218544C4776AA9C8074C6FDA3B5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:05Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "356" ], - "x-ms-client-request-id": [ "c307ea41-88b4-4c92-9ea2-3ba8cb8dd0e5" ], + "x-ms-unique-id": [ "327" ], + "x-ms-client-request-id": [ "4eb48539-4f47-46c0-a89d-4ede2bebbbe4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6919,41 +6918,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9596e82-df56-40e6-a402-fa7c4a756aa5" ], + "x-ms-request-id": [ "ccbf4911-7822-428e-b245-d3318fa463a8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/05e3fab0-5730-40dc-9207-3c02a7d2e551" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/365ca49b-499f-4db2-a21a-08378e007576" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a2a90e93-c811-48ae-86f8-4b099c318c53" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183435Z:a2a90e93-c811-48ae-86f8-4b099c318c53" ], + "x-ms-correlation-request-id": [ "39e3be81-d47d-45bf-9185-3d95fb39b451" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014708Z:39e3be81-d47d-45bf-9185-3d95fb39b451" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 82133F2AA983481082E1921BAEDEB303 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 16313D7F59C24ADA8D0743D52C1BAF26 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:05Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "357" ], - "x-ms-client-request-id": [ "8527ded3-bf27-4c0c-b12c-2acc7c69ce33" ], + "x-ms-unique-id": [ "328" ], + "x-ms-client-request-id": [ "b198d711-be5f-4ec3-8b15-317e21d2d669" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6964,42 +6963,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F0BE661180\"" ], + "ETag": [ "1DCBE54B2CE4B2B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58ad7275-c8a6-426a-98a6-e5644fea90d3" ], + "x-ms-request-id": [ "2b21578b-7ef3-41db-afa6-12de2c51df0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b181416d-2b02-4674-889d-2ae046632257" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183435Z:b181416d-2b02-4674-889d-2ae046632257" ], + "x-ms-correlation-request-id": [ "010ba0e7-1311-4cd3-be3e-03b3ca46b19b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014709Z:010ba0e7-1311-4cd3-be3e-03b3ca46b19b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FFEBB75998E4F0D8E4E29B999EEEC88 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B1E0405CE2047E68C063B8F43E3CFBA Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:08Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9473" ], + "Content-Length": [ "9467" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Flex-Custom-w8x9\",\"repositorySiteName\":\"Functions-Flex-Custom-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-w8x9.azurewebsites.net\",\"functions-flex-custom-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:34:01.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsaw8x9.blob.core.windows.net/app-package-functionsflexcustomw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-w8x9\\\\$Functions-Flex-Custom-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-flex-custom-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Flex-Custom-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Flex-Custom-3wro\",\"repositorySiteName\":\"Functions-Flex-Custom-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-flex-custom-3wro.azurewebsites.net\",\"functions-flex-custom-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-flex-custom-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-flex-custom-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:46:30.0666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappcustomsa3wro.blob.core.windows.net/app-package-functionsflexcustom3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"custom\",\"version\":\"1.0\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Flex-Custom-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Flex-Custom-3wro\\\\$Functions-Flex-Custom-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-flex-custom-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "358" ], - "x-ms-client-request-id": [ "e215107b-92f8-44c0-a255-a95af7e4cd2e" ], + "x-ms-unique-id": [ "329" ], + "x-ms-client-request-id": [ "fe856d1e-3d6e-4b15-add4-433802cfd810" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7011,40 +7010,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf83898d-2b72-468b-9a88-486eb7fc75a1" ], + "x-ms-request-id": [ "e62edeb9-473b-4044-87bd-24d5f6c8b8cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f5e8f4bd-02b7-4fe8-babd-91ac1414c594" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/5e40df1a-f10f-48e0-84f6-e75f71e00b4b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ae067a38-a761-412b-93ff-7f89e5c422cc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183436Z:ae067a38-a761-412b-93ff-7f89e5c422cc" ], + "x-ms-correlation-request-id": [ "d70ea1fc-15d7-4bdd-9a99-d4d9899435a1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014709Z:d70ea1fc-15d7-4bdd-9a99-d4d9899435a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8DBA5CD4A6EF4723BF0493EC1A8AAA90 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 481948A6E26C4C71A2C23CE3D8C1DE1E Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:09Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "359" ], - "x-ms-client-request-id": [ "f25ec9e7-309e-4887-ba74-063fee0984e3" ], + "x-ms-unique-id": [ "330" ], + "x-ms-client-request-id": [ "b37908d5-0081-4299-875a-38694da52492" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7056,41 +7055,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "46158aa9-eeaa-415f-893e-ea3ba28a1fe4" ], + "x-ms-request-id": [ "125a3f16-0d71-4a93-bc66-0981f88d3db9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c172db98-3bb4-44ec-a5bc-ca655c3a89e3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "99abd369-a833-4f5e-9a66-71ea9b69dcc3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183436Z:99abd369-a833-4f5e-9a66-71ea9b69dcc3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/95f6a9da-5b76-408d-b8fc-7b5918c822f2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2c5cda08-8d9e-4f23-aecb-1579d23c40a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014709Z:2c5cda08-8d9e-4f23-aecb-1579d23c40a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D15FA22A97148339B6AC5B57B5A9553 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7FB210C9B4F4495580160DB7D805CA6E Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:09Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4153" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9/config/web\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro/config/web\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "360" ], - "x-ms-client-request-id": [ "f56c35ed-0e91-422d-9156-d81906a4caa8" ], + "x-ms-unique-id": [ "331" ], + "x-ms-client-request-id": [ "8243cd39-8978-4c74-992b-3c42448af570" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7102,40 +7101,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "13e2faae-f8af-46ff-8acb-1276f0c2fd0f" ], + "x-ms-request-id": [ "b331736d-2eb2-4b78-8fab-e72f2ce1f8fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "768f3709-74b1-4c30-a491-3b653ad39452" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183436Z:768f3709-74b1-4c30-a491-3b653ad39452" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "08223e11-eedd-448c-8c3b-0595c8c51387" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014710Z:08223e11-eedd-448c-8c3b-0595c8c51387" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8530E3202071468BA62595129B334175 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2C57B8A148D412993A8C2E2567494DE Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:10Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62355,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62355\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:32:47.9\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77753,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77753\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:45:19.41\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Custom Function App with default runtime version and scaling settings hosted in Flex Consumption+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Flex-Custom-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Flex-Custom-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "361" ], - "x-ms-client-request-id": [ "7bbbbba8-3553-4b39-82b8-c34fb05a4f5a" ], + "x-ms-unique-id": [ "332" ], + "x-ms-client-request-id": [ "ce49bde1-c67a-49e2-8f4f-065b7df834f7" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7146,20 +7145,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F0BE661180\"" ], + "ETag": [ "\"1DCBE54B2CE4B2B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e00d6a0-c243-46b7-a552-c947ecdb8799" ], + "x-ms-request-id": [ "18a39adc-0602-4783-a5e7-8862925ce0aa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/87b57e9a-b3fa-4151-b53d-146dbc004d69" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d2b72070-3ef5-4f36-9d8d-420aa32c4634" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "5973ad30-e14f-4b59-a4df-6a4f8b6a14f2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183456Z:5973ad30-e14f-4b59-a4df-6a4f8b6a14f2" ], + "x-ms-correlation-request-id": [ "d00586de-6936-46ce-ac80-47ce5bda64a2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014726Z:d00586de-6936-46ce-ac80-47ce5bda64a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E64C0727BB574631AA804B99E04E152F Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:37Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F213FDD96D64D43A55CDF718F6B59B4 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:10Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:26 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7173,7 +7172,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Python-Flex-Scaling-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-Flex-Scaling-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7188,18 +7187,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d0d806c5-b8df-4c3b-b05a-b88856f0bb09" ], + "x-ms-request-id": [ "e8930239-b2bd-455e-9774-e33b6f8532c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b2a47948-6c6e-4dce-8e50-5a645224ae0f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/2d965fc7-63c2-4786-89e5-9e961784fdd7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "47b26972-5d92-461d-b55f-009aa1e6437c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183457Z:47b26972-5d92-461d-b55f-009aa1e6437c" ], + "x-ms-correlation-request-id": [ "e260f636-2e55-4151-a1c5-c4306b779f6a" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T014727Z:e260f636-2e55-4151-a1c5-c4306b779f6a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60E3C029FDDE468FA66D8527DC6271DA Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:34:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F828EAE64AF4D169245C7EF27C215C1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7210,10 +7209,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -7229,42 +7228,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a154f38-0bbc-4430-95e4-9f038420a053" ], + "x-ms-request-id": [ "d06a97b8-ed4b-44df-9a98-7eb72b563b01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2289da13-8da5-44ba-8537-361e601eb27b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/97cc1f03-d290-4f34-9b5c-e4bcb28f0922" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1ee2ef75-ee94-4585-be1a-9452d5918222" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183502Z:1ee2ef75-ee94-4585-be1a-9452d5918222" ], + "x-ms-correlation-request-id": [ "40b9e419-3f00-469a-92cc-756bd0f44afd" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014730Z:40b9e419-3f00-469a-92cc-756bd0f44afd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D36EFBC9EB6D474E86BC5BCC61DBE037 Ref B: MWH011020807031 Ref C: 2025-11-17T18:34:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C6EBA208EE445C39A85C1E83B188603 Ref B: MWH011020809062 Ref C: 2026-03-28T01:47:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:47:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62356,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62356\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:35:02.4966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68099,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68099\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:47:30.24\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "365" ], - "x-ms-client-request-id": [ "6006d539-944c-47dd-9078-9ea6272dd89a" ], + "x-ms-unique-id": [ "336" ], + "x-ms-client-request-id": [ "572b33e9-4600-4432-aefa-06f383f3820d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -7275,41 +7274,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c2afe90-c075-45e3-ada2-79ca6b46d25a" ], + "x-ms-request-id": [ "861938af-6113-43a5-ac67-fd66a236a1f1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63d242f2-3c7d-47e7-b410-3c95cd5763f2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183533Z:63d242f2-3c7d-47e7-b410-3c95cd5763f2" ], + "x-ms-correlation-request-id": [ "669b267f-42d0-48d9-8615-1faa232e7d6c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014801Z:669b267f-42d0-48d9-8615-1faa232e7d6c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DBFA9D6463EB4A459A8BD172C29BED1F Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D7D9309E21142D68ADC849624922F45 Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:00Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62356,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62356\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:35:02.4966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68099,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68099\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:47:30.24\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "366" ], - "x-ms-client-request-id": [ "6006d539-944c-47dd-9078-9ea6272dd89a" ], + "x-ms-unique-id": [ "337" ], + "x-ms-client-request-id": [ "572b33e9-4600-4432-aefa-06f383f3820d" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -7320,24 +7319,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f61b6b67-4308-4672-8bc9-e7325e348ccb" ], + "x-ms-request-id": [ "f82210fc-8154-4114-838b-2d9eeb296bd6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0e78890a-9a4e-4f64-8a0a-f359ce8fb2d8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183533Z:0e78890a-9a4e-4f64-8a0a-f359ce8fb2d8" ], + "x-ms-correlation-request-id": [ "478029a1-4eb5-47a3-a653-77f78b76fec8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014801Z:478029a1-4eb5-47a3-a653-77f78b76fec8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65DB770DC36C49478858D30EBEE58EFD Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6BC96ABBAE94D5B9722C3223FA45B13 Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:01Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62356,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62356\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:35:02.4966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68099,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68099\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:47:30.24\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -7348,12 +7347,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "367" ], - "x-ms-client-request-id": [ "9e9f4760-3a25-4ab6-b7ee-c3d367ff3234" ], + "x-ms-unique-id": [ "338" ], + "x-ms-client-request-id": [ "f948f88b-56ae-4109-a9b6-3a47f5080bf0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7364,40 +7363,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f5f3df76-729d-45d2-9f64-fdd0f4bbe9b1", "f633cc6f-7988-4622-bf55-72521ef4514c", "99a1e5b5-b27a-428e-bc57-ca5a56bdb8c0" ], + "x-ms-original-request-ids": [ "fd99dedd-14d5-4a6f-9bdd-3f9bb9a8db3d", "e1e16b60-df03-4462-9346-b13071f2b5ab", "df0cdd46-11f0-4d71-ab60-169c671f881d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "10436d26-1538-407a-9164-b20a92a0ba95" ], - "x-ms-correlation-request-id": [ "10436d26-1538-407a-9164-b20a92a0ba95" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183534Z:10436d26-1538-407a-9164-b20a92a0ba95" ], + "x-ms-request-id": [ "8a4b9469-10c2-4f81-bf07-2d2c2dbde205" ], + "x-ms-correlation-request-id": [ "8a4b9469-10c2-4f81-bf07-2d2c2dbde205" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014802Z:8a4b9469-10c2-4f81-bf07-2d2c2dbde205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7606E15A38A34466ABCA8CCD314FBF1E Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:33Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5440166FF4654F77A98CF9032AFFDBAA Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:01Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionspythonflexscalingw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionspythonflexscaling3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionspythonflexscalingw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionspythonflexscaling3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "368" ], - "x-ms-client-request-id": [ "6abedd69-b83b-480e-a107-6bce162d2856" ], + "x-ms-unique-id": [ "339" ], + "x-ms-client-request-id": [ "dd10b669-39bb-4bb3-ba2c-7229cbc80d40" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7408,31 +7407,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "56b08a8c-dcc2-4b22-be9f-76bec64ffbb0" ], + "x-ms-request-id": [ "d7324a0f-03bc-450a-8b4c-8619007d4d45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1043455b-426f-448b-af8e-cb887de00c73" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/954aabbe-b897-4546-86ea-74f6e8de8e07" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "765d281d-5d6c-4b32-83d3-954ccf41ec1b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183535Z:765d281d-5d6c-4b32-83d3-954ccf41ec1b" ], + "x-ms-correlation-request-id": [ "53bb1896-56d1-45d5-bf7c-d997f2da5fde" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014802Z:53bb1896-56d1-45d5-bf7c-d997f2da5fde" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 913D0E2E2B4E41318EFA789CACFA5358 Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92D588BA6C564E1285E9800E8EFC2BDA Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:02Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:eb9d087e-101e-0056-60f0-579146000000\\nTime:2025-11-17T18:35:35.1936275Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:14b4636c-d01e-001c-6354-be3c4b000000\\nTime:2026-03-28T01:48:02.7720876Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionspythonflexscalingw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionspythonflexscaling3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionspythonflexscalingw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionspythonflexscaling3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -7447,25 +7446,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE26081927AA91\"" ], - "x-ms-request-id": [ "91667a2a-ed2b-45a4-8df1-4e5fd2044993" ], + "ETag": [ "\"0x8DE8C6C0CCE7DB6\"" ], + "x-ms-request-id": [ "4018ea7d-3051-4c63-a7aa-6c014e12d299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/511e2aa0-d2e1-4c5d-8b94-304786cb1947" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6bcbdc2c-2b6a-4f6f-98c0-8f8bc8afc9e6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "18821f32-826f-4d98-94ba-aa51e08674b9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183535Z:18821f32-826f-4d98-94ba-aa51e08674b9" ], + "x-ms-correlation-request-id": [ "5ca37983-640d-43a7-9e7b-6196cd790f5d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014803Z:5ca37983-640d-43a7-9e7b-6196cd790f5d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88183386F06B4C31BECC42CD720B6F66 Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 59A36E6F2FD14554BBE2F5A209904F55 Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:02Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "460" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/blobServices/default/containers/app-package-functionspythonflexscalingw8x9-0000000\",\"name\":\"app-package-functionspythonflexscalingw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/blobServices/default/containers/app-package-functionspythonflexscaling3wro-0000000\",\"name\":\"app-package-functionspythonflexscaling3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -7476,12 +7475,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "370" ], - "x-ms-client-request-id": [ "05529230-9b04-48ee-8d36-2a819a858812" ], + "x-ms-unique-id": [ "341" ], + "x-ms-client-request-id": [ "2283cdbd-942e-4096-9acc-7142069c4c73" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7492,40 +7491,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "b76b04e3-dfda-4f81-8a93-c99f09bde562", "76877e6f-affd-4552-b468-8ec1646e44bc", "db62623c-137a-4776-a4c0-d079953a7ba1" ], + "x-ms-original-request-ids": [ "59642643-fa89-4b95-bbe1-7a9f262b6fd1", "5f97ccef-9e96-4b2c-926b-34496a83a577", "dea4fcac-c742-4e3a-aaec-373c8b3ceced" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d24e975c-55a1-42d4-924b-5bf494f97542" ], - "x-ms-correlation-request-id": [ "d24e975c-55a1-42d4-924b-5bf494f97542" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183536Z:d24e975c-55a1-42d4-924b-5bf494f97542" ], + "x-ms-request-id": [ "09b0c4ff-ea63-4d1f-8e94-a50da714e408" ], + "x-ms-correlation-request-id": [ "09b0c4ff-ea63-4d1f-8e94-a50da714e408" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014803Z:09b0c4ff-ea63-4d1f-8e94-a50da714e408" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F377905C5E540969BB8CD47FA31BB29 Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F64B86A8E204FED885C01532A7B771C Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:03Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "371" ], - "x-ms-client-request-id": [ "64f6d332-1e82-4a2d-acfe-05f5497115fd" ], + "x-ms-unique-id": [ "342" ], + "x-ms-client-request-id": [ "b6fa2d54-ebf4-444d-ba1f-246bc33d6ffe" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7536,16 +7535,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b7c14f32-95c9-4b34-b0f2-630141654203" ], + "x-ms-request-id": [ "b42ce631-6cc9-4974-9c5e-7c1bdebd3dd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/49d030ca-ac19-4bd3-8d89-4a72b73daee4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a6f6c6a6-4404-4a86-bf2f-7dac3b4e6314" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "aaf379e9-0595-4555-bfcf-af008fecc1ff" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20251117T183537Z:aaf379e9-0595-4555-bfcf-af008fecc1ff" ], + "x-ms-correlation-request-id": [ "0022a564-075b-4ef7-b9e9-173c27fe8941" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014804Z:0022a564-075b-4ef7-b9e9-173c27fe8941" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C8FCE5D5A624A848770B6FB9ACD7299 Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:36Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47E701594C2846BBBABBF3D810A3BE64 Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:04Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -7563,12 +7562,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "372" ], - "x-ms-client-request-id": [ "c522ddad-fc49-45bd-93af-a3dbdd14fd39" ], + "x-ms-unique-id": [ "343" ], + "x-ms-client-request-id": [ "e7445e45-5504-4b10-a2a3-110ac5fa79d6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7579,40 +7578,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8e5a0e80-9ea3-42d5-b234-124ffb529f0c", "a948fcb5-de7f-4942-a42d-9cb799770a78", "33e6b59d-6315-4a13-83d0-c9113435b771" ], + "x-ms-original-request-ids": [ "005e3948-e7e0-4ace-9c05-a8becf7c6062", "e1bb98eb-7981-48d1-93fc-57c274134da7", "c98bab05-6551-4d71-ada4-a90493cdc9e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "fc0edfcf-b9f1-4b12-b134-b5bfdebcd27d" ], - "x-ms-correlation-request-id": [ "fc0edfcf-b9f1-4b12-b134-b5bfdebcd27d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183538Z:fc0edfcf-b9f1-4b12-b134-b5bfdebcd27d" ], + "x-ms-request-id": [ "301b4a1b-1f87-412a-9b0c-cbd317882030" ], + "x-ms-correlation-request-id": [ "301b4a1b-1f87-412a-9b0c-cbd317882030" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014804Z:301b4a1b-1f87-412a-9b0c-cbd317882030" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC70B2D1BFE34779BB2364BB5FAF03AE Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:37Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F7ED71592F0464DA7BEC149E86FF5C5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:04Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "373" ], - "x-ms-client-request-id": [ "6f1589a8-d0bc-4898-a585-63198fbe1d5f" ], + "x-ms-unique-id": [ "344" ], + "x-ms-client-request-id": [ "13157335-7598-4f63-a744-345a82f73af5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7623,16 +7622,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "662650e8-1e73-4eea-bc0a-c54f3336a621" ], + "x-ms-request-id": [ "086d759b-81c0-4deb-91ee-14e7a039bffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/abece1f5-44a5-437a-a870-952971775586" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b4b7164e-c250-4fb2-9a8f-19d0dfa49975" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "19a01b32-0c6f-4035-837a-4339244681d2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183539Z:19a01b32-0c6f-4035-837a-4339244681d2" ], + "x-ms-correlation-request-id": [ "dbc0cb41-c74f-42f5-8804-2bbf4119db80" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014805Z:dbc0cb41-c74f-42f5-8804-2bbf4119db80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2673DF93F58543E6BB67178E4929DE2F Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:38Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C5CBF1796CE469AA744B08A1AC6B644 Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:05Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -7643,10 +7642,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Python-Flex-Scaling-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -7666,30 +7665,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b4951a5d-4950-4cce-8200-2b5dd49739fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/eb7841cf-37ee-4a99-a1c9-a33fb9b33285" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "d19a2f85-0fed-4b0c-aba1-64e57fbbd174" ], - "x-ms-correlation-request-id": [ "d19a2f85-0fed-4b0c-aba1-64e57fbbd174" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183551Z:d19a2f85-0fed-4b0c-aba1-64e57fbbd174" ], + "x-ms-request-id": [ "0b8286bb-c810-4a1e-a996-a472373824ce" ], + "x-ms-correlation-request-id": [ "0b8286bb-c810-4a1e-a996-a472373824ce" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014819Z:0b8286bb-c810-4a1e-a996-a472373824ce" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5E8CFE7633146719B24D4DFB49840E8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:35:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EB3F9D439BD44DEB068D1270FA1E82F Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:05Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0604284e-0000-0200-0000-691b6b070000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-w8x9\",\r\n \"name\": \"Functions-Python-Flex-Scaling-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-w8x9\",\r\n \"AppId\": \"c24921aa-389b-47b9-8a4a-50712c3880ae\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"19729223-b10a-4b32-9b94-5e0c50baaff7\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:35:41.5115526+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-w8x9_c24921aa-389b-47b9-8a4a-50712c3880ae_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"83003d7e-0000-0200-0000-69c733630000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-3wro\",\r\n \"name\": \"Functions-Python-Flex-Scaling-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-Flex-Scaling-3wro\",\r\n \"AppId\": \"fe0bf9e1-e792-4261-b393-e3ba64f4d439\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c7de0ca4-daeb-46e7-a234-be192320c59b\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-Flex-Scaling-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:48:07.3021356+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-3wro_fe0bf9e1-e792-4261-b393-e3ba64f4d439_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionspythonflexscalingw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"python\",\r\n \"version\": \"3.11\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"triggers\": {\r\n \"http\": {\r\n \"perInstanceConcurrency\": 16\r\n }\r\n },\r\n \"alwaysReady\": [\r\n {\r\n \"name\": \"http\",\r\n \"instanceCount\": 2\r\n }\r\n ],\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 4096\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionspythonflexscaling3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"python\",\r\n \"version\": \"3.11\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"triggers\": {\r\n \"http\": {\r\n \"perInstanceConcurrency\": 16\r\n }\r\n },\r\n \"alwaysReady\": [\r\n {\r\n \"name\": \"http\",\r\n \"instanceCount\": 2\r\n }\r\n ],\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 4096\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7703,43 +7702,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1022C542B\"" ], + "ETag": [ "\"1DCBE54F626B0D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "431e2134-4089-4f50-9872-3b18f803b140" ], + "x-ms-request-id": [ "c9c496a1-9469-40a6-a3a8-0ed49902b198" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a219d7cf-45d7-4033-9c49-ef08f3bf79a2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/dafd9a98-bb54-453b-a2dc-aa07a054d2bc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "701f4a1c-683a-4d41-8d28-20d170faa1b6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183615Z:701f4a1c-683a-4d41-8d28-20d170faa1b6" ], + "x-ms-correlation-request-id": [ "02f3470e-2160-4d9f-9ab7-dbe81951ff09" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014843Z:02f3470e-2160-4d9f-9ab7-dbe81951ff09" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6ED1EBC509AB4EA6824BFB4156720A8E Ref B: MWH011020807031 Ref C: 2025-11-17T18:35:51Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BE36111DE4E54F34A2D09F3413FEC923 Ref B: MWH011020809062 Ref C: 2026-03-28T01:48:19Z" ], + "Date": [ "Sat, 28 Mar 2026 01:48:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9681" ], + "Content-Length": [ "9841" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Python-Flex-Scaling-w8x9\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:35:53.96\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionspythonflexscalingw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-w8x9\\\\$Functions-Python-Flex-Scaling-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Python-Flex-Scaling-3wro\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:48:22.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionspythonflexscaling3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-3wro\\\\$Functions-Python-Flex-Scaling-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "376" ], - "x-ms-client-request-id": [ "c5cc1d4a-0e0e-4861-94ae-676d84caf25f" ], + "x-ms-unique-id": [ "347" ], + "x-ms-client-request-id": [ "76e08ccb-5bef-4f88-b6d0-93e51832b111" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -7749,42 +7748,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F10E6F0FCB\"" ], + "ETag": [ "1DCBE550258A395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ae05ca6-13ad-4a20-916c-f91276968cbc" ], + "x-ms-request-id": [ "87f71f3b-3910-4233-8606-06e6e399829c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5a50be45-0b19-4afd-a1a7-6d388f8d943b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183646Z:5a50be45-0b19-4afd-a1a7-6d388f8d943b" ], + "x-ms-correlation-request-id": [ "ea282e53-8423-453c-9471-bf3993af5778" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014914Z:ea282e53-8423-453c-9471-bf3993af5778" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D88CBDB7B194B3EB4314CB1B4C70880 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 518B01BBF1364C9991A23F5F6EE5DBD8 Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:14Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9663" ], + "Content-Length": [ "9645" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Python-Flex-Scaling-w8x9\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:36:15.5166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionspythonflexscalingw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-w8x9\\\\$Functions-Python-Flex-Scaling-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Python-Flex-Scaling-3wro\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:48:43.5133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionspythonflexscaling3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-3wro\\\\$Functions-Python-Flex-Scaling-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "377" ], - "x-ms-client-request-id": [ "446ed793-62f1-4781-a948-1a9c6a978b69" ], + "x-ms-unique-id": [ "348" ], + "x-ms-client-request-id": [ "907d7df4-3dc4-4f8b-bc04-23bdd35cffaa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7795,42 +7794,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F10E6F0FCB\"" ], + "ETag": [ "1DCBE550258A395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f985e36-47af-4daa-a064-20c51b3ff29b" ], + "x-ms-request-id": [ "483d291b-e419-4221-a86e-2e40ef0d2ccb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "56945adf-0745-4757-bd82-0feb32487b2d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183646Z:56945adf-0745-4757-bd82-0feb32487b2d" ], + "x-ms-correlation-request-id": [ "58849621-141d-4198-8ac8-24d4670cfb7b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014915Z:58849621-141d-4198-8ac8-24d4670cfb7b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE5E2A1A09144FEAA58BF8A8242C45FD Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 845A768414D141FAA4D2B91459A64010 Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:14Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9663" ], + "Content-Length": [ "9645" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Python-Flex-Scaling-w8x9\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:36:15.5166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionspythonflexscalingw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-w8x9\\\\$Functions-Python-Flex-Scaling-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Python-Flex-Scaling-3wro\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:48:43.5133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionspythonflexscaling3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-3wro\\\\$Functions-Python-Flex-Scaling-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "378" ], - "x-ms-client-request-id": [ "9de0261e-daf0-4521-adf1-2224970710a4" ], + "x-ms-unique-id": [ "349" ], + "x-ms-client-request-id": [ "d0fd30ad-f51c-481b-9b0c-e09ad97132fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7842,40 +7841,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c573bb2-bf37-4931-8b9d-2686af8593b5" ], + "x-ms-request-id": [ "5bfc9f50-e47b-4908-95a5-4bc99528ab54" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/946848c9-a67f-421d-aa19-c6cb3cebd6ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7363c3ee-84cb-4df9-ad81-a7d694099bae" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "61b2480b-7200-4785-b336-af5ad7828ac5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183647Z:61b2480b-7200-4785-b336-af5ad7828ac5" ], + "x-ms-correlation-request-id": [ "539d09d6-0d20-417e-ba55-97aa68cbcbfa" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014915Z:539d09d6-0d20-417e-ba55-97aa68cbcbfa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5920F2DB1BB4F79ADF7D765D64C9BFD Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18B806254233474DBE6A95C588561C4C Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:15Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "379" ], - "x-ms-client-request-id": [ "a4a19a45-099a-4a28-8d07-2c20ee6fe0b2" ], + "x-ms-unique-id": [ "350" ], + "x-ms-client-request-id": [ "2ee5b181-cc60-46e0-ab40-6354969b6d2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7887,41 +7886,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "95e69e58-7167-4847-a639-0c90f3e98e94" ], + "x-ms-request-id": [ "eaa33c16-3c7e-461f-9175-f9d76f1cd17c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6cdcaacf-1d38-45e4-b7dd-f4b1baf7891d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/00d21e64-fc01-4aa4-89bb-db868ff8e312" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0f66af2c-beff-4c0d-a7ca-ed61cfd67fec" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183647Z:0f66af2c-beff-4c0d-a7ca-ed61cfd67fec" ], + "x-ms-correlation-request-id": [ "7f60aa8b-f58f-4e89-8b9a-d2c9f1f16dff" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014915Z:7f60aa8b-f58f-4e89-8b9a-d2c9f1f16dff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6407182812648E4B76841040EFBD347 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB2C5ACAC3C3468793D2460BEF127BD2 Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:15Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "380" ], - "x-ms-client-request-id": [ "27ee0ecf-2353-447d-b50a-fbc433b7c200" ], + "x-ms-unique-id": [ "351" ], + "x-ms-client-request-id": [ "53a21a16-7bd8-4533-afd5-2c95cb9db29b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7933,40 +7932,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9cd7c97-4455-4c2a-a591-e356b5e132ff" ], + "x-ms-request-id": [ "50eaacbf-735e-4941-abbb-aa33c7c75c6a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "455cc40d-c000-401c-97b5-866eed07b86b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183648Z:455cc40d-c000-401c-97b5-866eed07b86b" ], + "x-ms-correlation-request-id": [ "99b02a6d-d5ea-403b-b10c-1e8d6b7447f9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014916Z:99b02a6d-d5ea-403b-b10c-1e8d6b7447f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 871E4E25662047129043D9C05D5CA859 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C931247270744A19AC37AB54A74C592C Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:15Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62356,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62356\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:35:02.4966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68099,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68099\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:47:30.24\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "381" ], - "x-ms-client-request-id": [ "23c52182-d19b-42df-8ea2-4a8d263585cc" ], + "x-ms-unique-id": [ "352" ], + "x-ms-client-request-id": [ "909bbebb-afad-4067-a3f2-9e5ac6d1b206" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7978,40 +7977,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3449806e-5ac4-4d2b-a123-16b185268d7c" ], + "x-ms-request-id": [ "e7983777-6246-478a-ac2a-5e44c21999e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e6807a01-3d9f-452f-8677-8bc345a09df9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/761f9be4-c515-412e-9cb7-4c222ed7ea5b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5d14d0fa-20dd-4d6a-80ea-50be1daa8e99" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183648Z:5d14d0fa-20dd-4d6a-80ea-50be1daa8e99" ], + "x-ms-correlation-request-id": [ "16bc7261-ba1d-48c4-b46a-6f3973207c60" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014916Z:16bc7261-ba1d-48c4-b46a-6f3973207c60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80C1D4B2271C4330816E03D92C3DAF58 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5667919E9D444D8AB835395155BCDF0 Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:16Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "382" ], - "x-ms-client-request-id": [ "7db85bf0-203f-4230-8662-61089d6dd9e9" ], + "x-ms-unique-id": [ "353" ], + "x-ms-client-request-id": [ "2f2b645a-be36-4b51-b191-7a9ec071cb92" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8022,42 +8021,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F10E6F0FCB\"" ], + "ETag": [ "1DCBE550258A395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d1d5075-f5e2-4a07-bdc6-68c4431358ed" ], + "x-ms-request-id": [ "2c087948-79d7-4923-995b-211e4ffc1f3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b795075b-4147-4f10-b831-2fa48ab5dff4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183648Z:b795075b-4147-4f10-b831-2fa48ab5dff4" ], + "x-ms-correlation-request-id": [ "bb894a23-ea51-4444-ba1f-d78f23f33e3f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014917Z:bb894a23-ea51-4444-ba1f-d78f23f33e3f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3FFA5CD84D844C9A7585830FA65E472 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4429923776BC4A4FB880C9E422CCC1B5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:16Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9663" ], + "Content-Length": [ "9645" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Python-Flex-Scaling-w8x9\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:36:15.5166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionspythonflexscalingw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-w8x9\\\\$Functions-Python-Flex-Scaling-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Python-Flex-Scaling-3wro\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:48:43.5133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionspythonflexscaling3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-3wro\\\\$Functions-Python-Flex-Scaling-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "383" ], - "x-ms-client-request-id": [ "6b665c32-6f1a-43d7-887e-ba05ec363b97" ], + "x-ms-unique-id": [ "354" ], + "x-ms-client-request-id": [ "ff837f63-4c16-480a-9813-349e376393fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8069,40 +8068,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c38df07-ce41-45ea-a123-48425f20bab2" ], + "x-ms-request-id": [ "9fb8bff6-192c-440e-9752-817e10320475" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/95719e82-24a7-41a1-958b-281c4f0aa49e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8f08e993-b2a2-4596-8395-f501848645ac" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f3eddb2e-cb71-493b-b45e-19000133ea53" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183649Z:f3eddb2e-cb71-493b-b45e-19000133ea53" ], + "x-ms-correlation-request-id": [ "46575253-de19-41ff-8762-a87b51eee976" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014917Z:46575253-de19-41ff-8762-a87b51eee976" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B80E50A819574856B9FDB72F2C59BC10 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 089E4F60F868476DB2B78869FB1A48BD Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:17Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "384" ], - "x-ms-client-request-id": [ "c9760afa-13c0-4f25-ba0e-c4869a3e1f1f" ], + "x-ms-unique-id": [ "355" ], + "x-ms-client-request-id": [ "b805193b-35b7-4508-92f6-276ce8875410" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8114,41 +8113,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cbea79f0-315b-4a65-8341-2773f21d0b5d" ], + "x-ms-request-id": [ "d6ee45e8-b2c8-420e-8f95-2581c958f0dc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/015f77e3-4de6-4b45-8ce6-094f4aa3bcdd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7e4ce316-6569-4f2d-9daf-d22ab5ccc982" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c23a1c11-17c8-4678-b599-dfd5a2b2bfea" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183649Z:c23a1c11-17c8-4678-b599-dfd5a2b2bfea" ], + "x-ms-correlation-request-id": [ "2a9a2df0-0be9-48ba-8dab-f28d093bc6a7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014917Z:2a9a2df0-0be9-48ba-8dab-f28d093bc6a7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17E4685668644A1E83CEBBA412443DF0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C892CDD96894F46BFEFE34C1977C224 Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:17Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "385" ], - "x-ms-client-request-id": [ "d4607754-ab0a-4c21-ac55-42834c08fdee" ], + "x-ms-unique-id": [ "356" ], + "x-ms-client-request-id": [ "31835195-b03d-40f0-8455-33eaa914e109" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8159,42 +8158,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F10E6F0FCB\"" ], + "ETag": [ "1DCBE550258A395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c043bc28-c91b-4a3a-8b2d-3da234673b17" ], + "x-ms-request-id": [ "7f15ae06-43cb-47b0-a214-55f4b35144b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1280cedc-8930-473e-817d-66e09bc00573" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183650Z:1280cedc-8930-473e-817d-66e09bc00573" ], + "x-ms-correlation-request-id": [ "f0b5bdbe-1ac6-42db-9a33-26c551c5c2f7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014918Z:f0b5bdbe-1ac6-42db-9a33-26c551c5c2f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2096374D11149FB8EC009F6596AF6B0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B281B5AF51CF4BF280DE7227FF6B77AF Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9663" ], + "Content-Length": [ "9645" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Python-Flex-Scaling-w8x9\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:36:15.5166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsaw8x9.blob.core.windows.net/app-package-functionspythonflexscalingw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-w8x9\\\\$Functions-Python-Flex-Scaling-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-python-flex-scaling-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Python-Flex-Scaling-3wro\",\"repositorySiteName\":\"Functions-Python-Flex-Scaling-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-flex-scaling-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:48:43.5133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppythonsa3wro.blob.core.windows.net/app-package-functionspythonflexscaling3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"python\",\"version\":\"3.11\"},\"scaleAndConcurrency\":{\"alwaysReady\":[{\"name\":\"http\",\"instanceCount\":2}],\"maximumInstanceCount\":100,\"instanceMemoryMB\":4096,\"triggers\":{\"http\":{\"perinstanceconcurrency\":16}}},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Python-Flex-Scaling-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Python-Flex-Scaling-3wro\\\\$Functions-Python-Flex-Scaling-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-python-flex-scaling-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "386" ], - "x-ms-client-request-id": [ "9d5556a6-866a-4408-891a-b63e3da1ef88" ], + "x-ms-unique-id": [ "357" ], + "x-ms-client-request-id": [ "821ba0bd-c1db-4a03-ac48-1e93a922827c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8206,40 +8205,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2e4cc82c-48f9-4ee5-bacd-b520a9cd8dfe" ], + "x-ms-request-id": [ "b15e824f-a097-4e2f-a918-487aa9d29955" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/14ad7f16-6b67-4a93-bbad-ff1fb8a50580" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1e22e254-36a1-4460-a4ba-f54eabdd922d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f46b04b5-c093-4d66-9612-ea385ed0f7be" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183650Z:f46b04b5-c093-4d66-9612-ea385ed0f7be" ], + "x-ms-correlation-request-id": [ "9f9571a6-bd04-40bf-931c-6740b54fbc05" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014918Z:9f9571a6-bd04-40bf-931c-6740b54fbc05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB6C5D2F3CC0447CBFC6423CE2966D2B Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:50Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6735E183C8D3488F856308B628A74F4F Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1017" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "387" ], - "x-ms-client-request-id": [ "51fd8cf0-2df7-45a1-8412-72e6e55883ee" ], + "x-ms-unique-id": [ "358" ], + "x-ms-client-request-id": [ "743abe5a-97d8-4ac8-9886-c4bcb97aff00" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8251,41 +8250,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "28cef1e2-b382-4c28-99eb-327e4f7d2390" ], + "x-ms-request-id": [ "cf705e7a-3dde-4f03-8184-5569b33287d2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/84ad03a2-473e-48e6-8173-9c10d2988d52" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07987d70-f567-4ac7-86e5-e5c7b01c013b" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183650Z:07987d70-f567-4ac7-86e5-e5c7b01c013b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/238cf984-6cd3-486d-8605-85a70a2329a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b8ae8f7b-a6de-42c3-ac23-5d4d1c1b1400" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014919Z:b8ae8f7b-a6de-42c3-ac23-5d4d1c1b1400" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92B99ED88D464351B850FADF349591B9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:50Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9635FD9FA036400DBF50115A6500E5DA Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4169" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9/config/web\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro/config/web\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "388" ], - "x-ms-client-request-id": [ "8adcb013-a6d3-45c0-bc68-87e020215981" ], + "x-ms-unique-id": [ "359" ], + "x-ms-client-request-id": [ "9b1663b0-e351-4f0d-9d96-85a8edc6c10e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8297,40 +8296,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4949e981-601a-43d2-97cd-69d2ee0d2f80" ], + "x-ms-request-id": [ "14cecc95-55e7-4eb6-b7d9-7ec13a826262" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4020c231-308d-425b-8bf3-d8cdfb3a4a6c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183651Z:4020c231-308d-425b-8bf3-d8cdfb3a4a6c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "1d62cfbc-bf06-423c-be45-daad0efb429c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014919Z:1d62cfbc-bf06-423c-be45-daad0efb429c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D884766AA4A44B193BB27800E301DB7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:51Z" ], - "Date": [ "Mon, 17 Nov 2025 18:36:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 380337ADB1EC4053844B4DD21D52D883 Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:19Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62356,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62356\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:35:02.4966667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68099,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68099\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:47:30.24\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Python Flex Consumption app with custom scaling settings and Always Ready configuration+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Python-Flex-Scaling-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "389" ], - "x-ms-client-request-id": [ "a0aa7dca-4180-45e9-88bb-e5a8a77230d0" ], + "x-ms-unique-id": [ "360" ], + "x-ms-client-request-id": [ "a56472c8-fcf3-49e5-b88c-a2d556464b12" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8341,20 +8340,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F10E6F0FCB\"" ], + "ETag": [ "\"1DCBE550258A395\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be866d71-2196-4cb6-bbfe-c6db9038866d" ], + "x-ms-request-id": [ "cc7f9f37-2227-414d-ac0f-34a19ce0cf77" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0e900177-2307-4931-90c5-8e52e8633160" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d67db0f9-059c-49c9-854f-35cd5a8f9a55" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "c5e52709-6630-432a-93e9-8ad40ec6b771" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183710Z:c5e52709-6630-432a-93e9-8ad40ec6b771" ], + "x-ms-correlation-request-id": [ "bb90876b-789e-4851-b8a0-358f4143dd26" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014934Z:bb90876b-789e-4851-b8a0-358f4143dd26" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 50DAC8328F694809B591DEC55E9BF53C Ref B: MWH011020807031 Ref C: 2025-11-17T18:36:52Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BED39FA2ED2A4DEE97ABAE5B6C28407B Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:19Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8368,7 +8367,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Node-SystemIdentity-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-SystemIdentity-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -8383,18 +8382,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac41fcdf-16ed-4adb-abf1-cfd55c4a493b" ], + "x-ms-request-id": [ "8a171ca7-eedc-41ad-a47b-773359779a92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6cef2700-552b-4c87-b0d5-adfdae40c4e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d01b8632-10d7-418e-8ef2-6e9728b61210" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "909a3919-dd1f-4e1c-a142-640d9007591d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183711Z:909a3919-dd1f-4e1c-a142-640d9007591d" ], + "x-ms-correlation-request-id": [ "5f328377-fc81-46aa-9141-ca3df15f2e9f" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T014934Z:5f328377-fc81-46aa-9141-ca3df15f2e9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD6C9ACAAC834F16A21F58BF0A6234E2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDB20788C85B4512A4D3FFE24BE6EB8B Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -8405,10 +8404,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"zoneRedundant\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\",\r\n \"capacity\": 3\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -8424,42 +8423,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "24c27d3b-73bf-4785-9f96-b35fc7f34491" ], + "x-ms-request-id": [ "31433764-688d-4fa6-8a97-313f86f5d735" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e7a9c256-8559-4dd7-ba1d-0638e7cfe3e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/00590df4-3e87-4aa3-a462-c49ce1769bca" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d2d48449-1721-496f-8373-362fa83f9aed" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183719Z:d2d48449-1721-496f-8373-362fa83f9aed" ], + "x-ms-correlation-request-id": [ "3e5741f0-e3e4-45d9-bfde-e92a092b17e7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T014938Z:3e5741f0-e3e4-45d9-bfde-e92a092b17e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 23F15A559528433FA9954275133E30A8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57DA4B6347A841798AEA42BFADE7DA7E Ref B: MWH011020809062 Ref C: 2026-03-28T01:49:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:49:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1906" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62357,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62357\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:37:18.9166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68100,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68100\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:49:37.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "393" ], - "x-ms-client-request-id": [ "5fd68e0c-d149-4913-a743-8d5a67a4a4dd" ], + "x-ms-unique-id": [ "364" ], + "x-ms-client-request-id": [ "4b6ba32d-f8ee-49b9-a0f8-7bd9ee6cf9e2" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -8470,41 +8469,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "737cef45-910f-45be-918e-df98086b7e30" ], + "x-ms-request-id": [ "c6b0b8f4-23a6-471d-9d88-07e552203ffe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8e388088-9d28-4bd6-b9cb-24f94941eec2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183750Z:8e388088-9d28-4bd6-b9cb-24f94941eec2" ], + "x-ms-correlation-request-id": [ "bc44a0c1-f8b5-4aea-ab0b-d673607f4b0a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015008Z:bc44a0c1-f8b5-4aea-ab0b-d673607f4b0a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6DD45699C9B94B038AAEA23F5221B5D7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F206A1A845D9450E903DA50C84B93BF1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:08Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62357,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62357\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:37:18.9166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68100,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68100\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:49:37.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "394" ], - "x-ms-client-request-id": [ "5fd68e0c-d149-4913-a743-8d5a67a4a4dd" ], + "x-ms-unique-id": [ "365" ], + "x-ms-client-request-id": [ "4b6ba32d-f8ee-49b9-a0f8-7bd9ee6cf9e2" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -8515,24 +8514,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "43a54e57-ff4e-469c-84cd-b0aabef73868" ], + "x-ms-request-id": [ "3506ecb9-9ce8-4e9b-a70f-babcb4975bf5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8aec865d-56e3-4839-9bf2-f0e3065b1ce6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183750Z:8aec865d-56e3-4839-9bf2-f0e3065b1ce6" ], + "x-ms-correlation-request-id": [ "35427476-57ad-4b60-8a0a-b3edded3fd02" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015009Z:35427476-57ad-4b60-8a0a-b3edded3fd02" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B5796DC6A19C4F7E9E0BF3A2442A88BA Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:50Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74B29B01C0A94C159F2BEC2CBC613592 Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:09Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62357,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62357\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:37:18.9166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68100,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68100\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:49:37.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -8543,12 +8542,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "395" ], - "x-ms-client-request-id": [ "4748efbf-b711-48ba-ade0-0fc2120edf3d" ], + "x-ms-unique-id": [ "366" ], + "x-ms-client-request-id": [ "7666f846-9fdd-4ef1-bb56-42524e8b4146" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8559,40 +8558,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "bb9f2fc0-c0b3-47e3-bd22-b0034991392e", "2dbfd9b0-e1a7-49dc-bee1-96f4ca1f1fea", "ab1bfe62-b3e0-4163-acc4-feb084e250f9" ], + "x-ms-original-request-ids": [ "020d7db7-1a2f-4d85-92e1-5accafa61b65", "a0845020-2ce8-48c0-98a2-4443ba411cd8", "4c2d4b04-15b2-4010-9d90-676099c8cdcf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5ae9c2ed-7c21-49ac-9fe8-8d36d2b73c45" ], - "x-ms-correlation-request-id": [ "5ae9c2ed-7c21-49ac-9fe8-8d36d2b73c45" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183751Z:5ae9c2ed-7c21-49ac-9fe8-8d36d2b73c45" ], + "x-ms-request-id": [ "13c79410-0f6e-4433-a596-77104f872111" ], + "x-ms-correlation-request-id": [ "13c79410-0f6e-4433-a596-77104f872111" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015010Z:13c79410-0f6e-4433-a596-77104f872111" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4F451461502744BC8608BF867A35B0B3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:50Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 735C912A16BD4F4ABE1FA865E396941D Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:09Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsnodesystemidentityw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsnodesystemidentity3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsnodesystemidentityw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsnodesystemidentity3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "396" ], - "x-ms-client-request-id": [ "dc711673-ed46-4181-9c64-4583c2938093" ], + "x-ms-unique-id": [ "367" ], + "x-ms-client-request-id": [ "131bdc6b-4f07-4212-a0f2-482edc0d4824" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8603,31 +8602,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "45f9c687-8d92-4cfb-a803-4be411b0cf87" ], + "x-ms-request-id": [ "c250f44a-0435-4db5-a2c7-88b62c46b31d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5b6ed2d8-69c6-4f4e-9a67-c124bb237aa3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c945408e-5c12-432f-97a2-38302ba38ef8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "86b8dd26-d176-4304-bed5-4626c7dde414" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183751Z:86b8dd26-d176-4304-bed5-4626c7dde414" ], + "x-ms-correlation-request-id": [ "3c13b418-2903-4fe6-b713-e8dc491d950c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015010Z:3c13b418-2903-4fe6-b713-e8dc491d950c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 985DA8002E8F44039EDE4AB69F57A883 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:51Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD4B7386BBB14AFD8409B218F9107D09 Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:10Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:71bd86e5-601e-0024-32f1-570fa1000000\\nTime:2025-11-17T18:37:51.7811980Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c808e5ae-201e-0013-5355-be016c000000\\nTime:2026-03-28T01:50:10.6412429Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsnodesystemidentityw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsnodesystemidentity3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsnodesystemidentityw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsnodesystemidentity3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -8642,25 +8641,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE26086AA54191\"" ], - "x-ms-request-id": [ "37b34f88-37db-47ed-85bc-4a39b1ce1913" ], + "ETag": [ "\"0x8DE8C6C5918C410\"" ], + "x-ms-request-id": [ "f4c7c8df-0902-487c-bd02-4b57ab5a8e64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f2534930-a7ac-4627-9540-a7cf5ea79265" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/212a7684-6f37-4877-9375-6677122df243" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "17e5efdf-18eb-4cf3-9802-849310ce85a9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183752Z:17e5efdf-18eb-4cf3-9802-849310ce85a9" ], + "x-ms-correlation-request-id": [ "aafbfb84-2b02-4d80-abe9-bcb30a138978" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015011Z:aafbfb84-2b02-4d80-abe9-bcb30a138978" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1D9F3A61B69041398397B3702871A419 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:51Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12F3876FD814452AB068B7405387A44A Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:10Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "460" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/blobServices/default/containers/app-package-functionsnodesystemidentityw8x9-0000000\",\"name\":\"app-package-functionsnodesystemidentityw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/blobServices/default/containers/app-package-functionsnodesystemidentity3wro-0000000\",\"name\":\"app-package-functionsnodesystemidentity3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -8671,12 +8670,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "398" ], - "x-ms-client-request-id": [ "4099d4c0-4b7c-4e26-98a3-bdf18d3ef54f" ], + "x-ms-unique-id": [ "369" ], + "x-ms-client-request-id": [ "5986392a-5c7a-44ce-a9b0-757399fef8cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8687,40 +8686,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "5e72a908-1a80-4150-bf16-813fb66c7720", "9e292507-fd66-4b79-8686-b54d6eaba46c", "c0b89de6-8ca5-4a6f-b6dc-c18a12da5894" ], + "x-ms-original-request-ids": [ "c9169af8-a180-4f50-adb1-2125b60f947d", "29d9ca2e-ff9b-4bbe-9da2-f1b1a39388aa", "2eacce8a-592e-408f-bc41-aa0ce0b51e94" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "8d192d15-1144-4d79-bd8d-49a67a39f317" ], - "x-ms-correlation-request-id": [ "8d192d15-1144-4d79-bd8d-49a67a39f317" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183753Z:8d192d15-1144-4d79-bd8d-49a67a39f317" ], + "x-ms-request-id": [ "d37b7a8c-970f-4d39-af17-02aedd3290b2" ], + "x-ms-correlation-request-id": [ "d37b7a8c-970f-4d39-af17-02aedd3290b2" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T015012Z:d37b7a8c-970f-4d39-af17-02aedd3290b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E28F5BA179554EF0B02B36420DAEB268 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:52Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CADDB3032BC42FAA5DB080D4B403C54 Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:11Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "399" ], - "x-ms-client-request-id": [ "5afa18de-3c24-49fe-9112-4a3d32b7ac33" ], + "x-ms-unique-id": [ "370" ], + "x-ms-client-request-id": [ "faf21736-437a-4811-973c-903340385ca4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8731,16 +8730,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e90080f3-907d-4d41-a998-33582b881bbb" ], + "x-ms-request-id": [ "4128b687-81a4-46bb-bc69-69323bb80968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/682eae66-22e4-4557-9708-7f872a2f6469" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9f526e1a-c226-463c-85a1-945c3f197050" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "341049aa-1291-4e3d-a671-b3b0052b18bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183753Z:341049aa-1291-4e3d-a671-b3b0052b18bd" ], + "x-ms-correlation-request-id": [ "1c7c19ee-504a-4b75-ac1b-fc5992270d4e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015012Z:1c7c19ee-504a-4b75-ac1b-fc5992270d4e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 413950C0E4934627BF0E5F72742A415F Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:53Z" ], - "Date": [ "Mon, 17 Nov 2025 18:37:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A718E6F62E3C4526AB725990A777E865 Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:12Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -8751,10 +8750,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-w8x9?api-version=2015-05-01+10": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-3wro?api-version=2015-05-01+10": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Node-SystemIdentity-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -8774,30 +8773,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0d33ea39-b5f3-4ae1-917c-9747d78f336e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/946923ef-045d-4ff1-9a04-d5cbab3937f5" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "53de23b5-194f-4385-876d-7c580fab2150" ], - "x-ms-correlation-request-id": [ "53de23b5-194f-4385-876d-7c580fab2150" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183808Z:53de23b5-194f-4385-876d-7c580fab2150" ], + "x-ms-request-id": [ "313568a1-88cc-4075-b156-431b6977dbf1" ], + "x-ms-correlation-request-id": [ "313568a1-88cc-4075-b156-431b6977dbf1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015026Z:313568a1-88cc-4075-b156-431b6977dbf1" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6F3279F1AED4EFBAA9EB25B7F8313F2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:37:53Z" ], - "Date": [ "Mon, 17 Nov 2025 18:38:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B0101C65885548CBA8DBBD8F8DD69618 Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:12Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1660" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"06048758-0000-0200-0000-691b6b900000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Node-SystemIdentity-w8x9\",\r\n \"name\": \"Functions-Node-SystemIdentity-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-w8x9\",\r\n \"AppId\": \"e9a4d8ae-e91c-460d-852f-f9ff788dfd7e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"96d4beab-1b2f-4b67-beae-f20d78791418\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-SystemIdentity-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:37:55.9829294+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-w8x9_e9a4d8ae-e91c-460d-852f-f9ff788dfd7e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"83008b82-0000-0200-0000-69c733e20000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Node-SystemIdentity-3wro\",\r\n \"name\": \"Functions-Node-SystemIdentity-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-SystemIdentity-3wro\",\r\n \"AppId\": \"6204ab8c-066f-4e9a-b178-fbd25025d2eb\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"b27e8ff1-5974-4045-b674-61b0a02b59ea\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-SystemIdentity-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:50:14.6450366+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-3wro_6204ab8c-066f-4e9a-b178-fbd25025d2eb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"SystemAssignedIdentity\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsnodesystemidentityw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"node\",\r\n \"version\": \"22\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"SystemAssignedIdentity\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsnodesystemidentity3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"node\",\r\n \"version\": \"22\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8811,43 +8810,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1564FA2AB\"" ], + "ETag": [ "\"1DCBE5542706A35\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "53002527-8c72-4c67-8990-a65e336fe5c2" ], + "x-ms-request-id": [ "17a88e00-cfa8-4e7f-84a9-a728702d12e8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6956c509-08c6-4ee1-b376-821ec531a7b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0d01e00a-bb7c-433b-a71e-5a079628b095" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5910a611-0867-41f1-a286-3306b73f2efc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183837Z:5910a611-0867-41f1-a286-3306b73f2efc" ], + "x-ms-correlation-request-id": [ "86b09ee6-df5d-4d33-9d99-75b2a03b5cb2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015051Z:86b09ee6-df5d-4d33-9d99-75b2a03b5cb2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC7EE6D0F45948C79CC23BFA667C5CE6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:38:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:38:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6ADFA96406B45398689F08A71619C6D Ref B: MWH011020809062 Ref C: 2026-03-28T01:50:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:50:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9714" ], + "Content-Length": [ "9874" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Node-SystemIdentity-w8x9\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:38:15.6066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsnodesystemidentityw8x9-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-w8x9\\\\$Functions-Node-SystemIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"577a16cc-18b0-4e36-87c4-77db1de0d78f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Node-SystemIdentity-3wro\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\",\"functions-node-systemidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:50:30.5366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsnodesystemidentity3wro-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Node-SystemIdentity-3wro\\\\$Functions-Node-SystemIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"964a5d16-1018-46ab-93bf-d27d0fbbf8d0\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "402" ], - "x-ms-client-request-id": [ "115d5b30-84bc-4db9-81c5-8fa4a2a3ea8c" ], + "x-ms-unique-id": [ "373" ], + "x-ms-client-request-id": [ "e6cc98b8-8bfa-4a6b-84db-2f3feb364af0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -8857,42 +8856,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F163171EAB\"" ], + "ETag": [ "1DCBE554E6DF980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c53ad125-e74e-4579-b136-4b66cb46c8c9" ], + "x-ms-request-id": [ "2bbfac6f-4512-45cc-bbad-067cce7d082b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5dd4f971-5cb6-4ac3-8e31-183006df6685" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183908Z:5dd4f971-5cb6-4ac3-8e31-183006df6685" ], + "x-ms-correlation-request-id": [ "72be5d4d-e58f-46ab-8794-b961e1b8e81c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015122Z:72be5d4d-e58f-46ab-8794-b961e1b8e81c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C41149E3663C401B98D576D8595E5B70 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F575FADA7D7447CAC4B7E7C35DE2064 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:22Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9691" ], + "Content-Length": [ "9668" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Node-SystemIdentity-w8x9\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:38:37.5466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsnodesystemidentityw8x9-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-w8x9\\\\$Functions-Node-SystemIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"577a16cc-18b0-4e36-87c4-77db1de0d78f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Node-SystemIdentity-3wro\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\",\"functions-node-systemidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:50:51.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsnodesystemidentity3wro-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Node-SystemIdentity-3wro\\\\$Functions-Node-SystemIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"964a5d16-1018-46ab-93bf-d27d0fbbf8d0\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "403" ], - "x-ms-client-request-id": [ "ffb015cf-d38e-4b94-837e-31eb73575c4e" ], + "x-ms-unique-id": [ "374" ], + "x-ms-client-request-id": [ "a499ab4c-f37f-48cb-94ea-88dcd9517ea6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8903,42 +8902,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F163171EAB\"" ], + "ETag": [ "1DCBE554E6DF980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e2ae99c-1c16-49a5-9c52-7d0e89db2e1f" ], + "x-ms-request-id": [ "2c57842a-fec2-457d-8fb1-4accd6261743" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "514853a0-5750-4034-becc-fbe6eb15e831" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183908Z:514853a0-5750-4034-becc-fbe6eb15e831" ], + "x-ms-correlation-request-id": [ "c517cdf0-308f-4779-be58-1a5b3cf5422d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015122Z:c517cdf0-308f-4779-be58-1a5b3cf5422d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3571FED02EDE4151B1936FDEC0BFFA45 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE408B25A1084033B1FE7EE191C41E6C Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:22Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9691" ], + "Content-Length": [ "9668" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Node-SystemIdentity-w8x9\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:38:37.5466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsnodesystemidentityw8x9-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-w8x9\\\\$Functions-Node-SystemIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"577a16cc-18b0-4e36-87c4-77db1de0d78f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Node-SystemIdentity-3wro\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\",\"functions-node-systemidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:50:51.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsnodesystemidentity3wro-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Node-SystemIdentity-3wro\\\\$Functions-Node-SystemIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"964a5d16-1018-46ab-93bf-d27d0fbbf8d0\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "404" ], - "x-ms-client-request-id": [ "3b75082b-5fde-47f2-847e-b3079c6be314" ], + "x-ms-unique-id": [ "375" ], + "x-ms-client-request-id": [ "35f30f02-f57a-4101-ade4-9402fa6e334d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8950,40 +8949,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "77ab5a8a-1891-47ee-81a7-c0e406d433d9" ], + "x-ms-request-id": [ "c57fc0eb-abb9-49f9-86b6-34c191162b3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/04789be2-96f9-4472-818e-c447a0496c01" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/829958c8-a1c8-4554-8b40-702335e842f1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ed6ae021-b8de-48a4-af69-5b08ec34bc7f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183909Z:ed6ae021-b8de-48a4-af69-5b08ec34bc7f" ], + "x-ms-correlation-request-id": [ "51356833-7ac8-4bf3-8286-cd6cefe34acf" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015123Z:51356833-7ac8-4bf3-8286-cd6cefe34acf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1EDDCD07E4AD449D9D5ECB5AC216D073 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DF7BF8DDBC34562959149A474AE2A87 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:22Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "405" ], - "x-ms-client-request-id": [ "95fe3b66-3d0f-4de0-b8be-09827d6dae50" ], + "x-ms-unique-id": [ "376" ], + "x-ms-client-request-id": [ "18c0cf9d-50be-4adb-9c14-852b9fae5f7c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8995,41 +8994,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "55a58580-cbf0-4b8b-9665-65897093dbcd" ], + "x-ms-request-id": [ "3ecc08c7-a4ae-4f6a-8f61-213c010ea956" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/905032fe-2127-4ff1-b321-23c2453e0c9b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b204fb60-df4c-4a42-834c-f388c48ac098" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "25fb6ef6-9f6b-43e5-afd5-1af241d9cf88" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183909Z:25fb6ef6-9f6b-43e5-afd5-1af241d9cf88" ], + "x-ms-correlation-request-id": [ "1fff00e7-14ba-46be-8cef-641e7ab19d3a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015123Z:1fff00e7-14ba-46be-8cef-641e7ab19d3a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1AB0D82145304BB685EDF4A917A1BB68 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B54B420C7B64CA2905D95DFD0A20A6A Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":39439,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":44941,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "406" ], - "x-ms-client-request-id": [ "36f728b0-e513-4b13-9d10-409db4c25591" ], + "x-ms-unique-id": [ "377" ], + "x-ms-client-request-id": [ "23ae7798-0cdc-4d85-8de7-d3ef7cd5854f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9041,40 +9040,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bc4a1f28-097c-47f9-879c-2969185810f4" ], + "x-ms-request-id": [ "f2feb452-ee4e-473c-bc70-84f43897a351" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9ac4a9b9-ca56-4b80-a524-cbe9c40c5099" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183909Z:9ac4a9b9-ca56-4b80-a524-cbe9c40c5099" ], + "x-ms-correlation-request-id": [ "a7aaf72a-0b7b-4575-b284-31699731c03b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015123Z:a7aaf72a-0b7b-4575-b284-31699731c03b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A87186DFCA34615BD4AC9ABCB659130 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 67B4A22AF96942E7853722D03D479FDE Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:23Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62357,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62357\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:37:18.9166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68100,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68100\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:49:37.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "407" ], - "x-ms-client-request-id": [ "234bd2ac-c131-4263-9dbf-c1e5e64d7810" ], + "x-ms-unique-id": [ "378" ], + "x-ms-client-request-id": [ "4d0e3f53-21a7-427a-8bc6-1b5a0193fb2b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9086,40 +9085,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fdad53e-26fc-4ad5-b398-728e1482b56c" ], + "x-ms-request-id": [ "f69627b7-bcb4-424d-8ede-e1ff8ec75d36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/dbb28036-7bad-40be-8216-b018b5b4724b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "dc597911-e843-4cbe-a7d0-1b176ec97dae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183910Z:dc597911-e843-4cbe-a7d0-1b176ec97dae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7c0b444b-27eb-4ff8-926a-3d956086c90d" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "48fae1f8-c05f-48ba-ae69-963a4757e022" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015124Z:48fae1f8-c05f-48ba-ae69-963a4757e022" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 52D84D3E96A14172B7021B9259899989 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CFE992BF4204353ABEFC2A246F2F959 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "408" ], - "x-ms-client-request-id": [ "0080dd83-350e-4a6d-adf4-25addd689b08" ], + "x-ms-unique-id": [ "379" ], + "x-ms-client-request-id": [ "581c8350-156c-43b8-9668-43aa9725e9bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9130,42 +9129,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F163171EAB\"" ], + "ETag": [ "1DCBE554E6DF980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f151725-ea01-40f6-8202-54f9aa5c3682" ], + "x-ms-request-id": [ "031d7511-cc1b-46af-8ff4-470ffa2fe104" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0c4d86c1-1c39-4696-90ed-bc399127cfa1" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183910Z:0c4d86c1-1c39-4696-90ed-bc399127cfa1" ], + "x-ms-correlation-request-id": [ "2485363c-e4b1-43ef-bc7e-77a36fe311b4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015124Z:2485363c-e4b1-43ef-bc7e-77a36fe311b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 350495814AD3469384BBAB45B8825311 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B20CABDAB28462A9B4B82147E5DBDF6 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9691" ], + "Content-Length": [ "9668" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Node-SystemIdentity-w8x9\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:38:37.5466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsnodesystemidentityw8x9-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-w8x9\\\\$Functions-Node-SystemIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"577a16cc-18b0-4e36-87c4-77db1de0d78f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Node-SystemIdentity-3wro\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\",\"functions-node-systemidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:50:51.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsnodesystemidentity3wro-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Node-SystemIdentity-3wro\\\\$Functions-Node-SystemIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"964a5d16-1018-46ab-93bf-d27d0fbbf8d0\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "409" ], - "x-ms-client-request-id": [ "60392b31-bf7d-4bfb-849f-1c01abc1fb0c" ], + "x-ms-unique-id": [ "380" ], + "x-ms-client-request-id": [ "53555360-75b9-41e6-b0d5-65369843f843" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9177,40 +9176,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bcbb612d-80b0-47cb-be3e-8f79996ce6be" ], + "x-ms-request-id": [ "9e50f398-dc76-4eee-85b7-c369ec614b33" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/93c5beb0-bf9d-406f-ba22-e44dc6ea2da5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b5b77565-88bf-446e-850e-cf9985272745" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9a519900-8151-4d40-9064-6bb197782760" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183911Z:9a519900-8151-4d40-9064-6bb197782760" ], + "x-ms-correlation-request-id": [ "7f9b0880-4fee-4e72-be8c-4b37fe92a2ea" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015125Z:7f9b0880-4fee-4e72-be8c-4b37fe92a2ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69162BB6BDDD43ACB66E5626AEC7739B Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42FA2A20DD53411F83406C75FEA0265F Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "410" ], - "x-ms-client-request-id": [ "3685dfc9-7600-4baa-b0ee-6cc8422f17fa" ], + "x-ms-unique-id": [ "381" ], + "x-ms-client-request-id": [ "53aa68d2-7333-4cfc-9b67-cddac8754ea3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9222,41 +9221,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7514aedf-8f65-4ea9-aeb3-23d64598b253" ], + "x-ms-request-id": [ "e26b25b1-5a6f-4785-bc39-d5321607781c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6a0dc247-4625-4421-bb60-bfba2b25823e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/efd4639f-4577-4241-856f-9edd8cd6cc23" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "894f8c40-bf53-4cf3-a5fa-6273ab35ca97" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183911Z:894f8c40-bf53-4cf3-a5fa-6273ab35ca97" ], + "x-ms-correlation-request-id": [ "6264f854-d3eb-467d-9bf0-5858353b0371" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015125Z:6264f854-d3eb-467d-9bf0-5858353b0371" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 351A3D9FB1F44CAE9E36F78685CB507D Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA76541EDA874144A89D82AB7593FBB1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:24 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":39439,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":44941,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "411" ], - "x-ms-client-request-id": [ "3a77ee2f-6699-4691-80f8-c8f23f6377e2" ], + "x-ms-unique-id": [ "382" ], + "x-ms-client-request-id": [ "cc4e0df9-8386-474b-a54f-2ea652e5cd80" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9267,42 +9266,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F163171EAB\"" ], + "ETag": [ "1DCBE554E6DF980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c2406380-6b35-4420-a65e-610f66a841a8" ], + "x-ms-request-id": [ "57901bae-9701-4958-91be-63cfcfe0c668" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "406abf9a-cabd-4dee-be33-b03a286b12d0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183912Z:406abf9a-cabd-4dee-be33-b03a286b12d0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "b6674c76-a0f5-4e64-9c48-b223775255f0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015125Z:b6674c76-a0f5-4e64-9c48-b223775255f0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83F25D0745B14C03879E4AA502595C34 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FE9EE8DE3D84F7E90D5E8AB959B934C Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9691" ], + "Content-Length": [ "9668" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Node-SystemIdentity-w8x9\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:38:37.5466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesaw8x9.blob.core.windows.net/app-package-functionsnodesystemidentityw8x9-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Node-SystemIdentity-w8x9\\\\$Functions-Node-SystemIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-node-systemidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"577a16cc-18b0-4e36-87c4-77db1de0d78f\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Node-SystemIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Node-SystemIdentity-3wro\",\"repositorySiteName\":\"Functions-Node-SystemIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-systemidentity-3wro.azurewebsites.net\",\"functions-node-systemidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-systemidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:50:51.16\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappnodesa3wro.blob.core.windows.net/app-package-functionsnodesystemidentity3wro-0000000\",\"authentication\":{\"type\":\"systemassignedidentity\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"node\",\"version\":\"22\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Node-SystemIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Node-SystemIdentity-3wro\\\\$Functions-Node-SystemIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-node-systemidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"964a5d16-1018-46ab-93bf-d27d0fbbf8d0\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "412" ], - "x-ms-client-request-id": [ "4180dfc8-e05f-4a5d-82cd-b8d82dfce4f8" ], + "x-ms-unique-id": [ "383" ], + "x-ms-client-request-id": [ "f22793f5-51c5-46d4-84f5-bad2cd26b070" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9314,40 +9313,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d6ce60b-7048-477e-81c6-b15f9ee5197c" ], + "x-ms-request-id": [ "5b6d40d9-0ceb-4aa5-8926-0c4e9fe3a715" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/897c1b45-f55d-4f21-a1cd-fd255d88c958" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2881de85-e9ca-48c6-acb7-f2f975a6759c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183912Z:2881de85-e9ca-48c6-acb7-f2f975a6759c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d971054b-4c42-4bd8-8db9-b57dc4647a3b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "797" ], + "x-ms-correlation-request-id": [ "61db71f2-cad4-45b9-b27d-5457b0542f18" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015126Z:61db71f2-cad4-45b9-b27d-5457b0542f18" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B6963343986441F851CA74F9D748425 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE5E7FEE3A2B4469B6D28DEDBC40ACD7 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "779" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "9db892c8-632b-4fe3-98f3-bba6541d936b" ], + "x-ms-unique-id": [ "384" ], + "x-ms-client-request-id": [ "32371c0e-a74e-4b28-9108-05316b2d0939" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9359,41 +9358,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d511ea3-992f-4171-abf6-8c7ccc49f66a" ], + "x-ms-request-id": [ "c84969c0-0e5d-4b16-809a-42e37215daa4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/31bd3f76-a447-47ee-b616-f3ba6587567e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "405054cd-39d7-4b21-8165-eb77670d25d7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183913Z:405054cd-39d7-4b21-8165-eb77670d25d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/972ee859-d1ec-4a97-ad5e-d3b4c2499330" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7b81e22b-63c0-4c83-a906-1b242146560a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015126Z:7b81e22b-63c0-4c83-a906-1b242146560a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B622A63F4584465B224649F7E241629 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54AE826EF5894EA6B213578067993C06 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4170" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9/config/web\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":39439,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro/config/web\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":44941,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "414" ], - "x-ms-client-request-id": [ "45e81808-fa3a-427e-9cf2-5228808f7891" ], + "x-ms-unique-id": [ "385" ], + "x-ms-client-request-id": [ "24bea85d-db75-4bc1-b736-b9ed243bb7e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9405,40 +9404,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8fa16ab6-3c79-4b92-85b0-000ec8c67083" ], + "x-ms-request-id": [ "98741860-5440-4f3c-ae1c-954e2e9d56f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f54ba7aa-ccbd-47cd-a501-ec5c6928cf58" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183913Z:f54ba7aa-ccbd-47cd-a501-ec5c6928cf58" ], + "x-ms-correlation-request-id": [ "f7088613-8eeb-4bc8-86dd-f7051785729f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015127Z:f7088613-8eeb-4bc8-86dd-f7051785729f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20F925BC52164CE2BCB40A16C1AEBF97 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F2709C54C7DA4E8A8D79AD07A8ACE47A Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1815" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62357,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62357\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:37:18.9166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68100,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68100\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":true,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":3,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:49:37.8933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Node ZoneRedundant Flex Consumption app with SystemAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Node-SystemIdentity-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "415" ], - "x-ms-client-request-id": [ "5e051191-cee5-43ca-8018-efd1abe82166" ], + "x-ms-unique-id": [ "386" ], + "x-ms-client-request-id": [ "1a3d7029-ba89-428b-aad8-76666e2cdacf" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9449,20 +9448,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F163171EAB\"" ], + "ETag": [ "\"1DCBE554E6DF980\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffb774ee-313a-4606-8e08-3bb8d9f619ec" ], + "x-ms-request-id": [ "2489c3fa-634b-41b1-b87e-00ed8e8bb87d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/511efb99-6bfa-4bd6-9b9b-5522bc4fbd40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cd14fe3b-e7b6-4069-a3ec-d92bd69021dc" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "74f4cada-0de3-4acc-8a22-707cac6f1986" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183933Z:74f4cada-0de3-4acc-8a22-707cac6f1986" ], + "x-ms-correlation-request-id": [ "506fc4f4-9d57-4bea-a132-31c0cacc9a0e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015142Z:506fc4f4-9d57-4bea-a132-31c0cacc9a0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B506491BD784DE1A43687039C9B7E0F Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 68E6E11B3C064E89BAB35BEEF4182DE2 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9476,7 +9475,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9491,18 +9490,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4c3ebe6c-8cc4-4d55-9aaa-bb929a821e34" ], + "x-ms-request-id": [ "18239d43-8ca5-44a8-bf8e-0d7a3f0f0f3a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3401b9d4-edb7-40f0-bb9e-8067ea39fff0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b2a8cfc5-ff80-421e-b2bc-35ae0658effd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ec60cee2-6fd7-41e5-a47a-fd3c22ca7ac5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T183934Z:ec60cee2-6fd7-41e5-a47a-fd3c22ca7ac5" ], + "x-ms-correlation-request-id": [ "8e2989eb-d215-4fbc-933e-217177e9665b" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T015142Z:8e2989eb-d215-4fbc-933e-217177e9665b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E731C045B29C4EBCBA17F98E670CFCD6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:34Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 87F0B1A152B849ACA3C22DE182822DA7 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:42Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9513,10 +9512,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -9532,42 +9531,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ea6d72e8-7e22-47aa-bc75-8efdcb3c0b91" ], + "x-ms-request-id": [ "3f0b1387-21b1-4cec-a568-64d7cddef156" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/711b798c-75af-48b0-ab29-c3f9c8a39431" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/87441ad2-6f2f-44a5-a70b-6fc876645f53" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "980cff87-7453-4b4d-a171-fc0f39a8bd66" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T183940Z:980cff87-7453-4b4d-a171-fc0f39a8bd66" ], + "x-ms-correlation-request-id": [ "675c74f9-acc7-4c9e-8575-d5d5563004d8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015145Z:675c74f9-acc7-4c9e-8575-d5d5563004d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 983E896D09AA42478DD96634AE675CE9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:39:35Z" ], - "Date": [ "Mon, 17 Nov 2025 18:39:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3B6A53B368C42F58F2672AF49AF13B6 Ref B: MWH011020809062 Ref C: 2026-03-28T01:51:42Z" ], + "Date": [ "Sat, 28 Mar 2026 01:51:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62361,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:39:39.9466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":77754,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77754\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:51:45.4633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "419" ], - "x-ms-client-request-id": [ "ad58c9fd-2e0d-41de-b7a4-28a1517c04da" ], + "x-ms-unique-id": [ "390" ], + "x-ms-client-request-id": [ "8967dc33-1e86-40c3-93db-7cf46a666438" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -9578,41 +9577,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b03d40bf-02fd-4b2d-b459-b98ba53d4a99" ], + "x-ms-request-id": [ "1ace4640-2bfb-4599-b434-3cb5e9bb3763" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f1956c4b-4158-429a-8f45-deee9e1ca61f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184010Z:f1956c4b-4158-429a-8f45-deee9e1ca61f" ], + "x-ms-correlation-request-id": [ "b3250504-385f-4e44-a72c-6436c90ab0fa" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015216Z:b3250504-385f-4e44-a72c-6436c90ab0fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AC4440288B6C41EEAD40EA2F8A77D222 Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78467B4BBCF4451FB3721406C5BCEBB8 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:16Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62361,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:39:39.9466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77754,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77754\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:51:45.4633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "420" ], - "x-ms-client-request-id": [ "ad58c9fd-2e0d-41de-b7a4-28a1517c04da" ], + "x-ms-unique-id": [ "391" ], + "x-ms-client-request-id": [ "8967dc33-1e86-40c3-93db-7cf46a666438" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -9623,24 +9622,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8855ffda-16d5-4fdd-9b29-db19d8b1ecc6" ], + "x-ms-request-id": [ "4c8f689f-f967-4f9a-921e-c13fe34a2fdf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a3469876-392d-43e2-a5ad-613b13c864c0" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184012Z:a3469876-392d-43e2-a5ad-613b13c864c0" ], + "x-ms-correlation-request-id": [ "9ea342ae-a995-4382-aa17-79c319fd853c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015216Z:9ea342ae-a995-4382-aa17-79c319fd853c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A43A62BA983345F1B9DFCB452AACD16B Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7B1E4F654FEE4D93A47037E847CB06C3 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:16Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62361,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:39:39.9466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77754,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77754\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:51:45.4633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -9651,12 +9650,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "421" ], - "x-ms-client-request-id": [ "a0cb6a15-3326-453f-b43f-4c28b33e64b3" ], + "x-ms-unique-id": [ "392" ], + "x-ms-client-request-id": [ "98f036d1-ec09-4eae-9019-0df76a05047e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9667,40 +9666,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "dc0da0c6-2361-47d7-b502-ec43a14e8abb", "a8f33780-9457-412d-87be-a352768bbad9", "88b24818-d52c-4000-90d4-1fe2beddd336" ], + "x-ms-original-request-ids": [ "bfa16fd4-a71b-4759-accb-65033b1b4f4c", "b85841f4-7b19-4d87-a845-13e29c1e9c47", "63ae92d6-24d6-4155-9175-b7a062be2966" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "63760966-ee57-4e07-9911-a91f6e156b75" ], - "x-ms-correlation-request-id": [ "63760966-ee57-4e07-9911-a91f6e156b75" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184013Z:63760966-ee57-4e07-9911-a91f6e156b75" ], + "x-ms-request-id": [ "1bcdd815-5739-46bc-926a-f072ffac2ee0" ], + "x-ms-correlation-request-id": [ "1bcdd815-5739-46bc-926a-f072ffac2ee0" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015218Z:1bcdd815-5739-46bc-926a-f072ffac2ee0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A020CF10694D46B68D2AB8184FB3E504 Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF86D730D1124E7294A9597B50909436 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:17Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "422" ], - "x-ms-client-request-id": [ "7fa62175-d74f-48de-9319-e36457ec198a" ], + "x-ms-unique-id": [ "393" ], + "x-ms-client-request-id": [ "1c9ea219-9bc8-4301-85a6-c358c18ae15f" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9711,31 +9710,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "65044a56-9fa0-4547-8f1b-b34de1a2b0d1" ], + "x-ms-request-id": [ "a668c5e5-47b1-4bfb-bcd7-dc56f42c4612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/05f7288c-69a9-41e9-865e-b1b5d5b89b80" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cc570751-b69b-449e-b422-c04bcef4dbd3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "56b197a4-b05c-40d8-954f-2660419c46ab" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184014Z:56b197a4-b05c-40d8-954f-2660419c46ab" ], + "x-ms-correlation-request-id": [ "94736dc9-2b13-4f1d-aced-1d79acad64af" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015218Z:94736dc9-2b13-4f1d-aced-1d79acad64af" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB5957085F4D494B96DD2C9F2302356D Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 526A31BC8C1B4215A6F68FA5456B91F0 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c840685e-701e-0050-5af1-571978000000\\nTime:2025-11-17T18:40:13.9685447Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:fea5eebd-401e-0006-0555-bee897000000\\nTime:2026-03-28T01:52:18.6780925Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -9750,41 +9749,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE2608BF636E78\"" ], - "x-ms-request-id": [ "39f7a6b2-26bb-4d79-81c3-10233ec45ee7" ], + "ETag": [ "\"0x8DE8C6CA56A924F\"" ], + "x-ms-request-id": [ "42fcbb66-ed94-4b13-baf4-89cc0d613348" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/db0ddd32-558b-4ce1-82ec-8d5e1ea027e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/17b37db0-3356-4636-9f6d-d883fada9d0c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8d20d23c-7e4a-4690-88e5-68b33e791a31" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184014Z:8d20d23c-7e4a-4690-88e5-68b33e791a31" ], + "x-ms-correlation-request-id": [ "84745ea8-a221-4a1d-a134-eb7448252791" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015219Z:84745ea8-a221-4a1d-a134-eb7448252791" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64646A396BF94D49843FC32F073C4BAF Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA80F49EF29A4D6E8BDEC7924F272E87 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:18Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "468" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000\",\"name\":\"app-package-functionspwshuserassignedidentit-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspwshuserassignedidentit-0000000\",\"name\":\"app-package-functionspwshuserassignedidentit-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9?api-version=2018-11-30+8": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro?api-version=2018-11-30+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9?api-version=2018-11-30", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro?api-version=2018-11-30", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "424" ], - "x-ms-client-request-id": [ "9a9ade7b-5723-4569-babb-bd338189bf13" ], + "x-ms-unique-id": [ "395" ], + "x-ms-client-request-id": [ "d01748ad-e562-43cf-9005-149672080e9c" ], "CommandName": [ "Az.Functions.internal\\Get-AzUserAssignedIdentity" ], "FullCommandName": [ "Get-AzUserAssignedIdentity_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9798,20 +9797,20 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "7a193693-3556-4c2e-bc97-a91dc1c0a799" ], - "x-ms-correlation-request-id": [ "7a193693-3556-4c2e-bc97-a91dc1c0a799" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184014Z:7a193693-3556-4c2e-bc97-a91dc1c0a799" ], + "x-ms-request-id": [ "bbcac5a7-a07a-4c65-9a32-a5e1113019fb" ], + "x-ms-correlation-request-id": [ "bbcac5a7-a07a-4c65-9a32-a5e1113019fb" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015219Z:bbcac5a7-a07a-4c65-9a32-a5e1113019fb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B84D0BE631F54F018032F6C3DFCF10DC Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C12EC1E97BC4E308A0B06E1943692A9 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:19Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "466" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"location\":\"eastasia\",\"tags\":{},\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\",\"name\":\"my-flex-app-uai-w8x9\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a14f1961-c973-490d-b71e-430fc0ffff2b\",\"clientId\":\"e15aad9b-2c91-48a4-9666-dda9d5f50327\"}}", + "Content": "{\"location\":\"eastasia\",\"tags\":{},\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\",\"name\":\"my-flex-app-uai-3wro\",\"type\":\"Microsoft.ManagedIdentity/userAssignedIdentities\",\"properties\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"cf903595-e2e4-4253-bac5-dd7f3bdf61dc\",\"clientId\":\"1c8707b8-10eb-4844-99ff-65ec5451412a\"}}", "isContentBase64": false } }, @@ -9822,12 +9821,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "425" ], - "x-ms-client-request-id": [ "6c0387de-3ef0-4851-a329-66dfa6bc1c41" ], + "x-ms-unique-id": [ "396" ], + "x-ms-client-request-id": [ "380c76d8-8f48-4bd4-a9eb-990548559ecf" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9838,40 +9837,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a281ce1e-bb4b-4499-8800-fc64920af9dc", "6651c7ef-c102-49f6-bd25-f027539a212c", "0f070669-6bad-482a-af5f-4bf250779916" ], + "x-ms-original-request-ids": [ "b6074a7b-e002-4a06-9566-4a5c622289ef", "c61c5bd1-c06f-4555-b12c-1c218a73448a", "ec71a1c2-f8a2-405b-a0bf-0ea8e993e815" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3764e4a8-7f75-4958-ab59-43772ce473eb" ], - "x-ms-correlation-request-id": [ "3764e4a8-7f75-4958-ab59-43772ce473eb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184015Z:3764e4a8-7f75-4958-ab59-43772ce473eb" ], + "x-ms-request-id": [ "5ed0c9d6-fc70-432b-a5ec-602e296e6be7" ], + "x-ms-correlation-request-id": [ "5ed0c9d6-fc70-432b-a5ec-602e296e6be7" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T015220Z:5ed0c9d6-fc70-432b-a5ec-602e296e6be7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AA3EC7FF62F42FFA82254CD8450DF52 Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:15Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2470E69179FB4032BE0DB96F31300757 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:19Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+10": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "426" ], - "x-ms-client-request-id": [ "1e4e440e-6173-4605-893e-2c9458b285e9" ], + "x-ms-unique-id": [ "397" ], + "x-ms-client-request-id": [ "293edfe2-cf1f-4750-83c3-cc1a1505f279" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9882,16 +9881,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5c2b50b8-40c6-407b-a280-06ef33669ab1" ], + "x-ms-request-id": [ "ad44b078-6134-4e49-87c0-78127fc89c9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b35bbafd-376d-408a-9f82-b115b2d1dfc4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f0ee2c4d-c6ff-4c6f-9b89-522cec0d95aa" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6ec6fb71-9498-4010-81e6-fda6908a7fe5" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184016Z:6ec6fb71-9498-4010-81e6-fda6908a7fe5" ], + "x-ms-correlation-request-id": [ "5595885d-4b52-458d-94b8-8614d8da90e9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015220Z:5595885d-4b52-458d-94b8-8614d8da90e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 993464E907374AB492FC492FA58FA105 Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 29B6B03CFEA34D0A9877031646240915 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:20Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -9902,10 +9901,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2015-05-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2015-05-01+11": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -9925,30 +9924,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0826afca-56bc-4c33-8017-d868f171b5a7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e8ae0827-ef16-4826-9b7e-edd0a881526f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "9dd401b4-1655-4f8b-b940-e3c5b1e7db24" ], - "x-ms-correlation-request-id": [ "9dd401b4-1655-4f8b-b940-e3c5b1e7db24" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184030Z:9dd401b4-1655-4f8b-b940-e3c5b1e7db24" ], + "x-ms-request-id": [ "7c5d0583-3c8a-4b87-a4b5-1c51263ff895" ], + "x-ms-correlation-request-id": [ "7c5d0583-3c8a-4b87-a4b5-1c51263ff895" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015234Z:7c5d0583-3c8a-4b87-a4b5-1c51263ff895" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BBD3CFF134304AC4999D64EBCCD1B020 Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C7731B763AD54EEB8F23B89F822C4F06 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:21Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1696" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"06043163-0000-0200-0000-691b6c1d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-w8x9\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-w8x9\",\r\n \"AppId\": \"11cceb1e-bf16-4ff3-b156-70e2f2176ac2\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e075af08-d3f7-435a-a3c7-4400394b9bbb\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:40:18.7545917+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-w8x9_11cceb1e-bf16-4ff3-b156-70e2f2176ac2_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8300fe90-0000-0200-0000-69c734610000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-3wro\",\r\n \"name\": \"Functions-Pwsh-UserAssignedIdentity-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Pwsh-UserAssignedIdentity-3wro\",\r\n \"AppId\": \"8246032b-6760-4b17-b153-1d537360aa73\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"896e0183-aa26-40cb-b79c-fb06527cef45\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Pwsh-UserAssignedIdentity-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:52:23.3544597+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-3wro_8246032b-6760-4b17-b153-1d537360aa73_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"UserAssignedIdentity\",\r\n \"userAssignedIdentityResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"UserAssignedIdentity\",\r\n \"userAssignedIdentityResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -9962,43 +9961,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1A8840C75\"" ], + "ETag": [ "\"1DCBE558E770015\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da779390-206c-4fb4-a18c-f3fe6e837adb" ], + "x-ms-request-id": [ "60d5684d-2fbb-480d-9ef0-1635db0ec826" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e1452df5-cad0-495d-9798-935acdaae05d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6eee880d-8958-4fe4-a52e-dcd6928fd4f0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "29099c99-558b-4a1d-a000-bce89e47d675" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184055Z:29099c99-558b-4a1d-a000-bce89e47d675" ], + "x-ms-correlation-request-id": [ "271116c0-01d9-4722-931f-10d752615bbf" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015259Z:271116c0-01d9-4722-931f-10d752615bbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0B0BC81515F6407F8FC1221082C3FE3B Ref B: MWH011020807031 Ref C: 2025-11-17T18:40:30Z" ], - "Date": [ "Mon, 17 Nov 2025 18:40:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFC8FC59AE304F74A9D868CBA35DACF0 Ref B: MWH011020809062 Ref C: 2026-03-28T01:52:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:52:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10171" ], + "Content-Length": [ "10343" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:40:33.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\\\\$Functions-Pwsh-UserAssignedIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\":{\"principalId\":\"a14f1961-c973-490d-b71e-430fc0ffff2b\",\"clientId\":\"e15aad9b-2c91-48a4-9666-dda9d5f50327\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:52:37.5766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-3wro\\\\$Functions-Pwsh-UserAssignedIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\":{\"principalId\":\"cf903595-e2e4-4253-bac5-dd7f3bdf61dc\",\"clientId\":\"1c8707b8-10eb-4844-99ff-65ec5451412a\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "429" ], - "x-ms-client-request-id": [ "9b57ce87-6706-43a8-afbf-b6eab5916630" ], + "x-ms-unique-id": [ "400" ], + "x-ms-client-request-id": [ "448937ca-a69b-4674-92f7-be20b7be2fec" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -10008,42 +10007,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1B4DA1C00\"" ], + "ETag": [ "1DCBE559A6BE9D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71783cc6-2032-45ae-bf31-652c600b4f66" ], + "x-ms-request-id": [ "5ec78618-75ee-4e86-aa3f-3adf29e6df09" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0e44ffd3-4911-4ae7-80f0-8718848df850" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184125Z:0e44ffd3-4911-4ae7-80f0-8718848df850" ], + "x-ms-correlation-request-id": [ "135c10a9-e58f-497c-99d6-85f94a6dc854" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015329Z:135c10a9-e58f-497c-99d6-85f94a6dc854" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C1927C6D68641889557639BF06292C4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E16F686643EA46E299720D35B4A216E4 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10148" ], + "Content-Length": [ "10142" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:40:54.72\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\\\\$Functions-Pwsh-UserAssignedIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\":{\"principalId\":\"a14f1961-c973-490d-b71e-430fc0ffff2b\",\"clientId\":\"e15aad9b-2c91-48a4-9666-dda9d5f50327\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:52:58.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-3wro\\\\$Functions-Pwsh-UserAssignedIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\":{\"principalId\":\"cf903595-e2e4-4253-bac5-dd7f3bdf61dc\",\"clientId\":\"1c8707b8-10eb-4844-99ff-65ec5451412a\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "430" ], - "x-ms-client-request-id": [ "ecd1313d-7826-45ba-9be7-ab38611ccb5c" ], + "x-ms-unique-id": [ "401" ], + "x-ms-client-request-id": [ "730357a2-b4d1-4493-9402-7fd73c3566f3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10054,42 +10053,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1B4DA1C00\"" ], + "ETag": [ "1DCBE559A6BE9D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5d6f064-b469-414b-9b97-49b7b702f673" ], + "x-ms-request-id": [ "18744179-e34d-4fe8-9b05-4ee8856ad706" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "311730e0-4247-466f-97d8-101ce0067400" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184126Z:311730e0-4247-466f-97d8-101ce0067400" ], + "x-ms-correlation-request-id": [ "ab851519-6111-4dd6-bae0-29d90a2a41c9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015330Z:ab851519-6111-4dd6-bae0-29d90a2a41c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 112C237CA35B4608B90D06788096146A Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A63293F6E4844E1289F9428126F4D09E Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10148" ], + "Content-Length": [ "10142" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:40:54.72\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\\\\$Functions-Pwsh-UserAssignedIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\":{\"principalId\":\"a14f1961-c973-490d-b71e-430fc0ffff2b\",\"clientId\":\"e15aad9b-2c91-48a4-9666-dda9d5f50327\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:52:58.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-3wro\\\\$Functions-Pwsh-UserAssignedIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\":{\"principalId\":\"cf903595-e2e4-4253-bac5-dd7f3bdf61dc\",\"clientId\":\"1c8707b8-10eb-4844-99ff-65ec5451412a\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01+15": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "431" ], - "x-ms-client-request-id": [ "f7530b8c-b913-455c-afac-dd75dfda81d0" ], + "x-ms-unique-id": [ "402" ], + "x-ms-client-request-id": [ "2ef771e1-7b69-4a48-b1ca-26b8f66c28f6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10101,40 +10100,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f3851396-d78f-4df9-b859-5a264d493f28" ], + "x-ms-request-id": [ "0074778f-482d-43d9-971a-5d9e6488b763" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3da0717e-3542-4c0e-bdf4-d17b20890330" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9aa11383-6b5e-4476-8e10-cb91ca6eb5b7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ba61c43b-921b-4095-a815-43ef8988a321" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184126Z:ba61c43b-921b-4095-a815-43ef8988a321" ], + "x-ms-correlation-request-id": [ "bf2bdbe3-5671-4ee1-b6c8-0dfe8602c9e0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015330Z:bf2bdbe3-5671-4ee1-b6c8-0dfe8602c9e0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F33A3911F9FC4FF19FECB3AF88545385 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFFCBBF5FD0A4BDDB75EC547F174C205 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "432" ], - "x-ms-client-request-id": [ "82c8bc1e-f3df-4560-b665-d9b4d4e15767" ], + "x-ms-unique-id": [ "403" ], + "x-ms-client-request-id": [ "fa8b5c14-9fee-412d-9e48-42fd71a3aac3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10146,41 +10145,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "800d49d4-f8e0-4edd-9d24-68a877ff5a3a" ], + "x-ms-request-id": [ "8ac70c11-64bb-4b3d-8f84-30d9d1a3f1aa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/eb30bcc4-5b09-4c3a-8110-06971a08858f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37339749-ab4d-44ec-b84e-cf717f5583a2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184126Z:37339749-ab4d-44ec-b84e-cf717f5583a2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/98edbd83-951b-48cc-a4b7-b72ee9ed610c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8bd42ce2-0e58-4e64-b474-1a276c664c1e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015331Z:8bd42ce2-0e58-4e64-b474-1a276c664c1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E094B9CF283147D5B2ACC70E78DFDDD7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 860DCA0CE74E4778A6B7A51F8A3BD4DC Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":39440,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":50211,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "433" ], - "x-ms-client-request-id": [ "cca39689-c093-402f-a783-eff8158e5772" ], + "x-ms-unique-id": [ "404" ], + "x-ms-client-request-id": [ "4e954287-0e95-426e-b361-f74f9ed0b321" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10192,40 +10191,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b8ce1451-aeae-4419-b07f-4dc9fe823753" ], + "x-ms-request-id": [ "29775e7f-d2cc-4203-9298-495bf0a86e86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d43cce3b-7391-4a02-8663-a0fe5a038812" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184127Z:d43cce3b-7391-4a02-8663-a0fe5a038812" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "609a6d4c-c9fe-47a2-bb63-c2f84edc20a0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015331Z:609a6d4c-c9fe-47a2-bb63-c2f84edc20a0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A3E55030F9C41C2B4A3953A94EEFB1C Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:27Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D76968420F44007A59FBF8B54F91898 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:31Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62361,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:39:39.9466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77754,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77754\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:51:45.4633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "434" ], - "x-ms-client-request-id": [ "725c8d40-ef8f-4683-a90f-ceef40655a5b" ], + "x-ms-unique-id": [ "405" ], + "x-ms-client-request-id": [ "d1611de7-a98b-46d9-9319-c12b9c5c25d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10237,40 +10236,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "39cf65ac-8816-497a-94e1-ee6dde58b46f" ], + "x-ms-request-id": [ "34c051ab-c61c-4f83-b2e0-2eb62db677ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fe43545e-fdf7-4640-b0d6-bb7c6bf75259" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1e7ac019-6496-42a3-bbf7-b5fa33da6b5b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "90bf665f-5eb0-49d8-8566-76b6260596ab" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184127Z:90bf665f-5eb0-49d8-8566-76b6260596ab" ], + "x-ms-correlation-request-id": [ "2bcd6f1c-ee80-4a33-b7f3-75a2b7f087db" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015331Z:2bcd6f1c-ee80-4a33-b7f3-75a2b7f087db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64E7AF796E2140ABAEA1DB83C0312E70 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:27Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3F5B67FAC5CB40AFB9B576B0F169C3E3 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:31Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "34909a91-1fc1-43eb-825a-723eae1903f3" ], + "x-ms-unique-id": [ "406" ], + "x-ms-client-request-id": [ "fc78a066-0f80-4097-ba5d-e6a83201699a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10281,42 +10280,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1B4DA1C00\"" ], + "ETag": [ "1DCBE559A6BE9D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fa8d517-814c-43d1-8c8f-e0f0fb76041c" ], + "x-ms-request-id": [ "b965bc9a-772d-4bcd-8476-020c739339a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "834e92f8-72c9-4353-bc34-c413980b7094" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184128Z:834e92f8-72c9-4353-bc34-c413980b7094" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "4fa264c8-7769-4ecc-8eec-b94649f034d2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015332Z:4fa264c8-7769-4ecc-8eec-b94649f034d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0862FE5AA2A241C7873086E50C0175C2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:27Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F41AE2A016E741A391CD574709F36919 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:32Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10148" ], + "Content-Length": [ "10142" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:40:54.72\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\\\\$Functions-Pwsh-UserAssignedIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\":{\"principalId\":\"a14f1961-c973-490d-b71e-430fc0ffff2b\",\"clientId\":\"e15aad9b-2c91-48a4-9666-dda9d5f50327\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:52:58.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-3wro\\\\$Functions-Pwsh-UserAssignedIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\":{\"principalId\":\"cf903595-e2e4-4253-bac5-dd7f3bdf61dc\",\"clientId\":\"1c8707b8-10eb-4844-99ff-65ec5451412a\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "436" ], - "x-ms-client-request-id": [ "203b48e4-9d9d-4683-8a3a-3a46409dad31" ], + "x-ms-unique-id": [ "407" ], + "x-ms-client-request-id": [ "2289fc22-b441-4747-98c7-417a762316df" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10328,40 +10327,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60c752a0-5a64-402d-909b-8b9867d013fb" ], + "x-ms-request-id": [ "19293fe8-8d30-4fda-ab5f-4bd2926d08d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3c8e0c3a-910d-4aa7-988f-48d11cbf9803" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f4029346-76f9-4cf0-a2c3-736594c771e8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184128Z:f4029346-76f9-4cf0-a2c3-736594c771e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/65fbc2cd-392a-4367-bf85-0516decef48e" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "d8e38aac-6302-47eb-a8c3-11b9d72b3dc0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015333Z:d8e38aac-6302-47eb-a8c3-11b9d72b3dc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FABCB816BE9B45D88F7FA3BFCFD6162B Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45AAA28EAE434138B4E0B8DBDB96306F Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:32Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "437" ], - "x-ms-client-request-id": [ "bc9a7f79-db61-4abb-aad5-5db83871e4e0" ], + "x-ms-unique-id": [ "408" ], + "x-ms-client-request-id": [ "3ed85a0b-4c72-45f9-af61-c45d0796ee1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10373,41 +10372,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffc8cd32-23af-4ca2-bf60-b20e8a3ab21b" ], + "x-ms-request-id": [ "b060d05f-107f-43d2-8dbc-09b25b15488b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/98619a5a-cf19-492f-901c-8496b86fbdce" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "52bd8a2a-6bac-4648-9117-c84e6c09860c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184129Z:52bd8a2a-6bac-4648-9117-c84e6c09860c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9ab1094a-0f56-466c-8e00-071871e4f185" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "ab41a6fa-0b8f-4692-b30f-d14cc57de035" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015333Z:ab41a6fa-0b8f-4692-b30f-d14cc57de035" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F55CEBFEFA964156A32D0EB6712CD177 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2151EC7973FB4DAAA35DED5CE41BAF2C Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":39440,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":50211,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "438" ], - "x-ms-client-request-id": [ "7a411b2e-e5af-4694-be57-1146386985cf" ], + "x-ms-unique-id": [ "409" ], + "x-ms-client-request-id": [ "47302dd5-85d3-4a90-a215-722d4e0312c0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10418,42 +10417,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1B4DA1C00\"" ], + "ETag": [ "1DCBE559A6BE9D5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c03fffca-7995-4a83-8559-466ed1db8989" ], + "x-ms-request-id": [ "b8427036-d53f-43f2-b595-db6605324a6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1767a79a-9586-41a9-9efe-26d1c980425f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184129Z:1767a79a-9586-41a9-9efe-26d1c980425f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "65a6fc92-2dd3-48ac-95be-45434f94e1a5" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015334Z:65a6fc92-2dd3-48ac-95be-45434f94e1a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC444ACC070E4518A4D261E09CE609C8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:29Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8577E8F262314081890F9931344636A0 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10148" ], + "Content-Length": [ "10142" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:40:54.72\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\\\\$Functions-Pwsh-UserAssignedIdentity-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-w8x9/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-w8x9\":{\"principalId\":\"a14f1961-c973-490d-b71e-430fc0ffff2b\",\"clientId\":\"e15aad9b-2c91-48a4-9666-dda9d5f50327\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Pwsh-UserAssignedIdentity-3wro\",\"repositorySiteName\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-pwsh-userassignedidentity-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:52:58.6533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspwshuserassignedidentit-0000000\",\"authentication\":{\"type\":\"userassignedidentity\",\"userAssignedIdentityResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\",\"storageAccountConnectionStringName\":null}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Pwsh-UserAssignedIdentity-3wro\\\\$Functions-Pwsh-UserAssignedIdentity-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-pwsh-userassignedidentity-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro\":{\"principalId\":\"cf903595-e2e4-4253-bac5-dd7f3bdf61dc\",\"clientId\":\"1c8707b8-10eb-4844-99ff-65ec5451412a\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "439" ], - "x-ms-client-request-id": [ "adc14ae2-89e2-4398-8f08-85ef95ab9f5e" ], + "x-ms-unique-id": [ "410" ], + "x-ms-client-request-id": [ "8a650e25-63f5-4d46-bf81-b719a352590b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10465,40 +10464,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ad24fa5-6a03-4681-b9f5-77389d99dcc5" ], + "x-ms-request-id": [ "9546e285-6392-48da-baa4-05707ef56036" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/950290bd-4e0d-4bce-92e6-2144fa8f131e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e7363b2f-4b9b-447b-8bac-84187398b8a0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7ab4431e-5a67-4f4b-8197-c86895b428e6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184129Z:7ab4431e-5a67-4f4b-8197-c86895b428e6" ], + "x-ms-correlation-request-id": [ "7c291763-2ce3-4d95-b0d5-3ccff57f748b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015334Z:7c291763-2ce3-4d95-b0d5-3ccff57f748b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 25A56A8B552C4E89A0570450ABB67D7C Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:29Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C4EB0E2CA5243279CD25B61B5B077F9 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "791" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "440" ], - "x-ms-client-request-id": [ "1d953b9c-5e98-40c6-ad64-fb8177db7faa" ], + "x-ms-unique-id": [ "411" ], + "x-ms-client-request-id": [ "dd124f48-ac50-4741-83d0-963bdf89a212" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10510,41 +10509,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1d402ca-5f41-48cf-9387-08c8bfbe28ac" ], + "x-ms-request-id": [ "f3577c04-e45e-4821-850b-a286b76f8e73" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d0776334-2629-4584-a164-6f5c1b2bf5a7" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d0af8490-9e3f-4039-87e9-efd7a394f425" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184130Z:d0af8490-9e3f-4039-87e9-efd7a394f425" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cbad8699-0bdd-48f4-9245-fee9f7ae79ae" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "2afc3746-3949-4e90-a6f5-99e999cc13c7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015334Z:2afc3746-3949-4e90-a6f5-99e999cc13c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCE8BE38A6D24EC9813E8FC6D92F44A5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:30Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 840DE00A3B8C4A7C9888B94AED937A2B Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":39440,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro/config/web\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":50211,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "441" ], - "x-ms-client-request-id": [ "8b41cb91-73da-4f0d-beaa-269b3da66c23" ], + "x-ms-unique-id": [ "412" ], + "x-ms-client-request-id": [ "c8b87b04-d86e-45c8-899f-4e00b19e47f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10556,40 +10555,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01e3b105-c36d-4cff-be42-20419f91575c" ], + "x-ms-request-id": [ "4ad04c5d-1194-4ee6-8ab5-93267d347491" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "09c67249-79f2-4811-bd85-db26eb4cf403" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184130Z:09c67249-79f2-4811-bd85-db26eb4cf403" ], + "x-ms-correlation-request-id": [ "749144d4-523d-48f2-b5ff-a2ff9b8dab9b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015335Z:749144d4-523d-48f2-b5ff-a2ff9b8dab9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 60D9C6446B2F48F7BABC3B79B2DE49D4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:30Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7CD71568AD8441A895F66931CB8F5F78 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62361,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62361\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:39:39.9466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77754,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77754\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:51:45.4633333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with UserAssigned managed identity for deployment storage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Pwsh-UserAssignedIdentity-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "442" ], - "x-ms-client-request-id": [ "02eb10db-e198-422d-adce-714a783bb4c6" ], + "x-ms-unique-id": [ "413" ], + "x-ms-client-request-id": [ "a006cd71-a34a-4c30-9def-f436f640af50" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10600,20 +10599,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1B4DA1C00\"" ], + "ETag": [ "\"1DCBE559A6BE9D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8c9f9208-97bc-4c36-a338-00e103345106" ], + "x-ms-request-id": [ "5618dc48-936a-4796-9906-864d43654ba6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/99f1a928-b813-4116-af51-1b1faf591cc7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/14add0c9-d028-47f8-9513-2e462277377c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "a5f6d957-cd6f-4984-af29-5aa34ed7127e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184148Z:a5f6d957-cd6f-4984-af29-5aa34ed7127e" ], + "x-ms-correlation-request-id": [ "b4dba556-f195-464d-b37c-f160347bacd2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015350Z:b4dba556-f195-464d-b37c-f160347bacd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DCB41703246A499AA13BA69C474B1ED2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:30Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8093A7E65CAC4CDA8EDB598731AC72ED Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -10627,7 +10626,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PS-CustomConfig-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PS-CustomConfig-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -10642,18 +10641,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42e1a094-ecc6-4825-8c0c-05ae43e71c3e" ], + "x-ms-request-id": [ "6782466e-a187-4afb-b11e-7b8b7c672f80" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d7b89f83-88c0-4df0-84a8-10cc780b3e5b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/71ed2222-8b2b-4645-bf83-34a2b1d9b170" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "98533005-2294-41ff-b67e-477536f4cbb5" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184149Z:98533005-2294-41ff-b67e-477536f4cbb5" ], + "x-ms-correlation-request-id": [ "2b577a0a-b27e-49bf-a68c-d5ac03a286aa" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015351Z:2b577a0a-b27e-49bf-a68c-d5ac03a286aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D81ECC5782B046D6B896094B369244F3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 080782ED61684E528BF696A091C0262D Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -10664,10 +10663,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -10683,42 +10682,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "011276e9-c6be-40bb-b105-edaec3585b48" ], + "x-ms-request-id": [ "50945b06-7247-4033-b1ba-5ebee79fd20f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7e45de3c-6cc4-453e-bd1e-2e9c729caed1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/16a4d407-832f-463b-a92a-f44704e8a201" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "76cd98fa-7d29-43ed-88de-377f0950b498" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184154Z:76cd98fa-7d29-43ed-88de-377f0950b498" ], + "x-ms-correlation-request-id": [ "efc87b3a-1ef9-4197-9edf-3f0b14d25939" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015354Z:efc87b3a-1ef9-4197-9edf-3f0b14d25939" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 000404CD32FE43879C966077A73913F6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:41:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:41:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1825C18C168F4197971E8880A4C64C89 Ref B: MWH011020809062 Ref C: 2026-03-28T01:53:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:53:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52912,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52912\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:41:53.95\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68101,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68101\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:53:54.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "446" ], - "x-ms-client-request-id": [ "481b8477-a470-466d-89e0-ef089668aff9" ], + "x-ms-unique-id": [ "417" ], + "x-ms-client-request-id": [ "7ebb9dbe-a435-41a4-abaf-f76b22ce1917" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -10729,41 +10728,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0200aa6d-2d11-4197-a8b3-d6a55525091d" ], + "x-ms-request-id": [ "4b2c6329-c7f2-4aaf-aef0-c850b03c0e03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8e412c25-ea3d-4e31-a6fc-429a210663a3" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184224Z:8e412c25-ea3d-4e31-a6fc-429a210663a3" ], + "x-ms-correlation-request-id": [ "4788d403-5e73-4028-a8df-74ba80e7c668" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015425Z:4788d403-5e73-4028-a8df-74ba80e7c668" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53E7A3A14B3A475BA9DCA75D0767FC02 Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A43242072EC04C3E861E9D7E63806072 Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52912,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52912\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:41:53.95\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68101,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68101\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:53:54.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "447" ], - "x-ms-client-request-id": [ "481b8477-a470-466d-89e0-ef089668aff9" ], + "x-ms-unique-id": [ "418" ], + "x-ms-client-request-id": [ "7ebb9dbe-a435-41a4-abaf-f76b22ce1917" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -10774,24 +10773,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67d03b75-1136-471a-a7bc-902ba56c3683" ], + "x-ms-request-id": [ "b7fed59b-d982-43b9-ba65-fa156c9092cb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "05627f55-bf9b-4002-9e97-a34549e4dc18" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184225Z:05627f55-bf9b-4002-9e97-a34549e4dc18" ], + "x-ms-correlation-request-id": [ "2fa70fca-a830-4e54-8c2b-50195057f21a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015425Z:2fa70fca-a830-4e54-8c2b-50195057f21a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88B219E163584280BAECE14C9A82EE68 Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:24Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B90C8BCDBE14D318D198DCCA359CF5C Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52912,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52912\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:41:53.95\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68101,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68101\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:53:54.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -10802,12 +10801,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "448" ], - "x-ms-client-request-id": [ "cd092018-1af4-4c75-80c5-bb7e8406be7a" ], + "x-ms-unique-id": [ "419" ], + "x-ms-client-request-id": [ "15bbaaff-5905-4cbe-95f1-db079881c5e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10818,40 +10817,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "97c26f57-9205-464c-bed1-fd59e26978b3", "a5820014-b2ab-4c10-b790-39a7a4abea81", "3a6e32d7-9b9f-4956-9b91-db702f90d8e0" ], + "x-ms-original-request-ids": [ "aa894837-be32-4f9c-908a-6f6d1bc865dd", "35992c67-051c-467a-92e6-f67d5474992b", "04027141-f26a-48f9-812e-9292c4590d80" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5e25f535-5fe1-480c-b033-9198e5badc79" ], - "x-ms-correlation-request-id": [ "5e25f535-5fe1-480c-b033-9198e5badc79" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184226Z:5e25f535-5fe1-480c-b033-9198e5badc79" ], + "x-ms-request-id": [ "7c073ee7-3717-4a17-8eaf-545f32592f90" ], + "x-ms-correlation-request-id": [ "7c073ee7-3717-4a17-8eaf-545f32592f90" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T015426Z:7c073ee7-3717-4a17-8eaf-545f32592f90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D2709F7D5C5B411BB68723D97B542610 Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:25Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 838480FDCEEA43BA9C6A8785B6912921 Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspscustomconfigw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspscustomconfig3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspscustomconfigw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspscustomconfig3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "449" ], - "x-ms-client-request-id": [ "79c0e68f-913b-45e5-a41d-d276ad4bee1c" ], + "x-ms-unique-id": [ "420" ], + "x-ms-client-request-id": [ "727cbab2-a7f5-47d2-8173-883b1619ea46" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10862,31 +10861,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3742faa6-deac-4ffe-8187-c137711c1dfa" ], + "x-ms-request-id": [ "a086e2ba-fc79-43ce-96bd-5ff982535906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/4f82af92-d81e-44f1-814d-a6fba3e9f0f3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "67af90e0-8f80-49c8-b81c-2bb72dc280bd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184226Z:67af90e0-8f80-49c8-b81c-2bb72dc280bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b965149b-3101-4e2d-baf1-747551bb2df4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "98f68b16-9774-4c24-9ac5-709b401bf111" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015427Z:98f68b16-9774-4c24-9ac5-709b401bf111" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3995FF2BB9784E268F5E6D11DD551D6B Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A9D05BEEB6B4866B973DE2EC63081C1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:8c86c502-801e-0026-59f1-579330000000\\nTime:2025-11-17T18:42:26.6415558Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:06f3b72c-501e-0078-2155-be78d0000000\\nTime:2026-03-28T01:54:27.0091211Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspscustomconfigw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspscustomconfig3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspscustomconfigw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspscustomconfig3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -10901,25 +10900,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE26090E66ACA4\"" ], - "x-ms-request-id": [ "b1692558-05ab-43d3-bda1-8df80ac587dc" ], + "ETag": [ "\"0x8DE8C6CF1E2E061\"" ], + "x-ms-request-id": [ "e1dece37-cc1c-4602-9799-40bee0df3cea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/efc50e3f-0586-4e8e-9e27-d01d27d8bd6a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d89e1025-5d9a-4929-a6bd-1262f09b1baf" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "83c40d79-f508-4576-b1eb-8a029f0c78bd" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184227Z:83c40d79-f508-4576-b1eb-8a029f0c78bd" ], + "x-ms-correlation-request-id": [ "efbacbaa-d606-4bc5-9ae8-068e393223a2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015427Z:efbacbaa-d606-4bc5-9ae8-068e393223a2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB8955C16180445DA7299D599DD572F9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:26Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 85B0E05C52F048AEB37DF5CB8F05864E Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionspscustomconfigw8x9-0000000\",\"name\":\"app-package-functionspscustomconfigw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionspscustomconfig3wro-0000000\",\"name\":\"app-package-functionspscustomconfig3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -10930,12 +10929,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "451" ], - "x-ms-client-request-id": [ "4b62ea87-6151-4878-a252-5efe1837c089" ], + "x-ms-unique-id": [ "422" ], + "x-ms-client-request-id": [ "492a8973-458c-43f8-a026-ecf27df99af1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10946,40 +10945,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "48120fd8-60e1-42ad-ab0a-e50e31e755ae", "366f7fe7-39dc-4f50-9428-68c5f3ad22d7", "af777745-07d2-4a73-9c33-4b3aa2bf3656" ], + "x-ms-original-request-ids": [ "5d655b30-4303-4d50-913e-fc3a0000c8f8", "d0afa424-8dbd-4af2-8651-68123a1129ea", "7c307eef-7777-4187-bd2d-cb7216064f09" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3785eaa3-b823-4317-8a83-602761c5d6ee" ], - "x-ms-correlation-request-id": [ "3785eaa3-b823-4317-8a83-602761c5d6ee" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184227Z:3785eaa3-b823-4317-8a83-602761c5d6ee" ], + "x-ms-request-id": [ "4aaa9c5b-512a-425c-9f16-dbe8038c3a45" ], + "x-ms-correlation-request-id": [ "4aaa9c5b-512a-425c-9f16-dbe8038c3a45" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015428Z:4aaa9c5b-512a-425c-9f16-dbe8038c3a45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8462B048AE04CF180D38AC5FE3D41BB Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:27Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F7F60D8D655455EBA599B229506FA1A Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "452" ], - "x-ms-client-request-id": [ "427e1bdd-29c2-4cc2-b935-ddb6004a8ba1" ], + "x-ms-unique-id": [ "423" ], + "x-ms-client-request-id": [ "99f06975-a8cb-40bb-aa16-c6591e2019c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10990,16 +10989,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e2501a0f-a9c0-48c9-85d6-f65ef35aca0e" ], + "x-ms-request-id": [ "553f6c0a-1e8d-49ed-88e2-c69eec42fc3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/03ec2abd-47bc-4aa5-bbc5-f83e85473d16" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/dc426846-b683-4ed9-90ad-6bc7c9869542" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "568f48a6-4c9e-464e-9f94-1cde0a2a3540" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184228Z:568f48a6-4c9e-464e-9f94-1cde0a2a3540" ], + "x-ms-correlation-request-id": [ "bcf8a69c-0c0e-4c7a-aa7a-d9d9b82435eb" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015428Z:bcf8a69c-0c0e-4c7a-aa7a-d9d9b82435eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4EC404C4DEA413C816621ECC99A9A6E Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4F640B2E04B407BA58D5E2FE9937F70 Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -11017,12 +11016,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "453" ], - "x-ms-client-request-id": [ "888c41ca-ae51-405a-8120-9d958fcd3408" ], + "x-ms-unique-id": [ "424" ], + "x-ms-client-request-id": [ "57ed5a8b-00e0-4daf-ba42-ecae66d00785" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11033,40 +11032,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "62a90227-9067-451c-941c-d872b369df1c", "53928a26-0d0f-4234-b047-3baeda97a2be", "c6e34161-6adc-4272-b7a8-da7d179ffadb" ], + "x-ms-original-request-ids": [ "5b1d79b6-9357-430b-a252-08f02955ad81", "96185a0c-27b3-4c4c-a10b-55919602825d", "34abc7ab-4739-42b4-82d3-695284ed8278" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4b1601c1-3324-47cf-8889-4d062c860c77" ], - "x-ms-correlation-request-id": [ "4b1601c1-3324-47cf-8889-4d062c860c77" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184229Z:4b1601c1-3324-47cf-8889-4d062c860c77" ], + "x-ms-request-id": [ "e9d789d7-1ee6-48be-8447-51f0bc5261d0" ], + "x-ms-correlation-request-id": [ "e9d789d7-1ee6-48be-8447-51f0bc5261d0" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015429Z:e9d789d7-1ee6-48be-8447-51f0bc5261d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D332E5F98E74B2EAE5897B364E069D5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:28Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1262EA636CAA47938EA3718426BCDC84 Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "454" ], - "x-ms-client-request-id": [ "374010dd-f782-47db-8e27-4f02f6eb8a2c" ], + "x-ms-unique-id": [ "425" ], + "x-ms-client-request-id": [ "9c6fa107-c940-4c74-8415-80f1f80d2fe1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11077,16 +11076,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "05ccc2a5-a472-47ca-84d5-bb7336129d28" ], + "x-ms-request-id": [ "e4b878fb-7c20-4ed7-8339-a35b69e794e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b19e0b49-4f8f-4455-b16a-654921a3bdcb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fef0eee3-54b0-4300-adda-4c19e6764d9a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "60207965-5d23-4146-8a2d-b3748ca2d27f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184230Z:60207965-5d23-4146-8a2d-b3748ca2d27f" ], + "x-ms-correlation-request-id": [ "7a3e1a17-7362-46d4-be41-92c32d28638b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015430Z:7a3e1a17-7362-46d4-be41-92c32d28638b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 772EAB8A543548D7A368923581E2B0E6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:29Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7909426326C4530838F48AD9640E315 Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -11097,10 +11096,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-PS-CustomConfig-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -11120,30 +11119,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/370d694b-8cea-41a1-b08d-8034c14585e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/1f7ece9a-0abb-4856-b697-543a6e83be9a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "be2fdac2-5b44-4c25-bda3-84b91c4e8abb" ], - "x-ms-correlation-request-id": [ "be2fdac2-5b44-4c25-bda3-84b91c4e8abb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184246Z:be2fdac2-5b44-4c25-bda3-84b91c4e8abb" ], + "x-ms-request-id": [ "362c0db3-540f-4c05-b8cf-a039a849419f" ], + "x-ms-correlation-request-id": [ "362c0db3-540f-4c05-b8cf-a039a849419f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015445Z:362c0db3-540f-4c05-b8cf-a039a849419f" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F990093C9C84D16A3C74C93EBF8C2F6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:30Z" ], - "Date": [ "Mon, 17 Nov 2025 18:42:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0DACAF6865154E6AAFCD049424EFA6C3 Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:30Z" ], + "Date": [ "Sat, 28 Mar 2026 01:54:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0604a76c-0000-0200-0000-691b6ca60000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-PS-CustomConfig-w8x9\",\r\n \"name\": \"Functions-PS-CustomConfig-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-w8x9\",\r\n \"AppId\": \"4c611320-7d61-4907-8450-581e26acb195\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ff697694-6e08-4db3-8d98-f18509e535dd\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PS-CustomConfig-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:42:32.2602986+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-w8x9_4c611320-7d61-4907-8450-581e26acb195_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8300ee9a-0000-0200-0000-69c734e40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-PS-CustomConfig-3wro\",\r\n \"name\": \"Functions-PS-CustomConfig-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PS-CustomConfig-3wro\",\r\n \"AppId\": \"02cf1800-6f0c-4306-8714-7ce3c4a0111d\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a147199a-4cbd-4299-a45b-cfb3caefc6a9\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PS-CustomConfig-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:54:31.4253345+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-3wro_02cf1800-6f0c-4306-8714-7ce3c4a0111d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Owner\": \"PowerShell\",\r\n \"Project\": \"FlexConsumption\",\r\n \"Environment\": \"Test\"\r\n },\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspscustomconfigw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"CustomSetting2\",\r\n \"value\": \"Value2\"\r\n },\r\n {\r\n \"name\": \"CustomSetting1\",\r\n \"value\": \"Value1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {\r\n \"Project\": \"FlexConsumption\",\r\n \"Owner\": \"PowerShell\",\r\n \"Environment\": \"Test\"\r\n },\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspscustomconfig3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"CustomSetting1\",\r\n \"value\": \"Value1\"\r\n },\r\n {\r\n \"name\": \"CustomSetting2\",\r\n \"value\": \"Value2\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -11157,43 +11156,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F1F9A8DB00\"" ], + "ETag": [ "\"1DCBE55DB6F2EEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f174101-3041-479b-ae0a-045dea1c6e7f" ], + "x-ms-request-id": [ "4c31cd7b-c029-415d-8e2a-745a52fadb1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4de07297-bd19-475a-8e8f-dd3a41eea285" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cffb2494-2cad-4505-9dde-edcaf6aabe3e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "eded0a75-941b-463c-a447-21f786ecde79" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184311Z:eded0a75-941b-463c-a447-21f786ecde79" ], + "x-ms-correlation-request-id": [ "9f0dac0c-858e-4ce6-8202-eb943adec818" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015508Z:9f0dac0c-858e-4ce6-8202-eb943adec818" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B64DA2611A68467BA38C1DAFEF606D5D Ref B: MWH011020807031 Ref C: 2025-11-17T18:42:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40E95B359358441F9E3960600CDED1FA Ref B: MWH011020809062 Ref C: 2026-03-28T01:54:45Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9703" ], + "Content-Length": [ "9875" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-PS-CustomConfig-w8x9\",\"repositorySiteName\":\"Functions-PS-CustomConfig-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:42:49.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspscustomconfigw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-w8x9\\\\$Functions-PS-CustomConfig-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-PS-CustomConfig-3wro\",\"repositorySiteName\":\"Functions-PS-CustomConfig-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\",\"functions-ps-customconfig-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:54:47.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspscustomconfig3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-3wro\\\\$Functions-PS-CustomConfig-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "457" ], - "x-ms-client-request-id": [ "95846815-b331-4a1d-878c-d5ea639cf35b" ], + "x-ms-unique-id": [ "428" ], + "x-ms-client-request-id": [ "78081279-8961-47c8-91d3-5f45326c0e6c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -11203,42 +11202,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F205E784F5\"" ], + "ETag": [ "1DCBE55E7A22615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd63caf1-ef90-4f5f-82bf-3da554af5c05" ], + "x-ms-request-id": [ "bbb83d23-71ca-4dc3-ae67-a92ee4a261da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5d945c2d-5aa7-4044-81a6-2eeda54bcafb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184341Z:5d945c2d-5aa7-4044-81a6-2eeda54bcafb" ], + "x-ms-correlation-request-id": [ "379f5f9c-e756-4ca3-be4f-67b3a4a31077" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015539Z:379f5f9c-e756-4ca3-be4f-67b3a4a31077" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6344637E6131410DBD9DBA8934E9C329 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2942BD75250146E1BD7CC733ED4692F1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9685" ], + "Content-Length": [ "9674" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-PS-CustomConfig-w8x9\",\"repositorySiteName\":\"Functions-PS-CustomConfig-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:43:10.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspscustomconfigw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-w8x9\\\\$Functions-PS-CustomConfig-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-PS-CustomConfig-3wro\",\"repositorySiteName\":\"Functions-PS-CustomConfig-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\",\"functions-ps-customconfig-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:55:08.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspscustomconfig3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-3wro\\\\$Functions-PS-CustomConfig-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "458" ], - "x-ms-client-request-id": [ "b55e1fa5-d3d3-40b0-908c-0179d9b5dd6e" ], + "x-ms-unique-id": [ "429" ], + "x-ms-client-request-id": [ "982b11cc-a749-4422-8a47-7e6fd2c17579" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11249,42 +11248,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F205E784F5\"" ], + "ETag": [ "1DCBE55E7A22615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0844d93c-4f1f-47b6-8d0b-d16462088345" ], + "x-ms-request-id": [ "8f60ee93-299c-4a83-b3e5-2facb796bf50" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c26f449a-c0d6-4edf-a5fd-8d8b79acf995" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184342Z:c26f449a-c0d6-4edf-a5fd-8d8b79acf995" ], + "x-ms-correlation-request-id": [ "e22e134f-e488-4a2a-b726-b60a339fe790" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015539Z:e22e134f-e488-4a2a-b726-b60a339fe790" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D8ECC152F2C44249AA1A238015152953 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:41Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EDCF55F9F8B6497BB68B770AD41289C6 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9685" ], + "Content-Length": [ "9674" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-PS-CustomConfig-w8x9\",\"repositorySiteName\":\"Functions-PS-CustomConfig-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:43:10.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspscustomconfigw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-w8x9\\\\$Functions-PS-CustomConfig-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-PS-CustomConfig-3wro\",\"repositorySiteName\":\"Functions-PS-CustomConfig-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\",\"functions-ps-customconfig-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:55:08.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspscustomconfig3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-3wro\\\\$Functions-PS-CustomConfig-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "459" ], - "x-ms-client-request-id": [ "221f1acd-8145-4f67-be53-dd69fa07684b" ], + "x-ms-unique-id": [ "430" ], + "x-ms-client-request-id": [ "a9698004-69c2-48af-ae35-3d704b861b12" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11296,40 +11295,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9165e29e-18fe-40e0-bf92-2d6b8ccead18" ], + "x-ms-request-id": [ "1e9f816b-95ef-4eac-95fa-0fec0e085d10" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b8f10f60-efb1-460e-92cf-ba1218043df3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e6d0aef9-428e-477d-8298-d39b4517c190" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "640ebdac-9070-4654-a81a-28b927347a47" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184342Z:640ebdac-9070-4654-a81a-28b927347a47" ], + "x-ms-correlation-request-id": [ "b3c518f9-30b6-48bf-932a-2e69097664e7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015540Z:b3c518f9-30b6-48bf-932a-2e69097664e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A9B86989A1D4F92849B983B5F07E0A4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1FC67D7EFDE4B4188CBF997FB2C2C00 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "460" ], - "x-ms-client-request-id": [ "8dd00fce-fd93-4353-b289-0f349d7bcc38" ], + "x-ms-unique-id": [ "431" ], + "x-ms-client-request-id": [ "a335df92-d1cc-42a3-961c-9b0a41390ebc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11341,41 +11340,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20245e96-656b-4066-aa50-f00c68146e38" ], + "x-ms-request-id": [ "cecfdabf-522d-4c67-b8e1-4a74d7a36a13" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/adbd1073-55ab-495a-9260-6e6d1eb6fffa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8b5e2667-2776-43f1-bcb1-f6d859c4d92c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "04c6e5ef-3922-46c6-8201-e287e2a7f978" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184343Z:04c6e5ef-3922-46c6-8201-e287e2a7f978" ], + "x-ms-correlation-request-id": [ "847f7f6d-7221-4998-b23b-9cdc20c55277" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015540Z:847f7f6d-7221-4998-b23b-9cdc20c55277" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6558E6FFFB64631B152B1AAA299741B Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:42Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F39C85B7E8E41FA9B9C4264DD4323C5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "461" ], - "x-ms-client-request-id": [ "1e24acd0-bc78-405d-b6fe-ddf1412d0580" ], + "x-ms-unique-id": [ "432" ], + "x-ms-client-request-id": [ "c60df5bc-e951-4749-8b96-fd7419b36fde" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11387,40 +11386,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4164dbf9-9cd9-44c3-a334-8d9b6ba44cdf" ], + "x-ms-request-id": [ "e80610bb-f51d-40c8-a7c5-c2e3f7ee9972" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9018689e-03b6-4a11-8d0f-32f76b2ffbaa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/096ec7bd-cd3d-48c3-b0a9-5dc189a4bac6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "992f0022-baad-428a-acf3-b6778e897fa7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184343Z:992f0022-baad-428a-acf3-b6778e897fa7" ], + "x-ms-correlation-request-id": [ "09acfb69-5d19-4300-9622-39c6c24e64c8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015540Z:09acfb69-5d19-4300-9622-39c6c24e64c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C27344B5B4E74E27934024A05A784B78 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CFB3A95375134E758A1A5DE3C0C8F9D0 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:40Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "462" ], - "x-ms-client-request-id": [ "8437ee5f-3a95-499c-92f8-e1d00377d58c" ], + "x-ms-unique-id": [ "433" ], + "x-ms-client-request-id": [ "9f879677-ee47-4c43-be77-5d1f7eb78551" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11432,40 +11431,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e815bed-6e0f-4278-8801-096c47f60000" ], + "x-ms-request-id": [ "bc35ee6c-558c-4c4a-be4f-c60f067a8de9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3973ee0d-a960-4e76-ae9b-269e3ef07dce" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184344Z:3973ee0d-a960-4e76-ae9b-269e3ef07dce" ], + "x-ms-correlation-request-id": [ "e8166d11-0842-40c5-a0b6-1a0145f59df5" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015541Z:e8166d11-0842-40c5-a0b6-1a0145f59df5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C60AA17F4CD74B4EB4420CF0EFA4291D Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 216C94F806EF4E0580AFCB5BCBBB82D5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52912,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52912\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:41:53.95\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68101,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68101\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:53:54.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "463" ], - "x-ms-client-request-id": [ "7d65675b-2ea2-48bf-8347-1d59148edb03" ], + "x-ms-unique-id": [ "434" ], + "x-ms-client-request-id": [ "12f41e85-8ce1-45f4-9dfd-111d43f880d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11476,42 +11475,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F205E784F5\"" ], + "ETag": [ "1DCBE55E7A22615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "158b60f6-12c0-4a09-8a56-244646d2a0e0" ], + "x-ms-request-id": [ "f5ddea54-3400-4a25-9940-7644dd9aad43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fd8c9501-2b17-434a-a10c-b6bac46c76ed" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184344Z:fd8c9501-2b17-434a-a10c-b6bac46c76ed" ], + "x-ms-correlation-request-id": [ "6e0d108c-27a1-423a-af72-2d11f86b9c9c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015542Z:6e0d108c-27a1-423a-af72-2d11f86b9c9c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8C36E8E6D96410ABE39B9AC2F298BB7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FF7A284A5D9548AE93C448B2CF9F15A4 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:41Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9685" ], + "Content-Length": [ "9674" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-PS-CustomConfig-w8x9\",\"repositorySiteName\":\"Functions-PS-CustomConfig-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:43:10.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspscustomconfigw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-w8x9\\\\$Functions-PS-CustomConfig-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-PS-CustomConfig-3wro\",\"repositorySiteName\":\"Functions-PS-CustomConfig-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\",\"functions-ps-customconfig-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:55:08.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspscustomconfig3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-3wro\\\\$Functions-PS-CustomConfig-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "464" ], - "x-ms-client-request-id": [ "2abbe917-49c5-4712-bcf6-249812d8a0c0" ], + "x-ms-unique-id": [ "435" ], + "x-ms-client-request-id": [ "7228e6c6-7ace-4232-9c00-25d997df506b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11523,40 +11522,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "638ba94c-bfbf-4b58-87f0-ff5fc8081ff9" ], + "x-ms-request-id": [ "0f361870-f044-4be0-b63b-2e9457867d7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/017448b9-79d8-4dde-977f-0e605e2e1e7a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/faafbe37-9785-44b8-91d7-183da6e7c80b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d2b7f46a-07b7-4a93-b066-732d5ab70f02" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184344Z:d2b7f46a-07b7-4a93-b066-732d5ab70f02" ], + "x-ms-correlation-request-id": [ "9627bf45-f6a7-4493-b62a-3e890dd52b0a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015543Z:9627bf45-f6a7-4493-b62a-3e890dd52b0a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7397EDE8F20440F9E73C50F88C49275 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 846C006B18EC47D3B65C9DF638B30C63 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:42Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "465" ], - "x-ms-client-request-id": [ "130e3a8c-2cc5-4e85-8e28-7867426bfaba" ], + "x-ms-unique-id": [ "436" ], + "x-ms-client-request-id": [ "49963f28-aa3e-4dcb-85ed-c85e4d6f736a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11568,41 +11567,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07aaa0c6-ea06-4a77-8c55-cb2fb27f576e" ], + "x-ms-request-id": [ "e8bfb87f-58dd-45de-94d2-7985bb92661c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/302dbd3b-51b7-416d-a42f-1440b71da640" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2115b65f-2a8d-4138-8a56-965878d8f1ed" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184345Z:2115b65f-2a8d-4138-8a56-965878d8f1ed" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d9ff0a52-6c8a-4663-914a-6232b43107a0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "36a63676-13ee-48c0-be11-424700833448" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015543Z:36a63676-13ee-48c0-be11-424700833448" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E7DBB23D5544ADFA6DA8F26B82A569A Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6FFE99744304FECAF18A194DA11B751 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "466" ], - "x-ms-client-request-id": [ "6146a565-58ba-4004-b5c0-7cf96b16f544" ], + "x-ms-unique-id": [ "437" ], + "x-ms-client-request-id": [ "5671e898-71c7-4995-96c1-115653171d52" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11613,42 +11612,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F205E784F5\"" ], + "ETag": [ "1DCBE55E7A22615" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33a1344c-62bb-442d-9f80-4b3978f9090a" ], + "x-ms-request-id": [ "52cb824e-4ad4-470a-8137-65048ef94690" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "00d42f31-6297-4a3d-b276-34bb43373eda" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184345Z:00d42f31-6297-4a3d-b276-34bb43373eda" ], + "x-ms-correlation-request-id": [ "29fc4ce9-1f52-4182-bc46-8eb6db7bdb54" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015543Z:29fc4ce9-1f52-4182-bc46-8eb6db7bdb54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1EBBACD45C04A37BBE8B473BFBEFE34 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0D5C2FE5A1444CC96BDB7D2DFEE77D9 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:43Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9685" ], + "Content-Length": [ "9674" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-PS-CustomConfig-w8x9\",\"repositorySiteName\":\"Functions-PS-CustomConfig-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:43:10.7033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionspscustomconfigw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-w8x9\\\\$Functions-PS-CustomConfig-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-ps-customconfig-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"name\":\"Functions-PS-CustomConfig-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-PS-CustomConfig-3wro\",\"repositorySiteName\":\"Functions-PS-CustomConfig-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-ps-customconfig-3wro.azurewebsites.net\",\"functions-ps-customconfig-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-ps-customconfig-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:55:08.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionspscustomconfig3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-PS-CustomConfig-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-PS-CustomConfig-3wro\\\\$Functions-PS-CustomConfig-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-ps-customconfig-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "467" ], - "x-ms-client-request-id": [ "19b1ecba-89f1-4352-a2a6-c2829de74b12" ], + "x-ms-unique-id": [ "438" ], + "x-ms-client-request-id": [ "3dd6d8e5-f76f-487f-b811-4007d94e9fc9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11660,40 +11659,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be9fcb8f-6ce0-4734-8b83-fd6ba7aef434" ], + "x-ms-request-id": [ "44ffe0f5-3258-4588-84e6-16a8856d282d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/348fb47f-de33-42d4-a641-c9a478f8e797" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a42c0a20-ccec-4367-8d3d-e22054f2546d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "575e8d34-6953-4a75-a8bc-466da2a20511" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184346Z:575e8d34-6953-4a75-a8bc-466da2a20511" ], + "x-ms-correlation-request-id": [ "ce6379e2-96b1-43f5-80ea-8e70986fd649" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015544Z:ce6379e2-96b1-43f5-80ea-8e70986fd649" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE247EEC909742D7AB4B4A18FF9E77D2 Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17A71E4D7AF94C509CE269313D306D5F Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:44Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1152" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting2\":\"Value2\",\"CustomSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"CustomSetting1\":\"Value1\",\"CustomSetting2\":\"Value2\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "56fb2391-4b85-4e04-a5aa-5dac5f27d622" ], + "x-ms-unique-id": [ "439" ], + "x-ms-client-request-id": [ "9c2e0597-f7c7-4673-b523-08c854622f8d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11705,41 +11704,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac4481ae-4595-4ff9-959f-f3c40655110b" ], + "x-ms-request-id": [ "7f12413e-81b3-422d-a7e7-8b681baab7c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d62df754-28ad-4911-8b48-b06e29a0ad8d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e0da477e-cb49-4173-97e5-4c53ed95a06e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "199dcd29-4a9f-49fd-8f6a-f47fb145e8ae" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184346Z:199dcd29-4a9f-49fd-8f6a-f47fb145e8ae" ], + "x-ms-correlation-request-id": [ "ccf43bd0-f08a-440d-a4f7-4fa887e3ffae" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015544Z:ccf43bd0-f08a-440d-a4f7-4fa887e3ffae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A10C21F5DEC14300ACF0DFF47124583C Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86C652AE9196464890BA6B6AA8FFBBA8 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:44Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4240" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9/config/web\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Owner\":\"PowerShell\",\"Project\":\"FlexConsumption\",\"Environment\":\"Test\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro/config/web\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"tags\":{\"Project\":\"FlexConsumption\",\"Owner\":\"PowerShell\",\"Environment\":\"Test\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "469" ], - "x-ms-client-request-id": [ "4d35401c-50e8-405a-ab3e-df0c8e157c51" ], + "x-ms-unique-id": [ "440" ], + "x-ms-client-request-id": [ "891ec06b-9d96-4739-9178-4c3a7eaac5ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11751,40 +11750,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e4cf2cd8-48f3-4be7-aa84-ce5e5af30ad5" ], + "x-ms-request-id": [ "eb01930e-42e4-472b-ae30-047ac09156c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "92a39d8d-fbdf-4f22-a2fb-325500905456" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184347Z:92a39d8d-fbdf-4f22-a2fb-325500905456" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "85c3e47a-65d5-42bc-903e-42dc1be7b74d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015545Z:85c3e47a-65d5-42bc-903e-42dc1be7b74d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2792F33594E64FE397CA16967F2A50FF Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:43:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9289A01F2FE431C89DA3A544A180270 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:44Z" ], + "Date": [ "Sat, 28 Mar 2026 01:55:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52912,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52912\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:41:53.95\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68101,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68101\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:53:54.1466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create PowerShell Flex Consumption app with custom tags and app settings+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+27": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-PS-CustomConfig-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "470" ], - "x-ms-client-request-id": [ "4ad6d284-888e-4c7b-81aa-3b2430957dbc" ], + "x-ms-unique-id": [ "441" ], + "x-ms-client-request-id": [ "23e085ef-a026-4085-9396-3d6c0cf0b0e6" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11795,20 +11794,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F205E784F5\"" ], + "ETag": [ "\"1DCBE55E7A22615\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "948ef527-3068-4183-9186-96c2f9fb5be9" ], + "x-ms-request-id": [ "a2207a31-bac5-4f1c-8a33-c807d399de78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2fd1e431-a569-41f9-9b66-17d89befb250" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/de55731a-4ad5-40f8-b1ba-1f207298fafc" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "897a9a7e-e421-4549-a919-49ee2f2dc3f8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184407Z:897a9a7e-e421-4549-a919-49ee2f2dc3f8" ], + "x-ms-correlation-request-id": [ "a9b01b8c-f760-4eee-9d73-b496cf97bf65" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015559Z:a9b01b8c-f760-4eee-9d73-b496cf97bf65" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 506CB9EC471C406D8ECDC148C8C17DAA Ref B: MWH011020807031 Ref C: 2025-11-17T18:43:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B7A443BA1C94F6B8C75F4EE4A8283B5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:55:45Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11822,7 +11821,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Java-NoAppInsights-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-NoAppInsights-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -11837,18 +11836,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf0ff5e0-b6e4-434f-9b4d-917bac7b998d" ], + "x-ms-request-id": [ "5a3d1d9b-cb13-483f-bb96-2d5def156292" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/30bc3084-81ee-4730-b689-d751955b1000" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/696b6ae2-b737-4ce4-8536-35c0d6f314c1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5a1629dc-7b08-488d-b793-409abd665f80" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184408Z:5a1629dc-7b08-488d-b793-409abd665f80" ], + "x-ms-correlation-request-id": [ "1a40fd39-3496-4e09-8be7-4494eaeba761" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015600Z:1a40fd39-3496-4e09-8be7-4494eaeba761" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B0DB560603E4DCB8F970CC8A08D4411 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64C40325836A433AABE7469870D69EF5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:00Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11859,10 +11858,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -11878,42 +11877,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5500a2f5-6fbd-41c9-a837-866027cbc426" ], + "x-ms-request-id": [ "c4159f0d-b88e-4ab4-bcfe-181c18c86c9b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5a6d0e9c-b7b3-46a9-a8e6-b68a0eba5c00" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6e320adf-4a05-4b3d-aab4-6ee5ebcc1a75" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "fc4a79f0-9fab-4f41-a014-f8d7f1097116" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184413Z:fc4a79f0-9fab-4f41-a014-f8d7f1097116" ], + "x-ms-correlation-request-id": [ "52936991-6ed6-4242-8a43-1c340917088f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015603Z:52936991-6ed6-4242-8a43-1c340917088f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16C87D44D7CB423A8582FB00599D6658 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC848140DAF74C618842CA3E4DD71CEC Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:00Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1901" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":62362,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:44:13.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68102,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68102\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:56:03.2666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "474" ], - "x-ms-client-request-id": [ "1e863e1f-5799-4818-9680-dca294a5d0b6" ], + "x-ms-unique-id": [ "445" ], + "x-ms-client-request-id": [ "5e676c07-20dc-4bc3-9255-4d63ca813514" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -11924,41 +11923,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98eeaf4f-7132-48a7-86d1-a149b63c99a6" ], + "x-ms-request-id": [ "e806d6ec-4acb-40bb-8c27-a0a799d5e055" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0a6fbd25-fa2c-4da8-ae28-e01a702c6e08" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184443Z:0a6fbd25-fa2c-4da8-ae28-e01a702c6e08" ], + "x-ms-correlation-request-id": [ "55e8a60e-ba13-406c-afb9-6c1b190fcfda" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015634Z:55e8a60e-ba13-406c-afb9-6c1b190fcfda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F773ADBEE0FD499AA1D8209945159EB5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4872DE29FB66414894383CBE2E27C739 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62362,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:44:13.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68102,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68102\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:56:03.2666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "475" ], - "x-ms-client-request-id": [ "1e863e1f-5799-4818-9680-dca294a5d0b6" ], + "x-ms-unique-id": [ "446" ], + "x-ms-client-request-id": [ "5e676c07-20dc-4bc3-9255-4d63ca813514" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -11969,24 +11968,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce493f82-4e0a-4bfb-86cd-3935971e1564" ], + "x-ms-request-id": [ "cf47400e-f149-4083-afc3-7f0edcab8b86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "807c6467-674d-4ace-9e3b-d2178c70a43c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184444Z:807c6467-674d-4ace-9e3b-d2178c70a43c" ], + "x-ms-correlation-request-id": [ "d83db579-172e-4086-8ceb-4faa09d2090a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015634Z:d83db579-172e-4086-8ceb-4faa09d2090a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF20B11DBEB5416792DE2EE11EB8E105 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A130713CB196454B813A6EBB6EE68935 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62362,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:44:13.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68102,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68102\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:56:03.2666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -11997,12 +11996,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "476" ], - "x-ms-client-request-id": [ "8b662d18-844e-47bd-80e1-e022adf0a326" ], + "x-ms-unique-id": [ "447" ], + "x-ms-client-request-id": [ "da4b180c-256d-4a2d-8cee-1633c0e12cd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12013,40 +12012,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "47086ffe-1773-4bdf-b972-0b36c9b741e3", "9d931c92-362b-4bd2-9115-a31620165a7e", "935ac2c6-d1cd-4b02-959f-0194e173f44e" ], + "x-ms-original-request-ids": [ "aefc8735-7095-45b4-a5a3-7ea51cf93c0e", "13e3d523-830c-4610-87e9-ea9b5cf4704d", "9f9c1219-62d3-41c6-b423-b16155de90b8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "48e172f4-9d8f-43a7-aeec-549069a65029" ], - "x-ms-correlation-request-id": [ "48e172f4-9d8f-43a7-aeec-549069a65029" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184444Z:48e172f4-9d8f-43a7-aeec-549069a65029" ], + "x-ms-request-id": [ "23f8e36b-45c4-4c05-badd-7018b05ae5c4" ], + "x-ms-correlation-request-id": [ "23f8e36b-45c4-4c05-badd-7018b05ae5c4" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T015635Z:23f8e36b-45c4-4c05-badd-7018b05ae5c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C8290608F46F43D3980DBC8E719735B1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:44Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3921AD40B2B6422F8AC2051B0DD3BAAE Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsjavanoappinsightsw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsjavanoappinsights3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsjavanoappinsightsw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsjavanoappinsights3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "477" ], - "x-ms-client-request-id": [ "73d3a997-4b70-4785-8dd6-26c8eb3ca316" ], + "x-ms-unique-id": [ "448" ], + "x-ms-client-request-id": [ "3b034a03-8ecd-48b1-b0a2-0758f218d672" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12057,31 +12056,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "9acc73b4-7fbc-465e-83df-5f915a22ca75" ], + "x-ms-request-id": [ "3f8ddbcb-181c-42b4-8c45-af33577cd0df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/e886db6e-35e0-4856-a2a5-a4527abbcab2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/758bba21-4efc-4c0d-9734-813a757a44bf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "edaf6ee4-aeb4-48b9-a6a9-a6dbfc3fec4a" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184445Z:edaf6ee4-aeb4-48b9-a6a9-a6dbfc3fec4a" ], + "x-ms-correlation-request-id": [ "f44adc56-70c4-46a7-9b50-92fb146303ae" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015635Z:f44adc56-70c4-46a7-9b50-92fb146303ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46BF12DFB4B54B16818CD12A517DCFC0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DF0F4C478FD48A1A81653C83CED8133 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:bd4b176c-901e-0022-2ef2-57ab34000000\\nTime:2025-11-17T18:44:45.4641355Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c164b75f-f01e-0056-1256-be9fc4000000\\nTime:2026-03-28T01:56:35.5401804Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsjavanoappinsightsw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsjavanoappinsights3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsjavanoappinsightsw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsjavanoappinsights3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -12096,25 +12095,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE2609613E7175\"" ], - "x-ms-request-id": [ "9ddd975e-fdc8-48b4-bbe9-440ec289943d" ], + "ETag": [ "\"0x8DE8C6D3E8BB8A3\"" ], + "x-ms-request-id": [ "af8f0398-4283-4d22-8393-53790d699612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4eb40af9-4748-4510-9a43-521bdeb242a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/e09568a8-54cf-4ea2-bdf7-26d5f0378470" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b3149ee0-9a39-46f1-a8c5-7e26d7f150da" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184446Z:b3149ee0-9a39-46f1-a8c5-7e26d7f150da" ], + "x-ms-correlation-request-id": [ "61db47c4-7e79-49f6-a2ac-22ff001a3625" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015636Z:61db47c4-7e79-49f6-a2ac-22ff001a3625" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED47D474200E4F739540F11532B089D0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6148599630CC4F1B9876729A4C7B9795 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/blobServices/default/containers/app-package-functionsjavanoappinsightsw8x9-0000000\",\"name\":\"app-package-functionsjavanoappinsightsw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/blobServices/default/containers/app-package-functionsjavanoappinsights3wro-0000000\",\"name\":\"app-package-functionsjavanoappinsights3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -12125,12 +12124,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "479" ], - "x-ms-client-request-id": [ "4e53fbc4-02b6-419c-bae2-b5c17b1aba0e" ], + "x-ms-unique-id": [ "450" ], + "x-ms-client-request-id": [ "31503471-6a1d-4353-884f-9ff05b53b685" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12141,40 +12140,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "9966bd27-9f96-483e-a68d-91960a31c084", "f768de19-5cc9-4352-9b74-00bdd9d4a644", "e7872452-fd0b-4671-b945-ad4129382b77" ], + "x-ms-original-request-ids": [ "62ea7477-7ca7-4587-9216-73f70337bce9", "4b1ed776-c6a5-4145-9365-4792eb10a40e", "826bb41a-1f49-4ae4-926b-cfb41bee408a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d23d5ff3-894a-40b1-9508-ab0b462dcdc7" ], - "x-ms-correlation-request-id": [ "d23d5ff3-894a-40b1-9508-ab0b462dcdc7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184447Z:d23d5ff3-894a-40b1-9508-ab0b462dcdc7" ], + "x-ms-request-id": [ "6630e0c2-0bca-43dd-ad07-497440a27f2c" ], + "x-ms-correlation-request-id": [ "6630e0c2-0bca-43dd-ad07-497440a27f2c" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T015636Z:6630e0c2-0bca-43dd-ad07-497440a27f2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D02574ABF28405AB44DF95E223DAEB8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EFEC587060A74AFDA627E9A24BCD91A9 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "480" ], - "x-ms-client-request-id": [ "a04cd97c-cab5-429a-97eb-89d932051482" ], + "x-ms-unique-id": [ "451" ], + "x-ms-client-request-id": [ "9b61daec-21d5-4575-a8ae-4ae27e946267" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12185,16 +12184,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8b0405bc-e1f5-4b49-9607-29683db76917" ], + "x-ms-request-id": [ "b92f596f-ebb0-49d2-a36d-a0420ff141d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/81544c0d-10e7-4c64-a9dc-b0361ebe6ae2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/81af0ebd-87cc-4737-82c0-9ceb59e54bbe" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "85ae574a-9fb1-4822-9147-9e3cca6cd363" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184447Z:85ae574a-9fb1-4822-9147-9e3cca6cd363" ], + "x-ms-correlation-request-id": [ "2c7c433c-f537-486a-9257-83f315f3aa95" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015637Z:2c7c433c-f537-486a-9257-83f315f3aa95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E63B9A942264164B889480AB356E971 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6BA3EAA9D4774E3A8A5397C385B0544C Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -12212,12 +12211,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "481" ], - "x-ms-client-request-id": [ "ff5db4d0-4765-4ba0-8dde-1ae882059f9d" ], + "x-ms-unique-id": [ "452" ], + "x-ms-client-request-id": [ "d7be5432-e273-48ac-b086-d5ccb592ce52" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12228,40 +12227,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a9e90a51-5e1c-4f01-b01d-8440ee5c3de8", "521c66ed-2db1-415e-bc12-d563f32223c0", "f371b4c6-2173-4a70-bf24-bddc9f19ab3f" ], + "x-ms-original-request-ids": [ "79b51150-5766-4ef3-8c4f-b2580a65c6ba", "035bbcd0-ff2b-4a9b-927a-d4b81e8e2343", "46d742ba-2b59-4646-8f50-42a83c79f7b3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "92e02b2c-b6ac-4aaf-b110-fe330bba16d4" ], - "x-ms-correlation-request-id": [ "92e02b2c-b6ac-4aaf-b110-fe330bba16d4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184448Z:92e02b2c-b6ac-4aaf-b110-fe330bba16d4" ], + "x-ms-request-id": [ "89faf09d-4a5c-4e2c-b598-816ee6a0aa68" ], + "x-ms-correlation-request-id": [ "89faf09d-4a5c-4e2c-b598-816ee6a0aa68" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T015638Z:89faf09d-4a5c-4e2c-b598-816ee6a0aa68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E692A132853A4B159680C83BFF1253FC Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9E9FF13603E4937ACA8F34CEDCBB5C3 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "482" ], - "x-ms-client-request-id": [ "956e9b3c-8ac3-4d34-8547-73e95a8ca440" ], + "x-ms-unique-id": [ "453" ], + "x-ms-client-request-id": [ "6cadb12c-b5cf-4be6-b38f-d4945154d5a5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12272,16 +12271,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "595f2fe6-026d-4696-8754-f681bcbd1ca6" ], + "x-ms-request-id": [ "d3be6860-a38b-48b5-ae26-f6feeb94837d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1e1dd2e4-ff80-4722-932b-6fc17b04786f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/598e75e3-8808-42d6-84d9-ca5551144de6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6729cb1c-1c9c-4094-b6fc-3299bcd6dbd7" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184448Z:6729cb1c-1c9c-4094-b6fc-3299bcd6dbd7" ], + "x-ms-correlation-request-id": [ "44bfc494-0264-4293-8a7e-dc5736ab44e7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015638Z:44bfc494-0264-4293-8a7e-dc5736ab44e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC628260DFEC4385AA8BE613F48D7753 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:44:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26235C50F4AF4408B5685F001E65E427 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:56:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -12292,11 +12291,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsjavanoappinsightsw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"java\",\r\n \"version\": \"17\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsjavanoappinsights3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"java\",\r\n \"version\": \"17\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -12310,43 +12309,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F2422E3960\"" ], + "ETag": [ "\"1DCBE561EFE00E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "55fb5d5a-5048-46f1-a984-9a4cf565d12a" ], + "x-ms-request-id": [ "250f02be-4dc2-4333-89dd-cac2d9e0f76a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ccf37b6b-eba8-446f-9921-a47a53fcdbd1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/52448305-3141-4670-b0fe-af51e4671683" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "920a8230-cded-4c8f-b509-2b1db474ac0d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184513Z:920a8230-cded-4c8f-b509-2b1db474ac0d" ], + "x-ms-correlation-request-id": [ "be4a6445-7cdc-45b0-bf53-1811a5730cdd" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015701Z:be4a6445-7cdc-45b0-bf53-1811a5730cdd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 505B6D5F22F1464D84D24E5EC04361E7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:44:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A5BB5DCB9EB469A820DAC5045A59525 Ref B: MWH011020809062 Ref C: 2026-03-28T01:56:38Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9596" ], + "Content-Length": [ "9761" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Java-NoAppInsights-w8x9\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:44:51.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsjavanoappinsightsw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-w8x9\\\\$Functions-Java-NoAppInsights-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Java-NoAppInsights-3wro\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\",\"functions-java-noappinsights-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:56:40.6166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsjavanoappinsights3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Java-NoAppInsights-3wro\\\\$Functions-Java-NoAppInsights-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "484" ], - "x-ms-client-request-id": [ "8f09c5d1-b3e2-41b9-884a-c298d77db406" ], + "x-ms-unique-id": [ "455" ], + "x-ms-client-request-id": [ "c8faa16b-6470-4bd6-a88b-911649f14a9a" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -12356,42 +12355,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F24EA65CE0\"" ], + "ETag": [ "1DCBE562B26CBE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9048b007-8fc5-4b83-91c3-ae550a3443f6" ], + "x-ms-request-id": [ "fda0d750-c64e-4926-8613-691a1986f31d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1ff60c26-f2bf-4d47-9c9f-a36454117e77" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184543Z:1ff60c26-f2bf-4d47-9c9f-a36454117e77" ], + "x-ms-correlation-request-id": [ "ab669b3b-eee5-498b-8d59-bebb3d5d3cf1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015732Z:ab669b3b-eee5-498b-8d59-bebb3d5d3cf1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA1212293F134EFFA7CF5EEB5CB208FA Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53B0AD443EA6447D9DB6C33A0C3B8067 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:32Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9573" ], + "Content-Length": [ "9555" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Java-NoAppInsights-w8x9\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:45:12.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsjavanoappinsightsw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-w8x9\\\\$Functions-Java-NoAppInsights-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Java-NoAppInsights-3wro\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\",\"functions-java-noappinsights-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:57:01.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsjavanoappinsights3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Java-NoAppInsights-3wro\\\\$Functions-Java-NoAppInsights-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "485" ], - "x-ms-client-request-id": [ "113ae08a-a6aa-444d-a942-27d91c051fcd" ], + "x-ms-unique-id": [ "456" ], + "x-ms-client-request-id": [ "d75e9bb4-2c28-4dde-9fd2-884ca34119dd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12402,42 +12401,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F24EA65CE0\"" ], + "ETag": [ "1DCBE562B26CBE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bae484f1-f8a0-42d3-b58c-c6eeb971ab73" ], + "x-ms-request-id": [ "3eafea11-7ca3-4689-83bd-e6aea5172035" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a5042f6-e0fa-4c8b-a578-11b1821d1216" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184545Z:4a5042f6-e0fa-4c8b-a578-11b1821d1216" ], + "x-ms-correlation-request-id": [ "c5689e9a-521c-43c2-9244-36cb9b78c9a8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015733Z:c5689e9a-521c-43c2-9244-36cb9b78c9a8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6103C15152F44ECBB6DF23B04C65BD5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:43Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4CEE011365254AEF9A79D8492A51FB53 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:32Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9573" ], + "Content-Length": [ "9555" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Java-NoAppInsights-w8x9\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:45:12.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsjavanoappinsightsw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-w8x9\\\\$Functions-Java-NoAppInsights-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Java-NoAppInsights-3wro\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\",\"functions-java-noappinsights-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:57:01.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsjavanoappinsights3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Java-NoAppInsights-3wro\\\\$Functions-Java-NoAppInsights-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01+15": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "486" ], - "x-ms-client-request-id": [ "bc8bc81a-1f03-434f-b399-c5d756d7a479" ], + "x-ms-unique-id": [ "457" ], + "x-ms-client-request-id": [ "8cd23b30-122f-4b49-8267-a1fe5010af7c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12449,40 +12448,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "139cf7a7-d4a8-45b6-ac7d-536270aea9d1" ], + "x-ms-request-id": [ "69de125e-957d-4985-9e65-09e6d6b6420b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b151ee81-3627-4e3b-89ae-4aed4a6bb6bd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c1094517-3cd4-4123-ad0c-7107f34cf722" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b4733dd5-9f19-42d4-bebd-a8312bae1930" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184545Z:b4733dd5-9f19-42d4-bebd-a8312bae1930" ], + "x-ms-correlation-request-id": [ "4c248fe3-9a22-4de0-a5e1-5215a39c650c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015733Z:4c248fe3-9a22-4de0-a5e1-5215a39c650c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F599E642CB1240D1B815FC4FBACB634E Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:45Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34152F82A8364647B65F67F38F1763B9 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "487" ], - "x-ms-client-request-id": [ "229a2951-8e51-4989-a067-aafccc3640af" ], + "x-ms-unique-id": [ "458" ], + "x-ms-client-request-id": [ "93b6cd48-ff09-43ad-980a-544015587754" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12494,41 +12493,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f7244ff2-50c2-42a0-b516-fa149388631a" ], + "x-ms-request-id": [ "4c32de98-0b19-4919-b2c4-8e25426dfd51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d71f680c-79ab-4d28-b790-18783d4df044" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/416bbbe9-ec50-4548-b0d6-b59e3b4dee68" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "705dae97-b7bf-42d3-9e56-78fdacaedf18" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184546Z:705dae97-b7bf-42d3-9e56-78fdacaedf18" ], + "x-ms-correlation-request-id": [ "f94dd6f3-e7b6-42a7-b7a7-bb35f14ed8a4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015733Z:f94dd6f3-e7b6-42a7-b7a7-bb35f14ed8a4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EAE6EFEBAB24800AD9FF83F06B82A08 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3503A8A8D3794F7A9AA0A9F7657FCEE5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "488" ], - "x-ms-client-request-id": [ "c24156fb-b961-46ca-b807-42199d39587b" ], + "x-ms-unique-id": [ "459" ], + "x-ms-client-request-id": [ "1c30b403-4b28-4842-8b4d-d050726ad146" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12540,40 +12539,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "26650529-1102-469d-ac1e-a571fd50f966" ], + "x-ms-request-id": [ "7763ae29-5f5d-4e90-b885-a68829ee6838" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/de9697d7-9c9f-4b94-be18-004851e6cb79" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d1cee179-580f-449e-90a2-e07a0b7eb70b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ea52133b-2057-4adb-9984-2318d636e70a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184546Z:ea52133b-2057-4adb-9984-2318d636e70a" ], + "x-ms-correlation-request-id": [ "931590f4-03da-4208-9fc7-f9c34a2c7e8e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015734Z:931590f4-03da-4208-9fc7-f9c34a2c7e8e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BFA196215DD04BCF8C5F0E2E9CE31CA9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:46Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66D7FAEF4E544120B29B8C8719B3DD35 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "489" ], - "x-ms-client-request-id": [ "bfbd707b-b488-4eea-bec9-7d584ee92bac" ], + "x-ms-unique-id": [ "460" ], + "x-ms-client-request-id": [ "b1dda1a7-f246-4be7-805b-90c09bb6bfc8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12585,40 +12584,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "579d1f4b-04d9-4347-9a01-8da1d8c28277" ], + "x-ms-request-id": [ "11e70744-7f9d-4630-bcfd-76c60d38feb4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cfb35553-633d-4dbb-bf93-a64661ab709e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184547Z:cfb35553-633d-4dbb-bf93-a64661ab709e" ], + "x-ms-correlation-request-id": [ "399ca5af-6d30-4dde-a73c-400d1fa93a01" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015734Z:399ca5af-6d30-4dde-a73c-400d1fa93a01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6DBED196D70435994C1C3AD051F22AE Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 077B919556614D2F912C0ABFB21A80F5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62362,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:44:13.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68102,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68102\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:56:03.2666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "490" ], - "x-ms-client-request-id": [ "32c07264-8120-4e02-a014-2bcaffca7ce0" ], + "x-ms-unique-id": [ "461" ], + "x-ms-client-request-id": [ "c6010140-ae57-426c-8617-1baec6150786" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12629,42 +12628,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F24EA65CE0\"" ], + "ETag": [ "1DCBE562B26CBE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cba1cce9-bbde-4265-b722-d3637bfdef4d" ], + "x-ms-request-id": [ "b1868b22-32d0-4898-8abf-45659a736d27" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "785dad36-ecd0-4b0e-9724-fe098fd3ead4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184547Z:785dad36-ecd0-4b0e-9724-fe098fd3ead4" ], + "x-ms-correlation-request-id": [ "f44e2f96-aaec-4daa-87eb-c8f860362fbf" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015735Z:f44e2f96-aaec-4daa-87eb-c8f860362fbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4169847EBCD145C99DEE29AEF7CA2721 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:47Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3AD4F58BFEDD4EDAA66FB0A54C707D14 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9573" ], + "Content-Length": [ "9555" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Java-NoAppInsights-w8x9\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:45:12.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsjavanoappinsightsw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-w8x9\\\\$Functions-Java-NoAppInsights-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Java-NoAppInsights-3wro\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\",\"functions-java-noappinsights-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:57:01.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsjavanoappinsights3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Java-NoAppInsights-3wro\\\\$Functions-Java-NoAppInsights-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "491" ], - "x-ms-client-request-id": [ "0879373e-648d-4e2b-b75a-526e37a9f1d1" ], + "x-ms-unique-id": [ "462" ], + "x-ms-client-request-id": [ "b6baf4cf-1e3b-46bf-8d15-b7c1aa296968" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12676,40 +12675,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27a2a6a1-ee48-4a4e-966f-00204211446b" ], + "x-ms-request-id": [ "6a3144d9-28f0-424e-9cf9-dbb23c1c0a27" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/9be6af95-2bb8-431e-be37-e61c1ac1e69d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e7bb6112-1299-4ca6-91de-d60ae89b9158" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184548Z:e7bb6112-1299-4ca6-91de-d60ae89b9158" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7346f7dc-3793-47f0-8040-aa9a29a58910" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "18d2d855-5cbb-4250-827f-f9fb804c557c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015735Z:18d2d855-5cbb-4250-827f-f9fb804c557c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A2F7479953974EA6B9D59504E5A0DF65 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3BAB066ED6BB40CE8A254483BA565C28 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "29f1f403-4a62-42a5-88d6-aedf7fb3e675" ], + "x-ms-unique-id": [ "463" ], + "x-ms-client-request-id": [ "9fb5f183-c100-4cbf-bafe-53e2c31c5ca2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12721,41 +12720,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cd4241bc-58b2-4857-b9c1-75172a363b91" ], + "x-ms-request-id": [ "69f77097-d356-4e72-ae99-efb57637dbcf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0c7900b6-a059-4234-81ba-33c942a882d3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/7a64a38d-b68b-448f-b9cc-a8d80c02f033" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "87bbee16-983f-4bb4-9369-ecd4946a4b49" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184548Z:87bbee16-983f-4bb4-9369-ecd4946a4b49" ], + "x-ms-correlation-request-id": [ "8458aeb7-04ba-49ee-b793-d02a650cce79" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015736Z:8458aeb7-04ba-49ee-b793-d02a650cce79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58154B58C1664C1CB4B1EC4FF957FE09 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1A950B229A442D7A40E7376A12655CD Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "493" ], - "x-ms-client-request-id": [ "bbc652e9-a970-4d06-9a2e-a458fcd77286" ], + "x-ms-unique-id": [ "464" ], + "x-ms-client-request-id": [ "56e4333a-4acd-43bd-a2a0-ab43b5959d8e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12766,42 +12765,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F24EA65CE0\"" ], + "ETag": [ "1DCBE562B26CBE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5688b810-2252-4ee9-830e-eacc557a33b7" ], + "x-ms-request-id": [ "aad8ec66-7dc4-471b-9333-e6ebd24a658c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3bb42ee0-cc9f-489e-b8bd-6f9e16737172" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184549Z:3bb42ee0-cc9f-489e-b8bd-6f9e16737172" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2ea9b4f3-bfe1-41c4-bec8-82048053caa5" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015736Z:2ea9b4f3-bfe1-41c4-bec8-82048053caa5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 222E35A16C2B4AA784FAB12D163878A4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:48Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 358B55CE2BA847C9A2CDA84925CAB132 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9573" ], + "Content-Length": [ "9555" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Java-NoAppInsights-w8x9\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:45:12.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasaw8x9.blob.core.windows.net/app-package-functionsjavanoappinsightsw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Functions-Java-NoAppInsights-w8x9\\\\$Functions-Java-NoAppInsights-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-java-noappinsights-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Java-NoAppInsights-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Java-NoAppInsights-3wro\",\"repositorySiteName\":\"Functions-Java-NoAppInsights-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-noappinsights-3wro.azurewebsites.net\",\"functions-java-noappinsights-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-noappinsights-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:57:01.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexappjavasa3wro.blob.core.windows.net/app-package-functionsjavanoappinsights3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"java\",\"version\":\"17\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Java-NoAppInsights-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Java-NoAppInsights-3wro\\\\$Functions-Java-NoAppInsights-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-java-noappinsights-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "494" ], - "x-ms-client-request-id": [ "ce1924b3-3b20-43c5-a930-201f17c8d33d" ], + "x-ms-unique-id": [ "465" ], + "x-ms-client-request-id": [ "825811ec-e4c0-4169-ad51-139d41fb824b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12813,40 +12812,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ed9067b-5bd8-47f2-a161-903c0de28cc5" ], + "x-ms-request-id": [ "5ba10755-ef85-4098-8221-57b8d70faa29" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/60f86bec-87f1-4460-8519-8e35f909b135" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c55745eb-b457-4ccd-80d1-905616eae2cb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184549Z:c55745eb-b457-4ccd-80d1-905616eae2cb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/26aec281-1305-45c5-aaa5-f689950016e1" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "11548374-f715-49bc-bd26-67208428c07d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015736Z:11548374-f715-49bc-bd26-67208428c07d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 865A552F8A294F56B4D9D519FC39C066 Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D57F313D275347FAB5FBEF0DC722402E Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "727" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "495" ], - "x-ms-client-request-id": [ "dba09c1b-979f-4034-9633-bda59c1d44b5" ], + "x-ms-unique-id": [ "466" ], + "x-ms-client-request-id": [ "f67c1c01-3115-40fe-a4fb-51d9bc438c60" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12858,41 +12857,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9553b77-6a31-4ea8-b903-a39d3a6462d7" ], + "x-ms-request-id": [ "4a13ca5f-18a6-489f-814b-d4f4aaf29487" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2879ca2e-f59c-4668-ab71-d49b53cf7c8f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/48059a95-c294-44fa-b949-c42dee9250d0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "92050521-f560-4ecb-974f-e85d9ad312b4" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184550Z:92050521-f560-4ecb-974f-e85d9ad312b4" ], + "x-ms-correlation-request-id": [ "55ab2d00-cb3f-4a44-813b-8dc075ffcc9b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015737Z:55ab2d00-cb3f-4a44-813b-8dc075ffcc9b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C47AC5FABE1C4442A4636432BA55847E Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:49Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5124AAF8E6F54F7CB55CB6593591971E Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4167" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9/config/web\",\"name\":\"Functions-Java-NoAppInsights-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro/config/web\",\"name\":\"Functions-Java-NoAppInsights-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "496" ], - "x-ms-client-request-id": [ "d87e41d6-8310-4eb2-9045-ba5eb64796de" ], + "x-ms-unique-id": [ "467" ], + "x-ms-client-request-id": [ "a215e3b7-f418-40b6-a12c-c17233070e72" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12904,40 +12903,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6221e3f0-fd30-4696-8ff9-e291d03da53e" ], + "x-ms-request-id": [ "3c299f8d-e134-4fa1-8d15-9641e0c84d20" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b76b0b1-35b6-40f6-8230-6c4c2c2872ff" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184550Z:1b76b0b1-35b6-40f6-8230-6c4c2c2872ff" ], + "x-ms-correlation-request-id": [ "daf0f04e-099d-49d5-adfb-7e575c9d6a9c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015737Z:daf0f04e-099d-49d5-adfb-7e575c9d6a9c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2AC660DC99341A18544E5531C45C0EB Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:50Z" ], - "Date": [ "Mon, 17 Nov 2025 18:45:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9F624843ECF94AB4BC9BD23BF7E46EB2 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1810" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":62362,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_62362\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:44:13.1\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68102,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68102\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:56:03.2666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Create Java Flex Consumption app with disabled Application Insights+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Java-NoAppInsights-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "497" ], - "x-ms-client-request-id": [ "017ba3db-bbd1-4ce3-8abb-603650ade98a" ], + "x-ms-unique-id": [ "468" ], + "x-ms-client-request-id": [ "2e5262cc-f1de-4c15-bbd6-fea0a7fc1089" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12948,20 +12947,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F24EA65CE0\"" ], + "ETag": [ "\"1DCBE562B26CBE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fbdfc01b-a48f-4e38-84c6-c97df5b11fc1" ], + "x-ms-request-id": [ "2f3af0fe-6aeb-4d02-a73b-0c264ecbc55b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/49e4937e-2156-4be1-aa35-a01608934577" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8dde3720-16f3-441f-a0b6-feedd978bf93" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "6a99e2cc-8f91-41fc-9aab-3a7f97d15ba9" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184609Z:6a99e2cc-8f91-41fc-9aab-3a7f97d15ba9" ], + "x-ms-correlation-request-id": [ "cd77a3d6-5c8b-4ae1-8880-8b538be12223" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015752Z:cd77a3d6-5c8b-4ae1-8880-8b538be12223" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F800D163E294E36B487382EED51BB2D Ref B: MWH011020807031 Ref C: 2025-11-17T18:45:50Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B564AA209F64DF08C0777B48C0081BE Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:52 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -12975,7 +12974,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-DotNet-WhatIf-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-WhatIf-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -12990,18 +12989,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6832fd7-b6a6-4b0f-9ecf-294d9088d25c" ], + "x-ms-request-id": [ "81180fca-1e72-4e10-8401-bcc86c6d2c63" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/550b4cc9-a1f2-4c4f-b835-244a30fea353" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a8773bb7-f4a4-4253-ba47-ae0ffc99ccf3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "493042c1-e784-46d1-95f0-ae9de813d7b7" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184611Z:493042c1-e784-46d1-95f0-ae9de813d7b7" ], + "x-ms-correlation-request-id": [ "70b08223-9678-4252-809a-af87a890b25a" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015752Z:70b08223-9678-4252-809a-af87a890b25a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D663EA14D6304C21A25025A970C61C1D Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC3CD80529924B4AA1422E2487A400C7 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:52Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13019,12 +13018,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "500" ], - "x-ms-client-request-id": [ "6c8f1284-6790-47c5-bdc4-e532235b90e5" ], + "x-ms-unique-id": [ "471" ], + "x-ms-client-request-id": [ "280c6d3c-b215-4fae-97a2-1da8c541757c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13035,40 +13034,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "c0900fe5-3bea-4593-a1e6-e802cfd5bf85", "96ec1ad7-92a6-4960-bdf9-2e0cb19533f4", "0a1f1fb8-0586-4d31-bd37-4bac6b03e3cb" ], + "x-ms-original-request-ids": [ "d5b7e518-20b9-4456-a8f5-f31b2efb8e01", "16d01978-134f-43fb-a604-0b561c29af46", "c6372217-6969-4172-958c-1b57ec1f90ce" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "91e0f4e7-1fa6-4e63-ac49-11d03ca570d6" ], - "x-ms-correlation-request-id": [ "91e0f4e7-1fa6-4e63-ac49-11d03ca570d6" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184611Z:91e0f4e7-1fa6-4e63-ac49-11d03ca570d6" ], + "x-ms-request-id": [ "e56acf41-d2e9-42b0-918b-0176f78e82b6" ], + "x-ms-correlation-request-id": [ "e56acf41-d2e9-42b0-918b-0176f78e82b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T015753Z:e56acf41-d2e9-42b0-918b-0176f78e82b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30804388F9874F0F9A44D81937DE9C5F Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7E380E7BECFC43C2B4C7F5315B4701C1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:53Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/blobServices/default/containers/app-package-functionsdotnetwhatifw8x9-0000000?api-version=2019-04-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/blobServices/default/containers/app-package-functionsdotnetwhatif3wro-0000000?api-version=2019-04-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/blobServices/default/containers/app-package-functionsdotnetwhatifw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/blobServices/default/containers/app-package-functionsdotnetwhatif3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "501" ], - "x-ms-client-request-id": [ "768dbe82-b877-4fd8-bc81-d23f00420659" ], + "x-ms-unique-id": [ "472" ], + "x-ms-client-request-id": [ "a783d3ef-3dfd-4a27-b6bc-fef054eb6abb" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13079,24 +13078,24 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "042f4e27-75e3-4ad0-b248-1fcb44fea8a1" ], + "x-ms-request-id": [ "407fd346-8007-4b7d-b091-03e33dd5e8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/678bb260-459a-4f30-8dae-bf5ec60a7b40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ea6a81f8-9001-4ac9-815a-8e2d3a65a235" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ebbe38e0-2994-48b9-8421-1d23c3192779" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T184612Z:ebbe38e0-2994-48b9-8421-1d23c3192779" ], + "x-ms-correlation-request-id": [ "268208e9-b584-416b-9a9a-413043b569c4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015754Z:268208e9-b584-416b-9a9a-413043b569c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C605DAE078ED4FA59A610950465B6BA8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 817A20DC1B3A48CBB1A839B02ADB7BFC Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:53Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:15115e43-401e-004b-50f2-579cfa000000\\nTime:2025-11-17T18:46:12.3052029Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c164e563-f01e-0056-5456-be9fc4000000\\nTime:2026-03-28T01:57:54.0723900Z\"}}", "isContentBase64": false } }, @@ -13107,12 +13106,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "502" ], - "x-ms-client-request-id": [ "95f893f4-ed86-4a38-8043-eb6b4e06a47d" ], + "x-ms-unique-id": [ "473" ], + "x-ms-client-request-id": [ "83bf7282-9c7b-4acf-b62d-f2b1bce3e586" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13123,40 +13122,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "91b2f8ff-22a9-4976-b11f-90469741b75e", "62f775ae-433a-49e3-97ec-13200539bd81", "95370e28-a492-41d5-8128-db3a0623432d" ], + "x-ms-original-request-ids": [ "7c1b5d5d-6ff6-45c5-856f-a9c447ef87c5", "3e4d3c64-0bc7-491c-9e36-66cac856d6f0", "39f64674-24e9-407e-9da7-8130649b4373" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "6aaa98fa-ade5-485f-acf7-c756e53defe2" ], - "x-ms-correlation-request-id": [ "6aaa98fa-ade5-485f-acf7-c756e53defe2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184613Z:6aaa98fa-ade5-485f-acf7-c756e53defe2" ], + "x-ms-request-id": [ "167d1908-6497-40bc-ba38-5069390b3678" ], + "x-ms-correlation-request-id": [ "167d1908-6497-40bc-ba38-5069390b3678" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T015755Z:167d1908-6497-40bc-ba38-5069390b3678" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65832FC1D79943228DA0AE35BD7B31A0 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:12Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9730CC7E72844F9D93A10514EA06B4D3 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:54Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01+5": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "503" ], - "x-ms-client-request-id": [ "03f13090-9c98-417c-9a96-71b42cd6ae72" ], + "x-ms-unique-id": [ "474" ], + "x-ms-client-request-id": [ "38be2352-2fe2-4471-851d-bc8b55b402f1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13167,16 +13166,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6c7b9129-57c7-45a6-a71c-cef3d2ea77fd" ], + "x-ms-request-id": [ "a5c98104-e8aa-467a-b94a-04876ab241ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/7bc9eb27-b1b9-4c8c-bb99-6e858bf3e022" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/feefced6-2cdc-42d6-8164-f6dd6c480e7d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8b39af3b-8ee8-4a15-b6ca-bf6621f67af2" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184613Z:8b39af3b-8ee8-4a15-b6ca-bf6621f67af2" ], + "x-ms-correlation-request-id": [ "43c53bc5-173f-4a5c-a1f7-769768f54ce0" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015755Z:43c53bc5-173f-4a5c-a1f7-769768f54ce0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 495A6FC9B6024E3FB33C1DD59D0D8387 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DD4743D036540398688043739181E4B Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:55Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -13194,12 +13193,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "504" ], - "x-ms-client-request-id": [ "ff0be469-1f56-4fb5-82fb-6ed70d740ca8" ], + "x-ms-unique-id": [ "475" ], + "x-ms-client-request-id": [ "98466fc5-6105-46ff-8bdf-fea117c6c92d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13210,40 +13209,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8f2a6933-e099-4a38-b691-0e45ac5ca0e9", "d5a55c91-fb9b-4cd4-b83c-ca2c58e9ff81", "806193f2-3e1d-4ee3-a310-cbe93aa9a0bf" ], + "x-ms-original-request-ids": [ "82471469-dd1d-4674-adb8-c1b4f694a5bc", "6bb9d1c8-a4bc-4b93-a811-afc871ad9d46", "c5cc9b7b-e26a-4dfe-9148-35977830a291" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "5f105987-6621-4383-b111-5075b3caf872" ], - "x-ms-correlation-request-id": [ "5f105987-6621-4383-b111-5075b3caf872" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184614Z:5f105987-6621-4383-b111-5075b3caf872" ], + "x-ms-request-id": [ "9befb4f5-232b-4775-9b65-f00ad09c6463" ], + "x-ms-correlation-request-id": [ "9befb4f5-232b-4775-9b65-f00ad09c6463" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T015756Z:9befb4f5-232b-4775-9b65-f00ad09c6463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA724583218849DF911D9294E0AC0E69 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2BBF8961BCC84850BE61ED4CB4C842F0 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:55Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "505" ], - "x-ms-client-request-id": [ "cb6f5bfa-7fce-47db-94ae-b5ca4a5e9545" ], + "x-ms-unique-id": [ "476" ], + "x-ms-client-request-id": [ "0ca6438a-62db-42c3-ae00-a9fbfd7840f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13254,16 +13253,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "4cc1f8d8-448e-4c81-813d-00e86c5ebe25" ], + "x-ms-request-id": [ "45a0d4ed-fe9b-4d18-a340-947f590f11bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/80785421-e77d-42bf-baa2-24dbc1b30fa2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/85f79025-f8e0-41b2-89b6-78a78751b769" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e366c1bc-f060-4c9d-ba9f-38f496453e7f" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184615Z:e366c1bc-f060-4c9d-ba9f-38f496453e7f" ], + "x-ms-correlation-request-id": [ "6eda563b-591c-4eb9-ac79-cca86de42ab5" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015756Z:6eda563b-591c-4eb9-ac79-cca86de42ab5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C1C57F2D52F44F7A7B0E159F8F51B68 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:14Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 118B4DE4F3F349539FB03EF2102A8B7F Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:56Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -13274,19 +13273,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-w8x9?api-version=2023-12-01+8": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Validate New-AzFunctionApp -WhatIf works for DotNet-Isolated Flex Consumption+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-3wro?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-DotNet-WhatIf-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "506" ], - "x-ms-client-request-id": [ "404e66e1-19de-49dc-a8da-1c77c70426a6" ], + "x-ms-unique-id": [ "477" ], + "x-ms-client-request-id": [ "e34950a8-684e-4b5d-a581-eccfd67c5264" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13298,21 +13297,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "65b62463-6233-4cbe-9d0c-0d9bbd02282c" ], - "x-ms-correlation-request-id": [ "65b62463-6233-4cbe-9d0c-0d9bbd02282c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184615Z:65b62463-6233-4cbe-9d0c-0d9bbd02282c" ], + "x-ms-request-id": [ "c8453770-277c-4b46-8557-cca317678cf8" ], + "x-ms-correlation-request-id": [ "c8453770-277c-4b46-8557-cca317678cf8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015757Z:c8453770-277c-4b46-8557-cca317678cf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F170C750F614A839E73BAAC19F653B1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:15Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FBC3DD1BA2EA4438847ECD1D474E85D5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "242" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-DotNet-WhatIf-w8x9\u0027 under resource group \u0027Functions-Flex-RG-w8x9\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-DotNet-WhatIf-3wro\u0027 under resource group \u0027Functions-Flex-RG-3wro\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -13320,7 +13319,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Cleanup-Test-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Cleanup-Test-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13335,18 +13334,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f795eb3-cd64-4a42-a0ab-f578b3b3a994" ], + "x-ms-request-id": [ "7f445eb1-cc33-45f7-8054-4007af335eee" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/d3539922-99bd-4c58-8ecc-06ef1a950244" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "f4d849cb-8618-4d52-99e2-45f964dfe510" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184616Z:f4d849cb-8618-4d52-99e2-45f964dfe510" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80043a5d-2408-4d15-9478-8f5f97eb861d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "68096333-d41f-402e-9777-e6df2a009e23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T015757Z:68096333-d41f-402e-9777-e6df2a009e23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 096371B808B34790BFB8EB77AD9A6961 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:15Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DA557EAE0244FE890419BF30487AFAC Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:57Z" ], + "Date": [ "Sat, 28 Mar 2026 01:57:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13357,10 +13356,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -13376,42 +13375,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "275871fd-be64-4948-a65b-7a172c4046fb" ], + "x-ms-request-id": [ "e7b00e8f-abcf-4151-a9a9-f4a228cfa807" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f78721bc-2cb0-45d0-8427-f4bd0de39a89" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fb0cd594-ba88-4939-a783-68bc91f5cc6f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1973833f-7c59-4910-93ec-93f2e4faac19" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184622Z:1973833f-7c59-4910-93ec-93f2e4faac19" ], + "x-ms-correlation-request-id": [ "4442b52f-1594-4bbd-92df-f0d228bcc7e7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015800Z:4442b52f-1594-4bbd-92df-f0d228bcc7e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9C558CC0D66E4186AC27E2412A4816F3 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C90D3429A3B943D9BB6B5CEAC0FCDA46 Ref B: MWH011020809062 Ref C: 2026-03-28T01:57:58Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52913,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52913\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:46:21.7866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":77755,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77755\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:58:00.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "510" ], - "x-ms-client-request-id": [ "015ef56e-a2e9-44a7-8d1b-fa91af33371e" ], + "x-ms-unique-id": [ "481" ], + "x-ms-client-request-id": [ "0545a830-0bdb-49f9-b9ed-6b4f7b050416" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -13422,41 +13421,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6474685c-ce88-445f-bcb3-1e20ffc1f962" ], + "x-ms-request-id": [ "94fd7fdf-ea2a-42ce-8c27-a88ceae51039" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6a4ae533-57ba-495f-8360-125aa292a98c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184652Z:6a4ae533-57ba-495f-8360-125aa292a98c" ], + "x-ms-correlation-request-id": [ "8b4d2eda-79ae-47b7-8bab-0f42b8f52ed9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015831Z:8b4d2eda-79ae-47b7-8bab-0f42b8f52ed9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D92140A72D94C7E9866896F49564E3B Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:52Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6F3DCE4B1DEB4AB896FA3DCA1E654513 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:31Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52913,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52913\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:46:21.7866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77755,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77755\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:58:00.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "511" ], - "x-ms-client-request-id": [ "015ef56e-a2e9-44a7-8d1b-fa91af33371e" ], + "x-ms-unique-id": [ "482" ], + "x-ms-client-request-id": [ "0545a830-0bdb-49f9-b9ed-6b4f7b050416" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -13467,24 +13466,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59e8d263-fb1f-4673-8ff9-7de7eb988230" ], + "x-ms-request-id": [ "8a7dab74-c58a-48e0-b3bd-fa22a1ecba27" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6d5850b1-15c3-463d-8d37-9ed9af995227" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184653Z:6d5850b1-15c3-463d-8d37-9ed9af995227" ], + "x-ms-correlation-request-id": [ "75b1733a-7dd6-41fa-8a54-a6478860e99f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015832Z:75b1733a-7dd6-41fa-8a54-a6478860e99f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07A9B43AA3164054B7B649CE6C7D24F5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:52Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F0E763A546A4298B2EBC8339A39A758 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:31Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1816" ], + "Content-Length": [ "1811" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52913,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52913\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:46:21.7866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77755,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77755\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:58:00.79\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -13495,12 +13494,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "512" ], - "x-ms-client-request-id": [ "df1791c6-f6d2-4954-9a66-ecc78b029035" ], + "x-ms-unique-id": [ "483" ], + "x-ms-client-request-id": [ "a31c8385-4b13-4347-9eb5-4af6d22d1d6a" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13511,40 +13510,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "64d38882-f724-41a0-a78a-6168aae97007", "6f28bb2b-ed4b-40be-aa52-abf763dee009", "27db51f6-d200-47e4-a2ea-d59b64bf3d53" ], + "x-ms-original-request-ids": [ "fc458ffe-c9dd-4218-8bc6-cc02033ad1f5", "22c7f417-f817-46e8-ad6d-930e778fab85", "776cd168-f3b9-4fe7-9ac0-b9a0e586029e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "dae5a280-3d6e-42ba-916c-44182507416d" ], - "x-ms-correlation-request-id": [ "dae5a280-3d6e-42ba-916c-44182507416d" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184653Z:dae5a280-3d6e-42ba-916c-44182507416d" ], + "x-ms-request-id": [ "65bae33c-844a-46b1-ab94-e5411310450c" ], + "x-ms-correlation-request-id": [ "65bae33c-844a-46b1-ab94-e5411310450c" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015833Z:65bae33c-844a-46b1-ab94-e5411310450c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 344F9C69468F4673812BA9BF793ED9C1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:53Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 424FEBC3332F4BE38C3A57A8A78A2335 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:32Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionscleanuptestw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionscleanuptest3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionscleanuptestw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionscleanuptest3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "513" ], - "x-ms-client-request-id": [ "01b9751d-6be9-4065-9e2f-f7c2c2c110bd" ], + "x-ms-unique-id": [ "484" ], + "x-ms-client-request-id": [ "10414803-6da8-42e2-9a55-9f65b2df1ecc" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13555,31 +13554,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "90f8e302-1b17-461a-a2ce-455b30732523" ], + "x-ms-request-id": [ "d5ff0b39-674e-4368-b238-26c9de37355c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/939b25aa-461b-4361-8050-603eec9bf8f2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/044b0c59-daaa-426c-b92e-f17fc1ac51ea" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d3de07ab-fd3b-4d7f-8dce-8cfe57fe3057" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T184654Z:d3de07ab-fd3b-4d7f-8dce-8cfe57fe3057" ], + "x-ms-correlation-request-id": [ "5737bd76-e136-40e4-ada8-548f2af8f8f6" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015833Z:5737bd76-e136-40e4-ada8-548f2af8f8f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2598AB7F326A42688657C269F44C5B4E Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD2F7EC7420C4CE8968E89D4B23F0665 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c74e32ec-c01e-0008-5df2-57c127000000\\nTime:2025-11-17T18:46:54.5432163Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:a6f1c2c5-101e-001b-6c56-bee52b000000\\nTime:2026-03-28T01:58:33.3339658Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionscleanuptestw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionscleanuptest3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionscleanuptestw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionscleanuptest3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -13594,25 +13593,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE2609AE2F58FB\"" ], - "x-ms-request-id": [ "cd740574-5095-4a2d-ab42-61e106ad8191" ], + "ETag": [ "\"0x8DE8C6D84C11325\"" ], + "x-ms-request-id": [ "172ad531-dd94-41e9-a1bb-ccd35b66afba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/6638b1eb-3e7c-4af3-b434-559054730103" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/69a8d8c6-3d13-46af-85c7-a68f4ba8ba75" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d5dbc02b-0297-4b80-a3d6-fa3603c1190c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184655Z:d5dbc02b-0297-4b80-a3d6-fa3603c1190c" ], + "x-ms-correlation-request-id": [ "2045068a-002e-443b-9a5f-1d3fc1a69a20" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015834Z:2045068a-002e-443b-9a5f-1d3fc1a69a20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BDC6D0515B541CCADACF4A3FD6A7116 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8FB4EB876C5D4D33BFDCEA54E98B335A Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:33Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "452" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionscleanuptestw8x9-0000000\",\"name\":\"app-package-functionscleanuptestw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionscleanuptest3wro-0000000\",\"name\":\"app-package-functionscleanuptest3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -13623,12 +13622,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "515" ], - "x-ms-client-request-id": [ "0de06483-9b9e-441a-92b4-9104709eb6e1" ], + "x-ms-unique-id": [ "486" ], + "x-ms-client-request-id": [ "48a6fec1-b4db-4bb7-982c-6823acf687e8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13639,40 +13638,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1a8ebc08-c108-4276-8866-5a1c9c00080c", "aea14eba-bbf6-40c9-92c7-7d5716a90275", "509d23c8-c70d-40dc-9227-b0583f15be12" ], + "x-ms-original-request-ids": [ "b91e4bbf-ae58-49a5-87bd-e7079256ad92", "5b669f8e-4e88-4d49-8379-6278c3f00749", "8dc66ce8-b08c-4e4d-b9b9-85b442b3b5dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "deaad824-4046-4872-bee3-ac847fceaff6" ], - "x-ms-correlation-request-id": [ "deaad824-4046-4872-bee3-ac847fceaff6" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184656Z:deaad824-4046-4872-bee3-ac847fceaff6" ], + "x-ms-request-id": [ "5bca2d26-987c-4fd2-8fbe-ac9bd0a8cf50" ], + "x-ms-correlation-request-id": [ "5bca2d26-987c-4fd2-8fbe-ac9bd0a8cf50" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T015834Z:5bca2d26-987c-4fd2-8fbe-ac9bd0a8cf50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D4AC5354A92481A8A5967E50F7AAEFD Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:55Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB213886AAE749E8BBDC741B149E0959 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "516" ], - "x-ms-client-request-id": [ "bb142c6b-e9d8-4721-8b39-0e3e1d570c3f" ], + "x-ms-unique-id": [ "487" ], + "x-ms-client-request-id": [ "d5e3ba5f-adcd-4e02-86cf-bb4f2146ce84" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13683,16 +13682,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "84f2cec2-e53d-4266-bce8-1c72c7738af8" ], + "x-ms-request-id": [ "405d973c-ba9d-42da-be2c-7fc09f146ead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/35ff3752-d8cc-4e25-a833-b5c2fa9501fe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/8036ca21-4f80-46cc-afc9-1f7f68c01cd5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "68e14f9d-3cf1-4834-b3e7-3e869b4f3b41" ], - "x-ms-routing-request-id": [ "WESTUS:20251117T184656Z:68e14f9d-3cf1-4834-b3e7-3e869b4f3b41" ], + "x-ms-correlation-request-id": [ "dd0c81af-e1ff-4be5-b02e-48f2bf14d49a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015835Z:dd0c81af-e1ff-4be5-b02e-48f2bf14d49a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53E47488445543FE85CA4798EE3F94E8 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D5298F287201499DBF810DBB70CFAE05 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:34Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -13710,12 +13709,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "517" ], - "x-ms-client-request-id": [ "85c65177-9b30-4235-9ece-cde7823d9190" ], + "x-ms-unique-id": [ "488" ], + "x-ms-client-request-id": [ "37219182-490a-476f-9c73-f20f6295a563" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13726,40 +13725,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "cf2fc64b-c85e-465f-b502-37d562686e83", "c8b8324e-d124-4ade-a883-c1dfa8130e33", "6cef9e10-9c00-4982-b68b-c1e4d195c152" ], + "x-ms-original-request-ids": [ "cd54206b-a516-43b5-be1e-92ed580c09c2", "94fcc533-7ec9-407f-a01d-305bd5307a75", "ffde7aff-b889-4b32-bdc6-9cfac60ccb24" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "8de091e8-e941-46c5-88fd-f1ad763ef06c" ], - "x-ms-correlation-request-id": [ "8de091e8-e941-46c5-88fd-f1ad763ef06c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184657Z:8de091e8-e941-46c5-88fd-f1ad763ef06c" ], + "x-ms-request-id": [ "e7094d15-b9a2-4061-8aef-fe8c4d087593" ], + "x-ms-correlation-request-id": [ "e7094d15-b9a2-4061-8aef-fe8c4d087593" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T015835Z:e7094d15-b9a2-4061-8aef-fe8c4d087593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 20B7D7D690B34B5D88011307A2B44E6E Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95F9DADDEC6E44798F51F3DE0ACA3F5C Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:35Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "518" ], - "x-ms-client-request-id": [ "5307a487-ee0e-4cff-808b-f03ac747d1a3" ], + "x-ms-unique-id": [ "489" ], + "x-ms-client-request-id": [ "8f4ac01e-8b13-4408-aea5-7ffb9cbef56f" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13770,16 +13769,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "19a42e92-d7ba-4b13-9444-876c3deced00" ], + "x-ms-request-id": [ "965960e2-9a33-419f-bc00-9d92b3bf68b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c297ab74-edd9-400e-86ea-dab2a90afee8" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "37e4f677-43ac-4305-bf77-9986b96f628b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184658Z:37e4f677-43ac-4305-bf77-9986b96f628b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b01b26ff-9301-4ca1-8ddc-01b69198b6c5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "2adc77f1-4371-4eff-910b-97e1dd09068d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015836Z:2adc77f1-4371-4eff-910b-97e1dd09068d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16865877F24B4BD8B0715306D69279C9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:58Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BE52D4F585F94A30A29048C29A176D78 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -13797,12 +13796,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "519" ], - "x-ms-client-request-id": [ "2ccc7b21-7ec1-4d66-95a9-207581a46f64" ], + "x-ms-unique-id": [ "490" ], + "x-ms-client-request-id": [ "7972a2b5-12fc-4b03-8469-bcd9c9756a32" ], "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13816,37 +13815,37 @@ "x-ms-original-request-ids": [ "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0a845e43-ac35-4231-8ccb-d40fcf1f2b68" ], - "x-ms-correlation-request-id": [ "0a845e43-ac35-4231-8ccb-d40fcf1f2b68" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184659Z:0a845e43-ac35-4231-8ccb-d40fcf1f2b68" ], + "x-ms-request-id": [ "1046cf17-a43f-42b9-9e78-109b1f814cfa" ], + "x-ms-correlation-request-id": [ "1046cf17-a43f-42b9-9e78-109b1f814cfa" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015837Z:1046cf17-a43f-42b9-9e78-109b1f814cfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DA8AA4BE66C487BA90109D2F2653109 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:58Z" ], - "Date": [ "Mon, 17 Nov 2025 18:46:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 35C4C52333D74261B4DDDE9D1F715D38 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:36Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "23562" ], + "Content-Length": [ "24967" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"a0005d02-0000-0300-0000-691b64f40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShell-74-8m0tjy\",\"name\":\"Functions-PowerShell-74-8m0tjy\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-8m0tjy\",\"AppId\":\"3ded824b-3b52-4105-bde3-01bf87011dee\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"76ade3ee-11e9-4bb4-8b7a-cf3d62610724\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-8m0tjy\",\"CreationDate\":\"2025-11-17T18:09:32.5811835+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershell-74-8m0tjy_3ded824b-3b52-4105-bde3-01bf87011dee_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-8m0tjy-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a0002112-0000-0300-0000-691b65320000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/microsoft.insights/components/Functions-Node-22-25v7bk\",\"name\":\"Functions-Node-22-25v7bk\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-25v7bk\",\"AppId\":\"7b0bb6a4-3b97-49f2-ad9c-d7b8af22c49e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"00d75625-8b4a-4fe7-ae34-2740b5718e58\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-25v7bk\",\"CreationDate\":\"2025-11-17T18:10:53.8165436+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-22-25v7bk_7b0bb6a4-3b97-49f2-ad9c-d7b8af22c49e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-25v7bk-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a000c821-0000-0300-0000-691b656e0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-w8ejmo/providers/microsoft.insights/components/Functions-DotNet-8-3k0a1w\",\"name\":\"Functions-DotNet-8-3k0a1w\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-3k0a1w\",\"AppId\":\"c3280747-401c-4059-a651-03fe531aa60b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"71be0802-f796-49f4-a41e-3542228f2602\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-3k0a1w\",\"CreationDate\":\"2025-11-17T18:11:54.0128862+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-8-3k0a1w_c3280747-401c-4059-a651-03fe531aa60b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-3k0a1w-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a0009237-0000-0300-0000-691b65c10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-n5rmpk/providers/microsoft.insights/components/Functions-Python-312-qm287u\",\"name\":\"Functions-Python-312-qm287u\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-qm287u\",\"AppId\":\"79579429-3d18-401c-ab78-7a958328961b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"1b198f15-f2b7-43dd-b0c1-a38a6335d259\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-qm287u\",\"CreationDate\":\"2025-11-17T18:13:16.5808837+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-312-qm287u_79579429-3d18-401c-ab78-7a958328961b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-qm287u-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a0004048-0000-0300-0000-691b66070000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Functions-PowerShellTest-z7cj05b1wo-new\",\"name\":\"Functions-PowerShellTest-z7cj05b1wo-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-z7cj05b1wo-new\",\"AppId\":\"c5cb1ed1-59e5-4466-adda-509cc3b8cac1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"abae86ac-58e7-4a02-a723-743f22d57cbd\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-z7cj05b1wo-new\",\"CreationDate\":\"2025-11-17T18:14:26.6860095+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-z7cj05b1wo-new_c5cb1ed1-59e5-4466-adda-509cc3b8cac1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-z7cj05b1wo-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"a000cc97-0000-0300-0000-691b67450000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/microsoft.insights/components/Func-PowerShell-NewTest1-ie0b2an8xm\",\"name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"AppId\":\"433befed-9e27-4b30-85fc-b98b893f03fd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"44065200-b2f3-416b-b293-8ffb16c6d983\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-ie0b2an8xm\",\"CreationDate\":\"2025-11-17T18:19:44.9889018+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-ie0b2an8xm_433befed-9e27-4b30-85fc-b98b893f03fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-ie0b2an8xm-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504c62d-0000-0200-0000-691b67df0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-w8x9\",\"name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-w8x9\",\"AppId\":\"d6367ac1-db56-4e2c-a641-d9b692b06f29\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"17f77b21-0beb-4175-9463-925d912cda3a\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-DotNetIsolated-w8x9\",\"CreationDate\":\"2025-11-17T18:22:10.8748461+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-w8x9_d6367ac1-db56-4e2c-a641-d9b692b06f29_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504f150-0000-0200-0000-691b68640000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Node-w8x9\",\"name\":\"Functions-Flex-Node-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-w8x9\",\"AppId\":\"1b22435a-afef-4bbd-b4ce-42187faa2b8b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"cafe75a6-5f27-413e-abf7-4b1f5adea9f2\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Node-w8x9\",\"CreationDate\":\"2025-11-17T18:24:23.5205749+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-w8x9_1b22435a-afef-4bbd-b4ce-42187faa2b8b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"05042e62-0000-0200-0000-691b68e90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Python-w8x9\",\"name\":\"Functions-Flex-Python-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-w8x9\",\"AppId\":\"58458e0c-8dab-4cf2-ad43-70f2b5a4baa5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"aee607a4-89d2-4c33-b3ea-c3bdab86cb5e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Python-w8x9\",\"CreationDate\":\"2025-11-17T18:26:38.7613209+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-w8x9_58458e0c-8dab-4cf2-ad43-70f2b5a4baa5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504166c-0000-0200-0000-691b69700000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Java-w8x9\",\"name\":\"Functions-Flex-Java-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-w8x9\",\"AppId\":\"92e030bd-22b9-42a1-8732-ad4b05e6ad5b\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4d80d63b-ad7e-49e9-894e-0925317090f0\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Java-w8x9\",\"CreationDate\":\"2025-11-17T18:28:49.9983613+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-w8x9_92e030bd-22b9-42a1-8732-ad4b05e6ad5b_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0504e776-0000-0200-0000-691b69fb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-PowerShell-w8x9\",\"name\":\"Functions-Flex-PowerShell-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-w8x9\",\"AppId\":\"24b8a2ca-9998-4333-8118-ff36434a5c74\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ac211e29-8b06-494c-8235-95cb1d5315de\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-PowerShell-w8x9\",\"CreationDate\":\"2025-11-17T18:31:11.5940642+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-w8x9_24b8a2ca-9998-4333-8118-ff36434a5c74_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"05042ee2-0000-0200-0000-691b6a810000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Flex-Custom-w8x9\",\"name\":\"Functions-Flex-Custom-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-w8x9\",\"AppId\":\"ba5481a0-9fc3-461d-ad0d-38a125e58163\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7e4d199e-8d5b-4080-a089-a11f19548350\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Custom-w8x9\",\"CreationDate\":\"2025-11-17T18:33:26.0313196+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-w8x9_ba5481a0-9fc3-461d-ad0d-38a125e58163_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0604284e-0000-0200-0000-691b6b070000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-w8x9\",\"name\":\"Functions-Python-Flex-Scaling-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-w8x9\",\"AppId\":\"c24921aa-389b-47b9-8a4a-50712c3880ae\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"19729223-b10a-4b32-9b94-5e0c50baaff7\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-Flex-Scaling-w8x9\",\"CreationDate\":\"2025-11-17T18:35:41.5115526+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-w8x9_c24921aa-389b-47b9-8a4a-50712c3880ae_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"06048758-0000-0200-0000-691b6b900000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Node-SystemIdentity-w8x9\",\"name\":\"Functions-Node-SystemIdentity-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-w8x9\",\"AppId\":\"e9a4d8ae-e91c-460d-852f-f9ff788dfd7e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"96d4beab-1b2f-4b67-beae-f20d78791418\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-SystemIdentity-w8x9\",\"CreationDate\":\"2025-11-17T18:37:55.9829294+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-w8x9_e9a4d8ae-e91c-460d-852f-f9ff788dfd7e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"06043163-0000-0200-0000-691b6c1d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-w8x9\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"AppId\":\"11cceb1e-bf16-4ff3-b156-70e2f2176ac2\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e075af08-d3f7-435a-a3c7-4400394b9bbb\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-w8x9\",\"CreationDate\":\"2025-11-17T18:40:18.7545917+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-w8x9_11cceb1e-bf16-4ff3-b156-70e2f2176ac2_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"0604a76c-0000-0200-0000-691b6ca60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-PS-CustomConfig-w8x9\",\"name\":\"Functions-PS-CustomConfig-w8x9\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-w8x9\",\"AppId\":\"4c611320-7d61-4907-8450-581e26acb195\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ff697694-6e08-4db3-8d98-f18509e535dd\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PS-CustomConfig-w8x9\",\"CreationDate\":\"2025-11-17T18:42:32.2602986+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-w8x9_4c611320-7d61-4907-8450-581e26acb195_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-w8x9-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"6b03db62-0000-0300-0000-69c72cb00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-umoz8s\",\"AppId\":\"bd16a6d3-6c63-46e2-85ba-50619c5c9418\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0b47af78-4934-4b77-b2d5-23295ed7ee5d\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-umoz8s\",\"CreationDate\":\"2026-03-28T01:19:39.5557801+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershell-74-umoz8s_bd16a6d3-6c63-46e2-85ba-50619c5c9418_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-umoz8s-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b03fc69-0000-0300-0000-69c72d010000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/microsoft.insights/components/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-lzxr8g\",\"AppId\":\"db05807c-fd7b-4051-813c-0d3a3e6aacec\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bf927c72-9606-4a60-85fa-0e380f07c8cf\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-lzxr8g\",\"CreationDate\":\"2026-03-28T01:21:00.6226284+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-22-lzxr8g_db05807c-fd7b-4051-813c-0d3a3e6aacec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-lzxr8g-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b03166f-0000-0300-0000-69c72d3d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/microsoft.insights/components/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-8qxhpl\",\"AppId\":\"f865afca-fb8a-4c94-90f8-32e9861b65bd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4fa20058-0550-4d0d-8b55-a65fc17a1a16\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-8qxhpl\",\"CreationDate\":\"2026-03-28T01:22:01.3294546+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-8-8qxhpl_f865afca-fb8a-4c94-90f8-32e9861b65bd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-8qxhpl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b032776-0000-0300-0000-69c72d920000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-o2a71w\",\"AppId\":\"0359e9d2-796d-4553-98e2-676aa9cf4729\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6b6ca547-2916-411f-8121-92959c135b40\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-o2a71w\",\"CreationDate\":\"2026-03-28T01:23:25.7091239+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-312-o2a71w_0359e9d2-796d-4553-98e2-676aa9cf4729_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-o2a71w-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b03dc7b-0000-0300-0000-69c72dd50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr-new\",\"name\":\"Functions-PowerShellTest-0yltam84vr-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0yltam84vr-new\",\"AppId\":\"3d6eb1b3-62ce-4c2f-bb99-451be89fca8d\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"c1581c14-e25d-4dd6-9ada-b984bc86eb46\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0yltam84vr-new\",\"CreationDate\":\"2026-03-28T01:24:32.6959944+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr-new_3d6eb1b3-62ce-4c2f-bb99-451be89fca8d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b031da4-0000-0300-0000-69c72f580000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"AppId\":\"8abbcfaa-2133-4860-83bf-0ae216d897b5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"712e22e8-5385-4837-ae80-44c1f679dd19\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"CreationDate\":\"2026-03-28T01:30:59.1024376+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-t1850fmzia_8abbcfaa-2133-4860-83bf-0ae216d897b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-t1850fmzia-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300d952-0000-0200-0000-69c72eff0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Flex-PowerShell-3wro\",\"name\":\"Flex-PowerShell-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Flex-PowerShell-3wro\",\"AppId\":\"4709544b-f3ad-4af4-a458-465deb6bc58f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b64a8083-4461-4b21-9c2e-dbfc0f8ffd0a\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Flex-PowerShell-3wro\",\"CreationDate\":\"2026-03-28T01:29:25.1410304+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_flex-powershell-3wro_4709544b-f3ad-4af4-a458-465deb6bc58f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Flex-PowerShell-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300be5a-0000-0200-0000-69c72fe90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-3wro\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-3wro\",\"AppId\":\"e42f26b9-8136-4e63-b5b2-50b1856f971f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ca64bb30-d9a5-4ad5-ae07-c548157d84ae\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-DotNetIsolated-3wro\",\"CreationDate\":\"2026-03-28T01:33:18.6373455+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-3wro_e42f26b9-8136-4e63-b5b2-50b1856f971f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300e260-0000-0200-0000-69c7306b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Node-3wro\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-3wro\",\"AppId\":\"b81d42c4-502b-41c3-a62e-2666c367bb6a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"1db2b2ae-442e-4be7-bc76-15269a77c189\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Node-3wro\",\"CreationDate\":\"2026-03-28T01:35:28.4432788+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-3wro_b81d42c4-502b-41c3-a62e-2666c367bb6a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83002167-0000-0200-0000-69c730e70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Python-3wro\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-3wro\",\"AppId\":\"7308590b-f88e-4610-80e0-b6189b46f1f6\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"134c599d-3400-48f8-9422-8455a04c7fe8\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Python-3wro\",\"CreationDate\":\"2026-03-28T01:37:34.0688266+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-3wro_7308590b-f88e-4610-80e0-b6189b46f1f6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83009471-0000-0200-0000-69c731e00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Java-3wro\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-3wro\",\"AppId\":\"bba8b51a-196f-4938-bcf4-5387d44ac633\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0c757c3f-a532-4bae-bb47-52c485ac89e9\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Java-3wro\",\"CreationDate\":\"2026-03-28T01:41:40.1581305+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-3wro_bba8b51a-196f-4938-bcf4-5387d44ac633_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300fe75-0000-0200-0000-69c7325f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-PowerShell-3wro\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-3wro\",\"AppId\":\"73904fad-1a42-4b9e-9cec-5a2dd95b15bf\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"20b0b8c4-d784-4c4d-92b5-184ae96fd401\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-PowerShell-3wro\",\"CreationDate\":\"2026-03-28T01:43:46.2304096+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-3wro_73904fad-1a42-4b9e-9cec-5a2dd95b15bf_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300077a-0000-0200-0000-69c732de0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Custom-3wro\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-3wro\",\"AppId\":\"e7a47d21-94e6-449e-bd13-9449dbefaeb4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"432b8997-07fd-4065-9829-15a790aea57b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Custom-3wro\",\"CreationDate\":\"2026-03-28T01:45:56.4069579+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-3wro_e7a47d21-94e6-449e-bd13-9449dbefaeb4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83003d7e-0000-0200-0000-69c733630000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-3wro\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-3wro\",\"AppId\":\"fe0bf9e1-e792-4261-b393-e3ba64f4d439\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c7de0ca4-daeb-46e7-a234-be192320c59b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-Flex-Scaling-3wro\",\"CreationDate\":\"2026-03-28T01:48:07.3021356+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-3wro_fe0bf9e1-e792-4261-b393-e3ba64f4d439_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83008b82-0000-0200-0000-69c733e20000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Node-SystemIdentity-3wro\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-3wro\",\"AppId\":\"6204ab8c-066f-4e9a-b178-fbd25025d2eb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b27e8ff1-5974-4045-b674-61b0a02b59ea\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-SystemIdentity-3wro\",\"CreationDate\":\"2026-03-28T01:50:14.6450366+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-3wro_6204ab8c-066f-4e9a-b178-fbd25025d2eb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300fe90-0000-0200-0000-69c734610000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-3wro\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"AppId\":\"8246032b-6760-4b17-b153-1d537360aa73\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"896e0183-aa26-40cb-b79c-fb06527cef45\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"CreationDate\":\"2026-03-28T01:52:23.3544597+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-3wro_8246032b-6760-4b17-b153-1d537360aa73_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300ee9a-0000-0200-0000-69c734e40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-PS-CustomConfig-3wro\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-3wro\",\"AppId\":\"02cf1800-6f0c-4306-8714-7ce3c4a0111d\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a147199a-4cbd-4299-a45b-cfb3caefc6a9\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PS-CustomConfig-3wro\",\"CreationDate\":\"2026-03-28T01:54:31.4253345+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-3wro_02cf1800-6f0c-4306-8714-7ce3c4a0111d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+13": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "520" ], - "x-ms-client-request-id": [ "d937c6d6-c6c7-44b9-832a-4c9364abf91d" ], + "x-ms-unique-id": [ "491" ], + "x-ms-client-request-id": [ "1390b9c0-676c-4739-bd9e-c7b2a9a227a4" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13858,18 +13857,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "33475dfc-ea14-4f6e-a738-145bab13b971" ], + "x-ms-request-id": [ "7ab95106-1158-469e-8d56-765c3970d123" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/07a3a40d-20a6-4851-83ee-d2c28653792e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0c8324d0-11b0-4cd5-b0b7-751525bf5075" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "78ec69e9-670e-4b53-9be7-31a9a4611e8b" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184704Z:78ec69e9-670e-4b53-9be7-31a9a4611e8b" ], + "x-ms-correlation-request-id": [ "f64080a3-c72d-4702-a82e-edaa3798308e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015839Z:f64080a3-c72d-4702-a82e-edaa3798308e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 206C2125A2B64B8F9C6AE5E99C87F0C5 Ref B: MWH011020807031 Ref C: 2025-11-17T18:46:59Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37B1F90B05EF4F3EAEAF2A85CF160DF5 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:37Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:39 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -13879,19 +13878,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionscleanuptestw8x9-0000000?api-version=2019-04-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionscleanuptest3wro-0000000?api-version=2019-04-01+14": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionscleanuptestw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionscleanuptest3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "521" ], - "x-ms-client-request-id": [ "b2515fba-7617-49a8-a337-1673223b44c7" ], + "x-ms-unique-id": [ "492" ], + "x-ms-client-request-id": [ "9bb0456d-6da7-4fe1-be27-8d980ee9418c" ], "CommandName": [ "Az.Functions.internal\\Remove-AzBlobContainer" ], "FullCommandName": [ "Remove-AzBlobContainer_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13902,17 +13901,17 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3ede8cf5-2db9-4d85-9a14-e55cc748d2dd" ], + "x-ms-request-id": [ "1f98cf82-08ff-4146-8d0f-74b0673553ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c479c397-9373-462d-9359-9b664c60dd39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ab7c9a8c-4c3a-435e-b12d-6108431d9a03" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "70b40962-af23-432e-8b00-64cc60a06f6c" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184705Z:70b40962-af23-432e-8b00-64cc60a06f6c" ], + "x-ms-correlation-request-id": [ "b107ecbf-5ce4-49de-8be8-739f461ca932" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015839Z:b107ecbf-5ce4-49de-8be8-739f461ca932" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C2B6EEDF274A48EF993FB25AC00EFE1D Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:04Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA40CE4FBDD44C25B8E581DF9FECA9EE Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:39 GMT" ] }, "ContentHeaders": { "Content-Type": [ "text/plain; charset=utf-8" ], @@ -13923,19 +13922,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Cleanup-Test-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Cleanup-Test-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Cleanup-Test-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Cleanup-Test-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "522" ], - "x-ms-client-request-id": [ "e600bd52-0565-475c-94ec-d560f75343ed" ], + "x-ms-unique-id": [ "493" ], + "x-ms-client-request-id": [ "23bf5320-0f2b-42f1-b157-04f7f55838cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13947,37 +13946,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "cc6e619d-7fb6-4eca-a0bf-a97dc87394d8" ], - "x-ms-correlation-request-id": [ "cc6e619d-7fb6-4eca-a0bf-a97dc87394d8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184705Z:cc6e619d-7fb6-4eca-a0bf-a97dc87394d8" ], + "x-ms-request-id": [ "cc42e285-0da3-4ff7-8925-aaa3745ca6d9" ], + "x-ms-correlation-request-id": [ "cc42e285-0da3-4ff7-8925-aaa3745ca6d9" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015840Z:cc42e285-0da3-4ff7-8925-aaa3745ca6d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62E2ADD8261948C7AC961B965D8D0552 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:05Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E206586B572940DDB21B71DD598B3B54 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:39Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "241" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Cleanup-Test-w8x9\u0027 under resource group \u0027Functions-Flex-RG-w8x9\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Cleanup-Test-3wro\u0027 under resource group \u0027Functions-Flex-RG-3wro\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Cleans up plan when Flex Consumption app creation fails (invalid Application Insights)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "523" ], - "x-ms-client-request-id": [ "8c44d073-a782-4378-94e6-a013db1cb09b" ], + "x-ms-unique-id": [ "494" ], + "x-ms-client-request-id": [ "3f591478-1aee-49e6-be86-ecf7746d54a2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13989,21 +13988,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "fb81d203-9f81-4ee8-a9ed-38cd1cc8cf3a" ], - "x-ms-correlation-request-id": [ "fb81d203-9f81-4ee8-a9ed-38cd1cc8cf3a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184716Z:fb81d203-9f81-4ee8-a9ed-38cd1cc8cf3a" ], + "x-ms-request-id": [ "ebf56ddd-eed2-4abb-aba3-c77d5e2c97bd" ], + "x-ms-correlation-request-id": [ "ebf56ddd-eed2-4abb-aba3-c77d5e2c97bd" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015850Z:ebf56ddd-eed2-4abb-aba3-c77d5e2c97bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AF28DC80BEF4E3B86546A3DD73E7806 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E390DB91A0534886B0577E24941D1C85 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "248" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRGw8x9-0000\u0027 under resource group \u0027Functions-Flex-RG-w8x9\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRG3wro-0000\u0027 under resource group \u0027Functions-Flex-RG-3wro\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -14011,7 +14010,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Remove-FlexPlan-w8x9\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Remove-FlexPlan-3wro\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -14026,18 +14025,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "16a81995-61f4-4caa-9623-8bb8651e198e" ], + "x-ms-request-id": [ "484dc242-38b6-4d26-91c6-41b62525a7fb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/67d5804a-cb71-4491-aa54-f1cc969a1e5b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/b6a1d4fe-b5b9-4c94-8f9a-de85ae34cbc1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5ee1dd87-ac99-4d1d-8f06-4e77b36d724e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184716Z:5ee1dd87-ac99-4d1d-8f06-4e77b36d724e" ], + "x-ms-correlation-request-id": [ "40b561d5-f7ed-4329-b3fb-555731c85435" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T015850Z:40b561d5-f7ed-4329-b3fb-555731c85435" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 095E1297FFF14802AFC87D80CD07C079 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:16Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 12C5ED74D8474520BC5C0AC52CE03F4A Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:50Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -14048,10 +14047,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+2": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"reserved\": true\r\n },\r\n \"sku\": {\r\n \"name\": \"FC1\",\r\n \"tier\": \"FlexConsumption\",\r\n \"size\": \"FC\",\r\n \"family\": \"FC\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -14067,42 +14066,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "15a331d2-2f6d-4217-9d6a-c41f25e4d865" ], + "x-ms-request-id": [ "e2b30fc2-10fd-4e42-b49e-712f28917c83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9fa170b1-a1b5-4010-b234-89ba1a4545ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/902051a2-786c-4991-bfce-f4217971dd0c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "562e66eb-b267-4e09-9be6-b97b9d3daa49" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184721Z:562e66eb-b267-4e09-9be6-b97b9d3daa49" ], + "x-ms-correlation-request-id": [ "642adaa6-15fb-4a73-b502-808cbdae8337" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015853Z:642adaa6-15fb-4a73-b502-808cbdae8337" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC667E651DE94A979FFCC970AE9B8E54 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:17Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64EFB16EA1DB449486E155F8D0D82AC1 Ref B: MWH011020809062 Ref C: 2026-03-28T01:58:51Z" ], + "Date": [ "Sat, 28 Mar 2026 01:58:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1907" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":52914,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52914\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2025-11-17T18:47:21.56\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"eastasia\",\"properties\":{\"serverFarmId\":68105,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0},\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68105\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T01:58:53.5533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+3": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "527" ], - "x-ms-client-request-id": [ "d4c9753f-9996-4603-9d20-dca44f48df50" ], + "x-ms-unique-id": [ "498" ], + "x-ms-client-request-id": [ "ae7c89c7-fa34-4181-aa66-0922627994cb" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -14113,41 +14112,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f883a702-c6ba-4566-92a3-e31ede9eada6" ], + "x-ms-request-id": [ "8d1e53a6-ec71-421f-bb33-6e9ba3833656" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c81055e6-1b41-476f-8196-6702f70623d2" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184752Z:c81055e6-1b41-476f-8196-6702f70623d2" ], + "x-ms-correlation-request-id": [ "c5025516-347b-4a8d-8c89-f4a8baacc824" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015924Z:c5025516-347b-4a8d-8c89-f4a8baacc824" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D4AFAECF19D64A5DA5D28D9A7B4A7C1E Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:52Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4516857352B4E369D7D76795CB5FCE6 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52914,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52914\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:47:21.56\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68105,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68105\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:58:53.5533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+4": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "528" ], - "x-ms-client-request-id": [ "d4c9753f-9996-4603-9d20-dca44f48df50" ], + "x-ms-unique-id": [ "499" ], + "x-ms-client-request-id": [ "ae7c89c7-fa34-4181-aa66-0922627994cb" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -14158,24 +14157,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "04ddb5ee-34be-4bee-b275-9b855ea7344e" ], + "x-ms-request-id": [ "b2048197-9936-49c1-9738-bf5b3f1cc538" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b274b644-b43b-437e-920f-66352993e27f" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184752Z:b274b644-b43b-437e-920f-66352993e27f" ], + "x-ms-correlation-request-id": [ "d74f64d8-63ed-4ec8-8c5b-96cff64dcc9f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015924Z:d74f64d8-63ed-4ec8-8c5b-96cff64dcc9f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6098C31E81D478AAB807C345B488C88 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:52Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E6B50CBBA95B4CC5AF9A1EE3EDA7D64E Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:24Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52914,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52914\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:47:21.56\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68105,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68105\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:58:53.5533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, @@ -14186,12 +14185,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "529" ], - "x-ms-client-request-id": [ "29ebb4c9-22b6-4bdc-b96b-c1992b25582f" ], + "x-ms-unique-id": [ "500" ], + "x-ms-client-request-id": [ "91ceaa15-cac0-4dea-9ddc-f943788799a2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14202,40 +14201,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "db5038ec-7fdd-401b-b254-5f980e248bc4", "9870f515-9c91-45be-9255-f11a305be85e", "05afee91-0eba-4987-9fdd-25d7a6ec4c54" ], + "x-ms-original-request-ids": [ "6d5c0c16-0b6d-4365-abc8-8c351791f352", "f59b2240-8bde-4b68-9100-b1bebda17b1e", "4493fecf-1937-484f-9e36-607911ce37e4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c8663dde-ad2b-48a3-b0ba-08888b06a88a" ], - "x-ms-correlation-request-id": [ "c8663dde-ad2b-48a3-b0ba-08888b06a88a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184753Z:c8663dde-ad2b-48a3-b0ba-08888b06a88a" ], + "x-ms-request-id": [ "eb78cea0-e1c8-4bc5-a04c-70a3488352dc" ], + "x-ms-correlation-request-id": [ "eb78cea0-e1c8-4bc5-a04c-70a3488352dc" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T015925Z:eb78cea0-e1c8-4bc5-a04c-70a3488352dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D84F16190E84E47993163AF7B56D54D Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:52Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D6AF104F31254EFA9EA6B854FB4C3209 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:25Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsremoveflexplanw8x9-0000000?api-version=2019-04-01+6": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsremoveflexplan3wro-0000000?api-version=2019-04-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsremoveflexplanw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsremoveflexplan3wro-0000000?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "530" ], - "x-ms-client-request-id": [ "deb67571-e92f-43ac-bc39-093e99cef638" ], + "x-ms-unique-id": [ "501" ], + "x-ms-client-request-id": [ "6d3f8aa3-9e10-405d-9437-6fe5561d484c" ], "CommandName": [ "Az.Functions.internal\\Get-AzBlobContainer" ], "FullCommandName": [ "Get-AzBlobContainer_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14246,31 +14245,31 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "67ac4a45-c700-441b-bbd1-43af0cc8fd3f" ], + "x-ms-request-id": [ "25d28fdb-8d6e-4424-b4f7-a1e9677d850f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/84b40f06-ad55-4d83-a1d5-f8e37387fb92" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/a85e2f22-2a3f-4d27-ba94-9f7c6419464c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c2ea56f-e42c-4dc2-9d9b-c1a54cac7a2d" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184753Z:2c2ea56f-e42c-4dc2-9d9b-c1a54cac7a2d" ], + "x-ms-correlation-request-id": [ "82dfb434-b807-4d36-976c-cea21d7f205e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015926Z:82dfb434-b807-4d36-976c-cea21d7f205e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B38B793A7EAB431FB2C91F28421F145F Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:53Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC0B923503204A5D995D5C0E08BF3EBC Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "173" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:c74e6fa3-c01e-0008-65f2-57c127000000\\nTime:2025-11-17T18:47:53.9418716Z\"}}", + "Content": "{\"error\":{\"code\":\"ContainerNotFound\",\"message\":\"The specified container does not exist.\\nRequestId:a6f1f425-101e-001b-1856-bee52b000000\\nTime:2026-03-28T01:59:26.2365829Z\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsremoveflexplanw8x9-0000000?api-version=2019-04-01+7": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsremoveflexplan3wro-0000000?api-version=2019-04-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsremoveflexplanw8x9-0000000?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsremoveflexplan3wro-0000000?api-version=2019-04-01", "Content": "{\r\n \"properties\": {\r\n \"publicAccess\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -14285,25 +14284,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"0x8DE2609D1905E6A\"" ], - "x-ms-request-id": [ "8a677058-fd3c-4e68-9c88-b479859bfeb0" ], + "ETag": [ "\"0x8DE8C6DA43BE448\"" ], + "x-ms-request-id": [ "8d16eb12-415c-4a7e-a61f-5e1f2b93f775" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/c4c9955d-903f-4cdb-b7db-b8617f5c86e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/190ae022-eb5a-4922-ad0e-7f46961d4108" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "cdd304f3-c162-409b-b1ae-328c54eb2e97" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184754Z:cdd304f3-c162-409b-b1ae-328c54eb2e97" ], + "x-ms-correlation-request-id": [ "c98b5386-73d1-40e9-91ea-c72f9657d18b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015926Z:c98b5386-73d1-40e9-91ea-c72f9657d18b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EBD5DA5EB463490DA27224E87FF1B9C9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBF675598ED14AD084778C7BC5DC338A Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:26Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "458" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/blobServices/default/containers/app-package-functionsremoveflexplanw8x9-0000000\",\"name\":\"app-package-functionsremoveflexplanw8x9-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/blobServices/default/containers/app-package-functionsremoveflexplan3wro-0000000\",\"name\":\"app-package-functionsremoveflexplan3wro-0000000\",\"type\":\"Microsoft.Storage/storageAccounts/blobServices/containers\",\"properties\":{\"publicAccess\":\"None\",\"hasImmutabilityPolicy\":false,\"hasLegalHold\":false}}", "isContentBase64": false } }, @@ -14314,12 +14313,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "532" ], - "x-ms-client-request-id": [ "e4d29544-ddaf-4ce4-bcd2-3ecb6ae40e2b" ], + "x-ms-unique-id": [ "503" ], + "x-ms-client-request-id": [ "474255ac-8236-4ddb-8edc-0fdaa4ef28e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14330,40 +14329,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "501df77f-5ef7-4c10-9d14-6b447e8dc404", "326cc013-24c3-40e7-9fd8-a3a1fabccd73", "968b58a7-a1c2-4d64-b993-b7ce925dea0d" ], + "x-ms-original-request-ids": [ "69086dfd-39fc-4b15-bdea-93d1ea4e35e9", "1c5c8376-c026-4f70-abd3-02ef6e0f746f", "13393247-e60d-42b5-aa43-43c835a3c191" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ed30b785-8755-4f7f-94ac-163b852dcbdf" ], - "x-ms-correlation-request-id": [ "ed30b785-8755-4f7f-94ac-163b852dcbdf" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184755Z:ed30b785-8755-4f7f-94ac-163b852dcbdf" ], + "x-ms-request-id": [ "07071f8a-3ca0-4e6d-9f4c-c4c5e8e8bb9e" ], + "x-ms-correlation-request-id": [ "07071f8a-3ca0-4e6d-9f4c-c4c5e8e8bb9e" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T015927Z:07071f8a-3ca0-4e6d-9f4c-c4c5e8e8bb9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 354CA768592F4F6EA5AEB83B7BE5494B Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:54Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 818C9A33AB9B4A80849879057EE52C81 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:27Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "533" ], - "x-ms-client-request-id": [ "3cd4c54b-9066-491a-98ad-df1600048796" ], + "x-ms-unique-id": [ "504" ], + "x-ms-client-request-id": [ "484d9a98-8e09-4236-8489-08ca2b5e624b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14374,16 +14373,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "05dbc61b-9d42-497c-9091-0bc1b5a30b05" ], + "x-ms-request-id": [ "f09f3167-8b99-49bb-820c-108d7f3e498a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/70938328-aa5e-438b-9337-888b1814dde3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b9792e77-caaa-479e-ab5b-4192ddaeae67" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9b06b47a-5eab-45d8-a31e-b25b34376fbd" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184756Z:9b06b47a-5eab-45d8-a31e-b25b34376fbd" ], + "x-ms-correlation-request-id": [ "5eb41d43-afb0-4ca8-ba80-f366be391bd1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015928Z:5eb41d43-afb0-4ca8-ba80-f366be391bd1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AAD01201DDAD462E92BF5B89B22087A4 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:55Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C5DBA32CB787467789C2D81874B01FE3 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -14401,12 +14400,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "534" ], - "x-ms-client-request-id": [ "898d0fdc-23cd-40b7-8a3a-8ecd64f6fa3c" ], + "x-ms-unique-id": [ "505" ], + "x-ms-client-request-id": [ "f782c2cd-44e7-48d1-bf4c-05d69bb072d2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14417,40 +14416,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "241c17ad-46cd-45e5-b99d-c2b246b0ce54", "e4a4f3ec-c303-41b9-b883-513038568f75", "deb5b1c2-fa53-452d-8d75-33d0744aba3b" ], + "x-ms-original-request-ids": [ "5aacf319-3ee1-4754-8d79-26b81924d289", "eb5d7952-1ca6-4522-90ad-279271cf9ecb", "10f4340b-eeda-4c7f-bd8b-e3acd9cf9d61" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c978a77e-b661-4f39-9875-ed6a6ef5024e" ], - "x-ms-correlation-request-id": [ "c978a77e-b661-4f39-9875-ed6a6ef5024e" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184757Z:c978a77e-b661-4f39-9875-ed6a6ef5024e" ], + "x-ms-request-id": [ "96bf37f7-9a61-44d4-8d51-37d34f2ded58" ], + "x-ms-correlation-request-id": [ "96bf37f7-9a61-44d4-8d51-37d34f2ded58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T015929Z:96bf37f7-9a61-44d4-8d51-37d34f2ded58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C2C97DF143C44389E6E5B2EC4025B27 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:56Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42A041B566DD44D598DB2BE7A748B8A7 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:28Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappcustomsaw8x9\",\"name\":\"flexappcustomsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:17:49.2640065Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:17:49.1546355Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaw8x9.table.core.windows.net/\",\"file\":\"https://flexappcustomsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaw\",\"name\":\"flexappdotnetisolatedsaw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:02.8397977Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:02.7460319Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaw.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaw.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaw.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaw.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaw.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaw.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappjavasaw8x9\",\"name\":\"flexappjavasaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:59.2155923Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:59.1218558Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappjavasaw8x9.table.core.windows.net/\",\"file\":\"https://flexappjavasaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexappnodesaw8x9\",\"name\":\"flexappnodesaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:15:32.2933175Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:15:32.1995651Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaw8x9.queue.core.windows.net/\",\"table\":\"https://flexappnodesaw8x9.table.core.windows.net/\",\"file\":\"https://flexappnodesaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9\",\"name\":\"flexapppowershellsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:25.3565078Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:25.2627541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppythonsaw8x9\",\"name\":\"flexapppythonsaw8x9\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:16:52.9195163Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:16:52.8101088Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaw8x9.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaw8x9.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaw8x9.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaw8x9.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaw8x9.table.core.windows.net/\",\"file\":\"https://flexapppythonsaw8x9.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-qtnd3j/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage9t5\",\"name\":\"functionslinuxstorage9t5\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:54.0216939Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:53.7873160Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage9t5.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage9t5.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage9t5.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage9t5.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage9t5.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage9t5.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-y9jkp1/providers/Microsoft.Storage/storageAccounts/functionswinstorageizw\",\"name\":\"functionswinstorageizw\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:07:32.4435801Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:07:32.1779529Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageizw.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageizw.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageizw.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageizw.queue.core.windows.net/\",\"table\":\"https://functionswinstorageizw.table.core.windows.net/\",\"file\":\"https://functionswinstorageizw.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-48jb/providers/Microsoft.Storage/storageAccounts/funcacastotorage48jb\",\"name\":\"funcacastotorage48jb\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2025-11-17T18:14:36.6488757Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2025-11-17T18:14:36.5707465Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorage48jb.dfs.core.windows.net/\",\"web\":\"https://funcacastotorage48jb.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorage48jb.blob.core.windows.net/\",\"queue\":\"https://funcacastotorage48jb.queue.core.windows.net/\",\"table\":\"https://funcacastotorage48jb.table.core.windows.net/\",\"file\":\"https://funcacastotorage48jb.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaw8x9/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "535" ], - "x-ms-client-request-id": [ "11f2f21f-7a4e-4861-96b7-af584fed7ab0" ], + "x-ms-unique-id": [ "506" ], + "x-ms-client-request-id": [ "271aafba-7dde-49fe-9dc2-e42f128876c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14461,16 +14460,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e71b8c17-51b4-427d-a20b-7b55d8a8db9c" ], + "x-ms-request-id": [ "63f99517-ff4f-416f-96ba-7219c6409785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c2aedfa1-11f3-49f6-9e7f-bbbdf05d784e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/03c08731-af02-4745-a312-533c1767b018" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "db58f279-e9ac-4bd6-a61b-a9f52e61ab38" ], - "x-ms-routing-request-id": [ "WESTUS2:20251117T184757Z:db58f279-e9ac-4bd6-a61b-a9f52e61ab38" ], + "x-ms-correlation-request-id": [ "db97d62d-5b02-46b1-9c71-1e0d83e6acbe" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015929Z:db97d62d-5b02-46b1-9c71-1e0d83e6acbe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02E6C540B3F84AB5AF05DA437E115C50 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:47:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FF5EC20A41A438E872A43C46EDE4D55 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -14481,10 +14480,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-w8x9?api-version=2015-05-01+12": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-3wro?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-w8x9?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Insights/components/Functions-Remove-FlexPlan-3wro?api-version=2015-05-01", "Content": "{\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -14504,30 +14503,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/fcd604a6-a56f-45d0-a840-e701d14119ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/60d5960f-022a-417e-b8bc-1aa493237640" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "4cd546a3-ac12-47a3-ad24-a691c3b79611" ], - "x-ms-correlation-request-id": [ "4cd546a3-ac12-47a3-ad24-a691c3b79611" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184813Z:4cd546a3-ac12-47a3-ad24-a691c3b79611" ], + "x-ms-request-id": [ "eb8b4a11-fa7c-437c-896a-0c3a78d5a50b" ], + "x-ms-correlation-request-id": [ "eb8b4a11-fa7c-437c-896a-0c3a78d5a50b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T015943Z:eb8b4a11-fa7c-437c-896a-0c3a78d5a50b" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5D9A30CA4FC4C4FAF98DFE69ADD7C15 Ref B: MWH011020807031 Ref C: 2025-11-17T18:47:57Z" ], - "Date": [ "Mon, 17 Nov 2025 18:48:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FEF02310E0C443DD8DAEB3E6FF3F1473 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:29Z" ], + "Date": [ "Sat, 28 Mar 2026 01:59:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1636" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"06045784-0000-0200-0000-691b6dec0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/microsoft.insights/components/Functions-Remove-FlexPlan-w8x9\",\r\n \"name\": \"Functions-Remove-FlexPlan-w8x9\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Remove-FlexPlan-w8x9\",\r\n \"AppId\": \"bf42ec3d-a5aa-41f7-824f-4a37f251caaf\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"26b2a219-194b-4997-b914-f80592d3845e\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Remove-FlexPlan-w8x9\",\r\n \"CreationDate\": \"2025-11-17T18:48:00.5261327+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-w8x9_bf42ec3d-a5aa-41f7-824f-4a37f251caaf_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-w8x9-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"8300e1a4-0000-0200-0000-69c7360f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Remove-FlexPlan-3wro\",\r\n \"name\": \"Functions-Remove-FlexPlan-3wro\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Remove-FlexPlan-3wro\",\r\n \"AppId\": \"0d7f65d7-04dc-443f-88f5-dde336f6f137\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"885e05f8-091d-4ba0-9418-80f36c28cfad\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Remove-FlexPlan-3wro\",\r\n \"CreationDate\": \"2026-03-28T01:59:31.5079707+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-3wro_0d7f65d7-04dc-443f-88f5-dde336f6f137_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-3wro-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01+13": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsremoveflexplanw8x9-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"functionAppConfig\": {\r\n \"deployment\": {\r\n \"storage\": {\r\n \"authentication\": {\r\n \"type\": \"StorageAccountConnectionString\",\r\n \"storageAccountConnectionStringName\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\"\r\n },\r\n \"type\": \"blobContainer\",\r\n \"value\": \"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsremoveflexplan3wro-0000000\"\r\n }\r\n },\r\n \"runtime\": {\r\n \"name\": \"powershell\",\r\n \"version\": \"7.4\"\r\n },\r\n \"scaleAndConcurrency\": {\r\n \"maximumInstanceCount\": 100,\r\n \"instanceMemoryMB\": 2048\r\n }\r\n },\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\r\n \"reserved\": false,\r\n \"isXenon\": false,\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DEPLOYMENT_STORAGE_CONNECTION_STRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -14541,43 +14540,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F2BC4FFDD5\"" ], + "ETag": [ "\"1DCBE568D413CC0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e6bb167-fca0-49e4-892d-b64a916c80a1" ], + "x-ms-request-id": [ "fcbdb447-f3da-4929-a4d6-c5714ce13491" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/cb61d0f7-b309-4fbd-b724-1252bc13c381" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/aca64037-52e2-4f53-8489-c3e78d6b31b5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "151f7158-d0ad-435f-9fc1-7ebd5251cbde" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184837Z:151f7158-d0ad-435f-9fc1-7ebd5251cbde" ], + "x-ms-correlation-request-id": [ "10868500-b864-454b-ab6b-8be3c406545b" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020007Z:10868500-b864-454b-ab6b-8be3c406545b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DC6BCF0BD821458AB2457B00D9F23E0E Ref B: MWH011020807031 Ref C: 2025-11-17T18:48:13Z" ], - "Date": [ "Mon, 17 Nov 2025 18:48:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19B5F807A8B749979339C37437B745F2 Ref B: MWH011020809062 Ref C: 2026-03-28T01:59:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9556" ], + "Content-Length": [ "9729" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9\",\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Remove-FlexPlan-w8x9\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:48:15.7\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsremoveflexplanw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-w8x9\\\\$Functions-Remove-FlexPlan-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro\",\"name\":\"Functions-Remove-FlexPlan-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"eastasia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Remove-FlexPlan-3wro\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\",\"functions-remove-flexplan-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:59:45.6233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsremoveflexplan3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-3wro\\\\$Functions-Remove-FlexPlan-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01+14": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "538" ], - "x-ms-client-request-id": [ "67541367-ac8b-40c6-899b-168ed61fea11" ], + "x-ms-unique-id": [ "509" ], + "x-ms-client-request-id": [ "bfc9b3e4-c2ff-4b25-8307-796c321445d6" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -14587,42 +14586,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F2C83E4AE0\"" ], + "ETag": [ "1DCBE56998B9980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f835a3c6-9e66-4198-8786-d8b8fc773cfb" ], + "x-ms-request-id": [ "83cb1b48-7b98-4c83-aead-362d303fc34e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b99ddb7-92b1-4df5-9787-b5f7c2bb6512" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184907Z:5b99ddb7-92b1-4df5-9787-b5f7c2bb6512" ], + "x-ms-correlation-request-id": [ "60d5a962-f40e-4feb-86f2-621f5959bd53" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020037Z:60d5a962-f40e-4feb-86f2-621f5959bd53" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B524BB3E8BAE45CFA7E9158A26D53794 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E480CA7554AE4972A9C6C5595F936681 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9523" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9\",\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Remove-FlexPlan-w8x9\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:48:36.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsremoveflexplanw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-w8x9\\\\$Functions-Remove-FlexPlan-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro\",\"name\":\"Functions-Remove-FlexPlan-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Remove-FlexPlan-3wro\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\",\"functions-remove-flexplan-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:00:06.68\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsremoveflexplan3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-3wro\\\\$Functions-Remove-FlexPlan-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01+15": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "539" ], - "x-ms-client-request-id": [ "b36e556b-caf4-4dbe-937d-5a3fe1e99c52" ], + "x-ms-unique-id": [ "510" ], + "x-ms-client-request-id": [ "f7abc294-a3a7-40c8-9131-c09bd5f08bde" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14633,42 +14632,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F2C83E4AE0\"" ], + "ETag": [ "1DCBE56998B9980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7495750c-f78f-4ce1-9fe0-740f37fd5925" ], + "x-ms-request-id": [ "afa6d89d-9c61-411c-b48c-6ea22090e913" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fef13ba8-f103-412c-b0ca-1d59402d25fb" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184907Z:fef13ba8-f103-412c-b0ca-1d59402d25fb" ], + "x-ms-correlation-request-id": [ "9751bcc6-14c0-462e-aa2a-5b145cf445cb" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020038Z:9751bcc6-14c0-462e-aa2a-5b145cf445cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D44DF7097E1840D9AB7598D9278E2B9D Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:07Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 998B14CA013A4DC3AB345866807747E6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9523" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9\",\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Remove-FlexPlan-w8x9\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:48:36.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsremoveflexplanw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-w8x9\\\\$Functions-Remove-FlexPlan-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro\",\"name\":\"Functions-Remove-FlexPlan-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Remove-FlexPlan-3wro\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\",\"functions-remove-flexplan-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:00:06.68\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsremoveflexplan3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-3wro\\\\$Functions-Remove-FlexPlan-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "540" ], - "x-ms-client-request-id": [ "6126eb04-98d0-4937-9c66-001c022d571c" ], + "x-ms-unique-id": [ "511" ], + "x-ms-client-request-id": [ "68d3c784-fd2d-4b2b-b38f-ac8be2bca8cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14680,40 +14679,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bb893f4b-ad43-4fef-a6f5-cf7c85ea86c8" ], + "x-ms-request-id": [ "23cfa152-6908-4110-9502-ccc23800ba86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/2bf3380b-6509-4431-ba7f-1e3b2b7c5042" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/736d8796-52b5-42f8-a712-4b76c1869c70" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "92bbef05-b24c-4c93-9d50-f6f51d400841" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184908Z:92bbef05-b24c-4c93-9d50-f6f51d400841" ], + "x-ms-correlation-request-id": [ "5f2b40da-5029-4323-8106-80b73b10dec2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020038Z:5f2b40da-5029-4323-8106-80b73b10dec2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7FAEFE6945445748AE32BDD4E5CD28A Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 402CEEBC61734BF7AEBC0D00A9BDA93C Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "541" ], - "x-ms-client-request-id": [ "5d8e0c26-56d1-4c15-b9ff-e10b5e29d63c" ], + "x-ms-unique-id": [ "512" ], + "x-ms-client-request-id": [ "8025c517-9caf-4c28-affd-8449a4c7b14f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14725,41 +14724,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "78ba3b9a-1cdc-4283-a55b-7a02df46bf84" ], + "x-ms-request-id": [ "c751fd22-dd9c-45c0-870a-06cb7e4237da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/715a959d-0257-4319-9b53-3007eaa47fae" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "09c8aeb8-7a0a-4585-88eb-333045e00968" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184908Z:09c8aeb8-7a0a-4585-88eb-333045e00968" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3ee09ac0-03db-49ac-bdd8-69c9a316c7d7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "75a95ece-2583-4b45-aa43-658d1869d1d2" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020039Z:75a95ece-2583-4b45-aa43-658d1869d1d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0966876F5D45457F81A9B264281FD48D Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:08Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B02B8A2A3264E08B520852304B3C5E9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/web\",\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/web\",\"name\":\"Functions-Remove-FlexPlan-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+18": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "542" ], - "x-ms-client-request-id": [ "b71841c1-c5f5-4c50-abc9-0e2ab670aa72" ], + "x-ms-unique-id": [ "513" ], + "x-ms-client-request-id": [ "21417007-11f6-4a0d-b310-cd36254a3f03" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14771,40 +14770,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6936177a-793f-45c5-aa35-40451d2a431c" ], + "x-ms-request-id": [ "92e295b9-c886-4c4e-826d-8f0eb88d1430" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d3f660f7-0e58-4e27-a2f1-327a8b42a720" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184909Z:d3f660f7-0e58-4e27-a2f1-327a8b42a720" ], + "x-ms-correlation-request-id": [ "e99aa4a7-f50b-41a4-aa72-0f4be87c680c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020039Z:e99aa4a7-f50b-41a4-aa72-0f4be87c680c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F1DDA56045E4627B540BCF2144656E7 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24A303740F014F719725C5A128FE9698 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52914,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52914\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:47:21.56\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68105,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68105\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:58:53.5533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01+19": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "543" ], - "x-ms-client-request-id": [ "be3c5620-e713-4f8f-840f-8cd1a63936a9" ], + "x-ms-unique-id": [ "514" ], + "x-ms-client-request-id": [ "f012399c-4302-47bc-b461-e843951fdbc4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14815,42 +14814,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F2C83E4AE0\"" ], + "ETag": [ "1DCBE56998B9980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "21c52c7a-4b66-4f4e-b3b0-0923574fcf0d" ], + "x-ms-request-id": [ "6d1f56de-d305-4219-9614-523826d68d2f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37a250f1-50ff-48a9-9a4a-b88d86235367" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184909Z:37a250f1-50ff-48a9-9a4a-b88d86235367" ], + "x-ms-correlation-request-id": [ "d61c950c-4bec-4bfd-9664-19850e4a12c8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020040Z:d61c950c-4bec-4bfd-9664-19850e4a12c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E74055A7D084ECB969FE9B4BFD301A6 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:09Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B46FE12B195243FCB7711B7E410437F1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "9534" ], + "Content-Length": [ "9523" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9\",\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\"],\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace/sites/Functions-Remove-FlexPlan-w8x9\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-w8x9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-w8x9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2025-11-17T18:48:36.75\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaw8x9.blob.core.windows.net/app-package-functionsremoveflexplanw8x9-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-w8x9\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-w8x9\\\\$Functions-Remove-FlexPlan-w8x9\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"defaultHostName\":\"functions-remove-flexplan-w8x9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs\",\"inFlightFeatures\":[\"SiteContainers\",\"RouteGeoCapacityClientTrafficToV2\",\"RouteOperationClientTrafficToV2\",\"RouteGeoPlanClientTrafficToV2\",\"RouteGeoSourceControlKeyClientTrafficToV2\",\"RouteGeoUserClientTrafficToV2\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro\",\"name\":\"Functions-Remove-FlexPlan-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Functions-Remove-FlexPlan-3wro\",\"state\":\"Running\",\"hostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\"],\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"selfLink\":\"https://waws-prod-hk1-057.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace/sites/Functions-Remove-FlexPlan-3wro\",\"repositorySiteName\":\"Functions-Remove-FlexPlan-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-remove-flexplan-3wro.azurewebsites.net\",\"functions-remove-flexplan-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-remove-flexplan-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:00:06.68\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-functionsremoveflexplan3wro-0000000\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Functions-Remove-FlexPlan-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.86\",\"possibleInboundIpAddresses\":\"20.205.69.86\",\"inboundIpv6Address\":\"2603:1040:207:3::41f\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41f\",\"ftpUsername\":\"Functions-Remove-FlexPlan-3wro\\\\$Functions-Remove-FlexPlan-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-057.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.205.69.86\",\"possibleOutboundIpAddresses\":\"20.187.161.206,20.24.120.5,20.24.120.33,20.24.122.12,20.24.122.25,20.24.122.143,20.24.240.207,20.255.205.96,20.255.205.114,20.255.205.124,20.255.205.183,20.255.205.227,20.255.205.254,20.255.206.65,20.255.206.95,20.255.206.118,20.255.207.167,20.2.56.138,20.2.57.209,20.2.59.117,20.2.60.251,20.2.62.72,20.2.62.109,20.2.62.214,20.2.63.131,20.6.147.100,20.24.125.45,20.24.125.117,20.239.124.23,20.24.240.54,20.205.69.86\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1d2,2603:1040:204:3::1d3,2603:1040:204:3::1d5,2603:1040:204:3::1d8,2603:1040:204:3::1d9,2603:1040:204:3::1db,2603:1040:204:3::1a6,2603:1040:204:3::1a8,2603:1040:204:3::1aa,2603:1040:204:3::1ac,2603:1040:204:3::1ae,2603:1040:204:3::1b0,2603:1040:204:3::1b1,2603:1040:204:3::1b2,2603:1040:204:3::1b3,2603:1040:204:3::1b4,2603:1040:204:3::1b6,2603:1040:204:3::1b8,2603:1040:204:3::1ba,2603:1040:204:3::1bc,2603:1040:204:3::1be,2603:1040:204:3::1c0,2603:1040:204:3::1c2,2603:1040:204:3::1c4,2603:1040:204:3::1c6,2603:1040:204:3::1c8,2603:1040:204:3::1ca,2603:1040:204:3::1cc,2603:1040:204:3::1cd,2603:1040:204:3::1cf,2603:1040:207:3::41f,2603:10e1:100:2::14cd:4556,2603:1040:207:2::419,2603:10e1:100:2::14cd:4609\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-057\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"functions-remove-flexplan-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "544" ], - "x-ms-client-request-id": [ "1f0edc67-54c5-48dd-aacc-e6110b08015c" ], + "x-ms-unique-id": [ "515" ], + "x-ms-client-request-id": [ "9004919c-2380-4297-bd89-6ad1b80afcbf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14862,40 +14861,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0b29d076-43a0-403c-a185-cea199d62e97" ], + "x-ms-request-id": [ "c5ebb7e5-adfe-4e11-86fb-dce8a675b4f4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/ecc08cba-850c-4a3c-8cbf-eef511aa9ad8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/3e5a94f6-04ad-449d-8e14-30474b084c55" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "16e1660c-36ae-4d65-981f-3ce4c1b9cc15" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184910Z:16e1660c-36ae-4d65-981f-3ce4c1b9cc15" ], + "x-ms-correlation-request-id": [ "67c5f65f-93c2-4f6a-adfb-2c0feebee358" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020041Z:67c5f65f-93c2-4f6a-adfb-2c0feebee358" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB11453589EF4A7FB30A26F44564BE82 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FDE4C149CEE4FC58E6A36F1DD063498 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "545" ], - "x-ms-client-request-id": [ "f6bb7223-5974-4ad0-afeb-ab6f2d5af30b" ], + "x-ms-unique-id": [ "516" ], + "x-ms-client-request-id": [ "42633745-1e70-4c91-a7ac-0a8ece81ddae" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14907,41 +14906,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdc00696-ca38-4a6d-a9a4-1dd19470882f" ], + "x-ms-request-id": [ "c65a3590-3e25-45f1-9294-432ae84aa0a3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4d33040d-4963-446d-a05d-57b1b97cf895" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2b0e9c3f-9b1b-47a8-b2ef-c9932befc836" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184910Z:2b0e9c3f-9b1b-47a8-b2ef-c9932befc836" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/84778359-ee2f-455f-9c9c-5f23d714dd3a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "dbb9d712-c63f-4acb-8ae6-ff6a54956540" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020041Z:dbb9d712-c63f-4acb-8ae6-ff6a54956540" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE15C7018B48472F94BAB454528FF594 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF3F2B87F98D41F591ADF3DB9218865A Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4161" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9/config/web\",\"name\":\"Functions-Remove-FlexPlan-w8x9\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro/config/web\",\"name\":\"Functions-Remove-FlexPlan-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+22": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "546" ], - "x-ms-client-request-id": [ "b5e0d080-5832-4ee8-9bb1-d57a47104e82" ], + "x-ms-unique-id": [ "517" ], + "x-ms-client-request-id": [ "e69c8abb-6778-4b3d-b768-18ad3187f668" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14953,40 +14952,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36617494-24d6-4aa4-b628-7c805e4ff30a" ], + "x-ms-request-id": [ "89af59db-4ec0-4ff9-830b-499bfb9f146c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1fa17158-56fc-4062-be60-5036ebe791e8" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184911Z:1fa17158-56fc-4062-be60-5036ebe791e8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "75f3fc4c-f633-4119-905c-a1b2eb9b7aaf" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020042Z:75f3fc4c-f633-4119-905c-a1b2eb9b7aaf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 427387D91DA34E5084F0928205BD91B1 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:10Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C003B9015794909AC953750719A9437 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000\",\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":52914,\"name\":\"ASP-FunctionsFlexRGw8x9-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-4cf6d9242f3f176bb041460e474b5981ef0e11a0b53a89abc49da4a3d007475b-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-w8x9\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_52914\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2025-11-17T18:47:21.56\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000\",\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":68105,\"name\":\"ASP-FunctionsFlexRG3wro-0000\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-1161e46f1d820528686ef4d70ddb2bb9239a8a4a3acc7e133301498543b5fcfc-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-057_68105\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:58:53.5533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01+23": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?deleteEmptyServerFarm=True\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "547" ], - "x-ms-client-request-id": [ "d01ea70f-9d52-404b-ba3f-35f8e18bf15d" ], + "x-ms-unique-id": [ "518" ], + "x-ms-client-request-id": [ "f1bb6152-7881-4f24-952a-df2471c6b658" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -14997,20 +14996,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DC57F2C83E4AE0\"" ], + "ETag": [ "\"1DCBE56998B9980\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b637c394-d13f-4621-ad75-9e5739242bb6" ], + "x-ms-request-id": [ "7cb9facf-5c8c-45a9-8326-b194cb49f041" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/0fe8f0a9-585b-432b-91d6-fa98960b619d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/b7266c9b-5ab2-4982-b087-01fb2b068bef" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "553d70d8-d5a9-477d-bea1-12d6f1b2174a" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184929Z:553d70d8-d5a9-477d-bea1-12d6f1b2174a" ], + "x-ms-correlation-request-id": [ "37e4b77d-1945-4b59-873e-996b480f7e63" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020056Z:37e4b77d-1945-4b59-873e-996b480f7e63" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B01AF6B142144B578ED5F079DF6AECF9 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:11Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7F0BA0CF6D6429EB5379D239C1D0579 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -15020,19 +15019,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01+24": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "548" ], - "x-ms-client-request-id": [ "eb354248-5c2d-4847-bb4b-7084dd0843de" ], + "x-ms-unique-id": [ "519" ], + "x-ms-client-request-id": [ "4968df83-655e-40ee-a68c-652323785608" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -15044,37 +15043,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "adb24370-1bf1-443d-9bd7-aad53e0377dc" ], - "x-ms-correlation-request-id": [ "adb24370-1bf1-443d-9bd7-aad53e0377dc" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184929Z:adb24370-1bf1-443d-9bd7-aad53e0377dc" ], + "x-ms-request-id": [ "d983a857-e787-44fe-91f6-61c3fc4fec11" ], + "x-ms-correlation-request-id": [ "d983a857-e787-44fe-91f6-61c3fc4fec11" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020057Z:d983a857-e787-44fe-91f6-61c3fc4fec11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9B2C938E7BB45178C6B0DFD74230190 Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:29Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06BFF34024C64C8693AD928DAB7A26C6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:00:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:00:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "244" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Remove-FlexPlan-w8x9\u0027 under resource group \u0027Functions-Flex-RG-w8x9\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Functions-Remove-FlexPlan-3wro\u0027 under resource group \u0027Functions-Flex-RG-3wro\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01+25": { + "New-AzFunctionApp - Flex Consumption+[NoContext]+Removes Flex Consumption app and deletes the plan automatically+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-w8x9/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGw8x9-0000?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-0000?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "549" ], - "x-ms-client-request-id": [ "b6c16ca9-82f1-46ef-849b-7734c600d779" ], + "x-ms-unique-id": [ "520" ], + "x-ms-client-request-id": [ "c6fc9947-3533-4812-8234-b9a5813a2aae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.3.0", "PSVersion/v7.5.4", "Az.Functions/1.0.1" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -15086,23 +15085,22 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "a7f1214f-70ee-463e-a2e0-fd4a7fb0bfbe" ], - "x-ms-correlation-request-id": [ "a7f1214f-70ee-463e-a2e0-fd4a7fb0bfbe" ], - "x-ms-routing-request-id": [ "EASTASIA:20251117T184940Z:a7f1214f-70ee-463e-a2e0-fd4a7fb0bfbe" ], + "x-ms-request-id": [ "dd941860-0b24-49e8-b08a-063ba1a3de37" ], + "x-ms-correlation-request-id": [ "dd941860-0b24-49e8-b08a-063ba1a3de37" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020107Z:dd941860-0b24-49e8-b08a-063ba1a3de37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 38A6A56B96E34F59A6DAC9776076C6ED Ref B: MWH011020807031 Ref C: 2025-11-17T18:49:39Z" ], - "Date": [ "Mon, 17 Nov 2025 18:49:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7C01CAB7B32C4ADB88CDEE1E9F3F49BD Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "248" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRGw8x9-0000\u0027 under resource group \u0027Functions-Flex-RG-w8x9\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/ASP-FunctionsFlexRG3wro-0000\u0027 under resource group \u0027Functions-Flex-RG-3wro\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } } } - diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 index 5d853a7a7850..9cfdcd1c2316 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -16,7 +16,7 @@ $env:FunctionsTestMode = $true # Please note that these tests can run in Playback mode only when executed locally. They fail in the pipeline due to the environment. # However, they can be used for local deployment in Playback mode. # Describe 'New-AzFunctionApp - Flex Consumption' { -Describe 'New-AzFunctionApp - Flex Consumption' -Tag 'LiveOnly' { +Describe 'New-AzFunctionApp - Flex Consumption' { BeforeAll { diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json index 45c6ce974c6c..71ee85c6f87d 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-CustomImage-4ps815eax3\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomImage-zv4osq75px\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ef4377a-635b-465a-9163-4747aedb972d" ], + "x-ms-request-id": [ "7e82736b-e590-411f-9c0f-0e14418ed2af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/4a572908-12c5-4a59-8bad-6b10768ac136" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/f87a2a0a-049c-4f4e-bd1d-092dd0fe580a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8a109bf-1121-4f25-bdbe-063e701bfc83" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001432Z:c8a109bf-1121-4f25-bdbe-063e701bfc83" ], + "x-ms-correlation-request-id": [ "ace26904-b1c9-47bb-8a64-94435e6f8414" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020108Z:ace26904-b1c9-47bb-8a64-94435e6f8414" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CDBC5849A59643D5AE4413044D8549FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38F2A929ED424D9A982214FA81D50D86 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "166" ], - "x-ms-client-request-id": [ "e9cce825-4521-4881-ba52-9e8a706958b8" ], + "x-ms-unique-id": [ "522" ], + "x-ms-client-request-id": [ "b15fd615-4371-4b1d-b63f-c5e6306f6b27" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6ecbd4a5-0b2f-4e89-870e-273fb14aac79", "3815a5a9-c9e9-4878-aa53-bb6e39443593" ], + "x-ms-original-request-ids": [ "d12d6cc5-cf94-4239-8d73-00c413d1ae44", "9e8bd3c4-b8b2-4cd4-b71f-ae1aceb8359f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "f2bb14db-7a2b-464d-8e0f-d05575161016" ], - "x-ms-correlation-request-id": [ "f2bb14db-7a2b-464d-8e0f-d05575161016" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001433Z:f2bb14db-7a2b-464d-8e0f-d05575161016" ], + "x-ms-request-id": [ "75165d6e-5dcf-45f7-b8ed-8e4d8d447707" ], + "x-ms-correlation-request-id": [ "75165d6e-5dcf-45f7-b8ed-8e4d8d447707" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020109Z:75165d6e-5dcf-45f7-b8ed-8e4d8d447707" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83C2F0E5CD054C8782260453E915D5E0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 751C3B4D413344FC8E0969A746563E17 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8766" ], + "Content-Length": [ "12078" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "167" ], - "x-ms-client-request-id": [ "3f5393ee-e639-4ad4-8a84-047805c6a977" ], + "x-ms-unique-id": [ "523" ], + "x-ms-client-request-id": [ "c8fff63d-64d7-43f4-a6e0-605c88bfd4fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +108,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5808b58a-8828-44fd-92f7-79a0d89476e4" ], + "x-ms-request-id": [ "dea94ee1-3a02-4861-8e12-87a56f002746" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4bdd8b62-61f9-486c-971b-648383aa51be" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:4bdd8b62-61f9-486c-971b-648383aa51be" ], + "x-ms-correlation-request-id": [ "e1d9953a-ba18-4669-998b-ec23c6d229c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020109Z:e1d9953a-ba18-4669-998b-ec23c6d229c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B201C5C257264F208554BC5715A03E38 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B2DAFA88EA74659AD767AF207972EE2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "168" ], - "x-ms-client-request-id": [ "f818436b-f8ba-4109-a906-a90cca751713" ], + "x-ms-unique-id": [ "524" ], + "x-ms-client-request-id": [ "c121c643-0d72-4c9f-a80c-f356a5584e1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +153,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be97f300-77aa-4dae-87ba-a2257d3276d4" ], + "x-ms-request-id": [ "3d08b96d-631d-4a74-bf68-405e2e9a87f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9a496cbe-45a1-4309-bb48-35c57e2b2bd2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:9a496cbe-45a1-4309-bb48-35c57e2b2bd2" ], + "x-ms-correlation-request-id": [ "ce204ec3-ac45-41c5-84a6-d9d969809cde" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020109Z:ce204ec3-ac45-41c5-84a6-d9d969809cde" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B49B3DF996F14C29B0ACE7E5ACF81604 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1784" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "525" ], + "x-ms-client-request-id": [ "207a6f3c-ba46-4d93-82f2-124a86b359e3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "30f2543e-5b55-4d28-a061-c6c5df210f72" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "8a64c63b-73b1-4db0-9741-ec36c3b5f35b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020109Z:8a64c63b-73b1-4db0-9741-ec36c3b5f35b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 47C1E7557672460E9F418146544290E3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:09 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1748" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "526" ], + "x-ms-client-request-id": [ "82f408f4-f68a-4a5c-9f1f-33c195535a20" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "199e62c2-f31c-494c-913e-d569b1b0f482" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "3656f5b0-e21c-462e-9cfa-527c01eda917" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020110Z:3656f5b0-e21c-462e-9cfa-527c01eda917" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3723F33DD6AD4C45AE142AA0EEF37A39 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 59F665CA1E1547D5B3CA8AA32EB16C0E Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "169" ], - "x-ms-client-request-id": [ "25e49924-c74c-4cb1-ad77-53832076d755" ], + "x-ms-unique-id": [ "527" ], + "x-ms-client-request-id": [ "a9f6ab48-ae7f-45f2-870f-716926d19617" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +288,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0b3068cb-a8ff-4e37-aebd-a845d9d0f232" ], + "x-ms-request-id": [ "f401f2dd-4519-4379-a20c-42fd02dc1516" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "73e141eb-3a4c-415d-9f89-4e7d5532e793" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:73e141eb-3a4c-415d-9f89-4e7d5532e793" ], + "x-ms-correlation-request-id": [ "35d4beca-3a39-4d31-9a0f-6065624e52cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020110Z:35d4beca-3a39-4d31-9a0f-6065624e52cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A32D93A101B245B2B2713220D0C91C4C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8711F2E6DF71416BB5DBB54739350154 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "170" ], - "x-ms-client-request-id": [ "72d92005-3d17-43b3-b149-a366d642d329" ], + "x-ms-unique-id": [ "528" ], + "x-ms-client-request-id": [ "5a67c4eb-337d-47c7-bdb1-1a9814aa611e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +333,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a30a2158-3e08-42b7-b85a-2cef0c5a07e8" ], + "x-ms-request-id": [ "23e83ccc-2bc5-4727-b18f-059fc0abcf73" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bacd8b5e-e416-4ea2-9234-1a4a4e0eb920" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001433Z:bacd8b5e-e416-4ea2-9234-1a4a4e0eb920" ], + "x-ms-correlation-request-id": [ "9604ce94-2bc1-47cd-9995-aa82d5d7c3fc" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020110Z:9604ce94-2bc1-47cd-9995-aa82d5d7c3fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ADCEDDF97CCD4216A46789619B7C2CAB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6271DD6FC2634AEDB3BC791BF175B713 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "171" ], - "x-ms-client-request-id": [ "bbbccf08-1c4c-468f-a2a3-6cdb3804de04" ], + "x-ms-unique-id": [ "529" ], + "x-ms-client-request-id": [ "dc722f97-7371-44fa-a6ed-557e0f686cb4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -288,40 +378,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0cff892-00e8-48e7-ba1b-83988d587a4f" ], + "x-ms-request-id": [ "a82d1775-7305-4f94-8409-fea3170d87f3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a3360191-f65f-47cf-a510-2d30d67b52e6" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T001434Z:a3360191-f65f-47cf-a510-2d30d67b52e6" ], + "x-ms-correlation-request-id": [ "9c9b27cd-0757-4b6e-bf44-911d2845c744" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020110Z:9c9b27cd-0757-4b6e-bf44-911d2845c744" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BDC5930ADDE44C6BEF12C60E2E14F9D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CBD8B778558947C893282F4673057CEE Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1696" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":7,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "172" ], - "x-ms-client-request-id": [ "10bc4a3d-3d5a-4592-bedf-d53d42e5f020" ], + "x-ms-unique-id": [ "530" ], + "x-ms-client-request-id": [ "36fcda63-95cc-4efb-b83e-113d88aa5091" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -332,40 +422,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "80dc9325-9a3f-4952-923c-74bf6e7e1be6", "34912a64-3375-43ba-bb1f-8a082136dada", "a19e25f2-93c2-4631-b7c7-87d2d9d4a7d4" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "bed05be6-a123-4308-92cf-525e70f2faa7" ], - "x-ms-correlation-request-id": [ "bed05be6-a123-4308-92cf-525e70f2faa7" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001434Z:bed05be6-a123-4308-92cf-525e70f2faa7" ], + "x-ms-original-request-ids": [ "23861e99-67b5-476d-a107-a656f8765334", "66c84a78-6f08-4afe-a8fb-3026a941dbcc", "6a8215f7-456d-44fa-87c7-cc98ffed2953" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "e4b67a81-abe3-46d9-9366-7a1ee0558cc4" ], + "x-ms-correlation-request-id": [ "e4b67a81-abe3-46d9-9366-7a1ee0558cc4" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020111Z:e4b67a81-abe3-46d9-9366-7a1ee0558cc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 79CC66526A0D45839DD83F392A415110 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 297750DCD935439AB83B5554BEC68185 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "173" ], - "x-ms-client-request-id": [ "222f8de2-682d-4422-9c29-d3898912c0fa" ], + "x-ms-unique-id": [ "531" ], + "x-ms-client-request-id": [ "73744f16-5a7d-4543-8115-1e23a569b71b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -376,16 +466,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "2d5cd550-e32f-4e8b-8b42-9ac037ef5b1e" ], + "x-ms-request-id": [ "78601710-ebdc-470d-b5c3-f5e8bc3c9d2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20e0fb1e-7bae-4fd7-a66d-f79869ce2942" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59b73aca-c337-4da3-956c-2e1ae1caff41" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d9a9d58d-70a1-44cb-8c8f-577404f31298" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001434Z:d9a9d58d-70a1-44cb-8c8f-577404f31298" ], + "x-ms-correlation-request-id": [ "468e9d7c-51c3-407a-9815-537985e7aed7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020111Z:468e9d7c-51c3-407a-9815-537985e7aed7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6ACAE5975F8416099CCC2FBBB554FFB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3585A952CAC42429CE1559A1EAC3B8C Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -396,10 +486,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-CustomImage-4ps815eax3?api-version=2015-05-01+10": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Insights/components/Functions-CustomImage-zv4osq75px?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-CustomImage-4ps815eax3?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Insights/components/Functions-CustomImage-zv4osq75px?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -419,30 +509,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9521cfeb-5d3d-4c1e-aada-bdcf843cb730" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f384ca2d-5e72-4057-9385-186f6a2d6f81" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "9664a515-a6a6-432d-8618-9c43f82839d8" ], - "x-ms-correlation-request-id": [ "9664a515-a6a6-432d-8618-9c43f82839d8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001441Z:9664a515-a6a6-432d-8618-9c43f82839d8" ], + "x-ms-request-id": [ "30143131-f6cf-46be-a9ee-c970b975a9d1" ], + "x-ms-correlation-request-id": [ "30143131-f6cf-46be-a9ee-c970b975a9d1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020121Z:30143131-f6cf-46be-a9ee-c970b975a9d1" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BFAB9441EC16437A956CF33C1755B3C6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:14:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B21C9EBD5E6C4567B1BD950177110E87 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1664" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202943c-0000-0300-0000-69c47a710000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-CustomImage-4ps815eax3\",\r\n \"name\": \"Functions-CustomImage-4ps815eax3\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-4ps815eax3\",\r\n \"AppId\": \"05343c66-9cbf-4b65-ad79-6e07a5f9b887\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0a8fd25-6f5a-4920-a76f-0dc0ff656a13\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomImage-4ps815eax3\",\r\n \"CreationDate\": \"2026-03-26T00:14:35.5368194+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-4ps815eax3_05343c66-9cbf-4b65-ad79-6e07a5f9b887_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-4ps815eax3-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d036144-0000-0300-0000-69c736710000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/microsoft.insights/components/Functions-CustomImage-zv4osq75px\",\r\n \"name\": \"Functions-CustomImage-zv4osq75px\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomImage-zv4osq75px\",\r\n \"AppId\": \"0c221aef-1368-4fa9-8229-5f31cacf9498\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ab5ca594-dbec-4b95-b40e-e6d5386ac440\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomImage-zv4osq75px\",\r\n \"CreationDate\": \"2026-03-28T02:01:12.2113886+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-zv4osq75px_0c221aef-1368-4fa9-8229-5f31cacf9498_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-zv4osq75px-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux,container\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOCKER|divyag2411/test:customcontainer\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DOCKER_CUSTOM_IMAGE_NAME\",\r\n \"value\": \"divyag2411/test:customcontainer\"\r\n },\r\n {\r\n \"name\": \"FUNCTION_APP_EDIT_MODE\",\r\n \"value\": \"readOnly\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-4ps815eax3\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux,container\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOCKER|divyag2411/test:customcontainer\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"DOCKER_CUSTOM_IMAGE_NAME\",\r\n \"value\": \"divyag2411/test:customcontainer\"\r\n },\r\n {\r\n \"name\": \"FUNCTION_APP_EDIT_MODE\",\r\n \"value\": \"readOnly\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"false\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customimage-zv4osq75px\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -456,43 +546,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB58BD80C4B\"" ], + "ETag": [ "\"1DCBE56C77E176B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4dc0ba83-11c6-4aa1-9dd2-5617c15b0970" ], + "x-ms-request-id": [ "3a103e42-d8b1-497b-9d0b-c18641e1bcc8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae88e6ac-d9b0-462f-a2f2-0b24288f5bc0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/41e98efb-d24d-4832-90ce-4b96ac687957" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "2fd54de4-e760-421a-90ba-540255d15a95" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001504Z:2fd54de4-e760-421a-90ba-540255d15a95" ], + "x-ms-correlation-request-id": [ "4a13ea27-e709-48c3-81de-1aa95588f132" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020144Z:4a13ea27-e709-48c3-81de-1aa95588f132" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D60F18DB9164728BFB33C1237485EB2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:14:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 324BDDB65FF74531B1826BB39E591686 Ref B: MWH011020809062 Ref C: 2026-03-28T02:01:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:01:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8782" ], + "Content-Length": [ "8581" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:14:43.0066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-zv4osq75px\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-CustomImage-zv4osq75px\",\"repositorySiteName\":\"Functions-CustomImage-zv4osq75px\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\",\"functions-customimage-zv4osq75px.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-zv4osq75px.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:01:22.88\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-zv4osq75px\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-CustomImage-zv4osq75px\\\\$Functions-CustomImage-zv4osq75px\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "176" ], - "x-ms-client-request-id": [ "01144ee7-0962-4ce3-8da6-07dff3205f74" ], + "x-ms-unique-id": [ "534" ], + "x-ms-client-request-id": [ "05953d70-3568-4d11-9883-70bf6dd7d789" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -502,42 +592,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB59825764B" ], + "ETag": [ "1DCBE56D3516F6B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3926cb12-0654-4db5-b3ac-3d54d666ce8a" ], + "x-ms-request-id": [ "a17a32f2-e8bb-4231-bc98-6a3794c63332" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d3ca21ad-3449-4d66-87a5-f11f89f6ae73" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:d3ca21ad-3449-4d66-87a5-f11f89f6ae73" ], + "x-ms-correlation-request-id": [ "2e368a5c-403f-4e4c-a24a-e64ca7c25676" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020214Z:2e368a5c-403f-4e4c-a24a-e64ca7c25676" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88ABB99795D740268788CDB814C94F20 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6377CA2FAA4C4A01A8FB1BC1E74767B2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8616" ], + "Content-Length": [ "8420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-zv4osq75px\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-CustomImage-zv4osq75px\",\"repositorySiteName\":\"Functions-CustomImage-zv4osq75px\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\",\"functions-customimage-zv4osq75px.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-zv4osq75px.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:01:43.6066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-zv4osq75px\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-CustomImage-zv4osq75px\\\\$Functions-CustomImage-zv4osq75px\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "177" ], - "x-ms-client-request-id": [ "c32e67aa-515d-40e7-881e-e654f95443e3" ], + "x-ms-unique-id": [ "535" ], + "x-ms-client-request-id": [ "30fb98f8-c80c-438e-9991-d61705445888" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -548,42 +638,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB59825764B" ], + "ETag": [ "1DCBE56D3516F6B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "321327e4-e5e8-4ecc-baa1-94cf788716d0" ], + "x-ms-request-id": [ "3f8b29b3-7b06-4391-9086-c4de4a4fbf8e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a8d31ab5-9116-4b01-823d-74f4dac46eae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:a8d31ab5-9116-4b01-823d-74f4dac46eae" ], + "x-ms-correlation-request-id": [ "62ee5009-79ce-4d20-ae5d-46d6d70d9856" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020214Z:62ee5009-79ce-4d20-ae5d-46d6d70d9856" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7391106A66244BB98D37327B98CC33AE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8394BBE9DA14BC59028A18B9CD564DB Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8616" ], + "Content-Length": [ "8420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-zv4osq75px\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-CustomImage-zv4osq75px\",\"repositorySiteName\":\"Functions-CustomImage-zv4osq75px\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\",\"functions-customimage-zv4osq75px.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-zv4osq75px.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:01:43.6066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-zv4osq75px\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-CustomImage-zv4osq75px\\\\$Functions-CustomImage-zv4osq75px\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "178" ], - "x-ms-client-request-id": [ "7357af1a-5725-4a31-a54f-42be3a824b2f" ], + "x-ms-unique-id": [ "536" ], + "x-ms-client-request-id": [ "7e243677-4bd8-4b9e-86ad-07600586f58f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -595,40 +685,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "83bdd4ae-eb08-4645-975e-94fde9f1db21" ], + "x-ms-request-id": [ "2f06921c-06c0-4ac0-af84-8a7d254ab7bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dffff1db-c79d-4fdc-bf1d-3ba063f9c5c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9080458f-b0b9-4c4e-8550-1f5f3075c539" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a45878a9-a026-437b-bbcf-e9d86118795c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:a45878a9-a026-437b-bbcf-e9d86118795c" ], + "x-ms-correlation-request-id": [ "f9b97807-cd71-4819-b76f-6e922388abb4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020215Z:f9b97807-cd71-4819-b76f-6e922388abb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8839FB561CEB486E93638114EEF6520B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 998BBE439F0940519FB59C459513B46B Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:15Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-4ps815eax3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-zv4osq75px\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "179" ], - "x-ms-client-request-id": [ "bf37f099-ea4c-4fd6-b2af-c6e043180e3e" ], + "x-ms-unique-id": [ "537" ], + "x-ms-client-request-id": [ "e1812aa6-f31e-4aef-bbae-b3b19a4f820c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -640,41 +730,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42b57f2c-bb9d-481d-8b86-2c8f6fc3e3ef" ], + "x-ms-request-id": [ "5462344e-8973-4a02-a856-528f4632c86d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9801bc77-7c2a-471f-8550-3323919a44d3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1c5aea4-5f0a-45e9-af8a-2c13d6588b79" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "96385cb2-7cd6-414c-a948-793849c595f0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001535Z:96385cb2-7cd6-414c-a948-793849c595f0" ], + "x-ms-correlation-request-id": [ "a2b00bf9-d5f2-43f3-91b9-349151d55799" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020215Z:a2b00bf9-d5f2-43f3-91b9-349151d55799" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CD2EF5A265644E51A97FF31E5C358418 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB62DA49DABF4007A58425EC52F7C1E3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:15Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "180" ], - "x-ms-client-request-id": [ "1cc598c0-427a-421f-a800-97ab9741192b" ], + "x-ms-unique-id": [ "538" ], + "x-ms-client-request-id": [ "9b937c19-bfe4-4299-bb9d-fba853673473" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -685,42 +775,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB59825764B" ], + "ETag": [ "1DCBE56D3516F6B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19a227a6-3ec9-4c60-8f31-c1e7b406b0e1" ], + "x-ms-request-id": [ "0b6d15f6-0f92-46e9-b64d-2e53e26d2c2e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a5840a27-a522-4456-a846-2c0afb947bfe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:a5840a27-a522-4456-a846-2c0afb947bfe" ], + "x-ms-correlation-request-id": [ "90be1de5-f922-410d-8b38-43650d50d8e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020215Z:90be1de5-f922-410d-8b38-43650d50d8e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64221B32FCE04DA5A05F6C816CBAD996 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 075DB6BA9F7C4BB5BE3EC1403F2A88C6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:15Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:15 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8616" ], + "Content-Length": [ "8420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-zv4osq75px\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-CustomImage-zv4osq75px\",\"repositorySiteName\":\"Functions-CustomImage-zv4osq75px\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\",\"functions-customimage-zv4osq75px.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-zv4osq75px.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:01:43.6066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-zv4osq75px\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-CustomImage-zv4osq75px\\\\$Functions-CustomImage-zv4osq75px\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "181" ], - "x-ms-client-request-id": [ "b4fba4b2-daf8-4542-9a9b-a1c01f9462fe" ], + "x-ms-unique-id": [ "539" ], + "x-ms-client-request-id": [ "707cdcd5-d918-413a-8513-0d1db70a86d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -732,40 +822,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e2b4720a-c754-40e9-a8d5-aa512bd0815c" ], + "x-ms-request-id": [ "ce3f1170-2a27-4f98-bd31-9b0fc7b64821" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/638a0b1f-c01b-44ce-afbb-6e41857e1367" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a33ead59-b10f-46a5-98a0-81d48e5836e2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "6e5ba639-57b9-4839-a6ce-d8a1e4877115" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:6e5ba639-57b9-4839-a6ce-d8a1e4877115" ], + "x-ms-correlation-request-id": [ "c26aa5da-3b06-43e1-8fc4-8ff72e0c52b9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020216Z:c26aa5da-3b06-43e1-8fc4-8ff72e0c52b9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5B24B1CFA7A84336BDDBCAA1CC64B55F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D91690CDC6547668805F994D7A36A5E Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:15Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-4ps815eax3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-zv4osq75px\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "182" ], - "x-ms-client-request-id": [ "4374e37a-e245-4b06-b13f-728cbba1a60b" ], + "x-ms-unique-id": [ "540" ], + "x-ms-client-request-id": [ "7eb333ab-9f3c-4306-803e-c674547dcd5d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -777,41 +867,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "154e1997-8209-4a19-8b5f-d415ea0abb96" ], + "x-ms-request-id": [ "25a44199-e75e-491e-9d7b-ee534009a4dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f65be4ed-f6ba-4212-b2b0-68f65fbcf0cc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb521570-58af-47c2-8522-86bd22b33a7b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ba5271bd-c65f-40ec-8870-d3cf0da88fb3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:ba5271bd-c65f-40ec-8870-d3cf0da88fb3" ], + "x-ms-correlation-request-id": [ "b5acc9f7-92ab-4949-9913-de39628c9984" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020216Z:b5acc9f7-92ab-4949-9913-de39628c9984" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E93208973B574620A0463A96BE693647 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA6F5F32352F47F788A84BDF0376F667 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "183" ], - "x-ms-client-request-id": [ "721d2db0-03a5-4e9b-a370-4c9f62a40c4f" ], + "x-ms-unique-id": [ "541" ], + "x-ms-client-request-id": [ "f9f14a64-894b-4826-85d7-e7076a009987" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -822,42 +912,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB59825764B" ], + "ETag": [ "1DCBE56D3516F6B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "451eea07-66c0-46f4-ba3a-239f84ff1cdd" ], + "x-ms-request-id": [ "bfcf61fe-d78a-4983-8a29-669b59e8f9c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "389c3a95-4f04-4740-bfa1-238eaf41ae2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001536Z:389c3a95-4f04-4740-bfa1-238eaf41ae2f" ], + "x-ms-correlation-request-id": [ "20bbe03c-29f2-4a18-9f8d-fba46ad35313" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020216Z:20bbe03c-29f2-4a18-9f8d-fba46ad35313" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC115AFA065F4955A2D9C300A7B23EA0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB82F479FCC1449B93FA0C69B122551E Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:16 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8616" ], + "Content-Length": [ "8420" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-4ps815eax3\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-CustomImage-4ps815eax3\",\"repositorySiteName\":\"Functions-CustomImage-4ps815eax3\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-4ps815eax3.azurewebsites.net\",\"functions-customimage-4ps815eax3.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-4ps815eax3.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:15:04.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-4ps815eax3\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-CustomImage-4ps815eax3\\\\$Functions-CustomImage-4ps815eax3\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-customimage-4ps815eax3.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux,container\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomImage-zv4osq75px\",\"state\":\"Running\",\"hostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-CustomImage-zv4osq75px\",\"repositorySiteName\":\"Functions-CustomImage-zv4osq75px\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customimage-zv4osq75px.azurewebsites.net\",\"functions-customimage-zv4osq75px.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOCKER|divyag2411/test:customcontainer\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customimage-zv4osq75px.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:01:43.6066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomImage-zv4osq75px\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux,container\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-CustomImage-zv4osq75px\\\\$Functions-CustomImage-zv4osq75px\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-customimage-zv4osq75px.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "184" ], - "x-ms-client-request-id": [ "f5847c32-1f39-4b92-baea-a9eab29abf60" ], + "x-ms-unique-id": [ "542" ], + "x-ms-client-request-id": [ "669ae48c-64d3-417d-9a30-30b255e066cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -869,40 +959,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d00ed5a4-1346-4092-b901-9b2f636abb4c" ], + "x-ms-request-id": [ "f9d6dd0e-6b94-44f4-af2e-ca475abc8daa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07c14e3d-f1c8-439c-87d0-49e5ffd74226" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4eba4f1e-8152-4e5d-814d-2aa82a0dce7a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "64731a78-b550-4b5e-b0cf-fc9f4401e748" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001537Z:64731a78-b550-4b5e-b0cf-fc9f4401e748" ], + "x-ms-correlation-request-id": [ "8157dc7f-1660-42d4-a59b-c03da31ddd81" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020216Z:8157dc7f-1660-42d4-a59b-c03da31ddd81" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0337ED9550A44BEE93D47155166BF2CB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E8166B2878DA4A5E830C8F4A036F1DE6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1246" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-4ps815eax3\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"DOCKER_CUSTOM_IMAGE_NAME\":\"divyag2411/test:customcontainer\",\"FUNCTION_APP_EDIT_MODE\":\"readOnly\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"false\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customimage-zv4osq75px\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "185" ], - "x-ms-client-request-id": [ "45e13e51-815f-4656-9877-29c7b4f04d25" ], + "x-ms-unique-id": [ "543" ], + "x-ms-client-request-id": [ "3d52df16-f6e1-40bc-8482-46151eacfcaa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -914,41 +1004,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d084a9ed-5362-4ec3-91a3-53b3eeba88be" ], + "x-ms-request-id": [ "e151f433-e5c9-4988-8757-74a01d30bacb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a29ac1e5-45e1-4aa8-b2c0-98d4a53dee6b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54b5f73e-3607-40a2-ae75-85f444fab2c3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "83928eab-0e68-4441-a458-35da30adceaa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001537Z:83928eab-0e68-4441-a458-35da30adceaa" ], + "x-ms-correlation-request-id": [ "ff23e196-8edc-4f31-aaa8-017494d19e0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020217Z:ff23e196-8edc-4f31-aaa8-017494d19e0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 30A8AD4173CC440DAE17A9F4B70CAC5B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B47424D9934C4E41B46080FC1C65596F Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4219" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3/config/web\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px/config/web\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOCKER|divyag2411/test:customcontainer\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "186" ], - "x-ms-client-request-id": [ "b1c603b7-38b7-4532-88c8-c5de438bb772" ], + "x-ms-unique-id": [ "544" ], + "x-ms-client-request-id": [ "3cace49d-ef6c-4bb4-b02c-9452b577e0ca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -960,40 +1050,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "edf1d124-0230-49d8-bafb-f6abd5888415" ], + "x-ms-request-id": [ "21e07c10-2f27-4772-b2fb-8f0baf955697" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "db9d0e9b-7992-4218-9f99-14e0d4b357a0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001537Z:db9d0e9b-7992-4218-9f99-14e0d4b357a0" ], + "x-ms-correlation-request-id": [ "53f45e2a-fa97-437a-8e23-9b1ca914f132" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020217Z:53f45e2a-fa97-437a-8e23-9b1ca914f132" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E027764BD7EC4A29BACC0FBB3503457E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EE9AD34F33F4155ABC653153D54D9BB Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+CustomDockerImage+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-CustomImage-4ps815eax3?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-CustomImage-zv4osq75px?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "187" ], - "x-ms-client-request-id": [ "04d3c5e4-fd37-4df1-9fb1-50bdee7b42f5" ], + "x-ms-unique-id": [ "545" ], + "x-ms-client-request-id": [ "6332685f-d842-471f-8b0e-f2c80137f0f1" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1004,20 +1094,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB59825764B\"" ], + "ETag": [ "\"1DCBE56D3516F6B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fec9d6d-c041-4dbc-8833-cc6bcd167b61" ], + "x-ms-request-id": [ "239d1595-3bb5-444a-bb4e-719ab48741be" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65ae286d-fa3b-4ecc-b301-03300a0bab15" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cfea6a7b-2270-4840-8502-e5dd6026db54" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "1affacc1-56ea-493b-856d-8e9cb4a5b3f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001545Z:1affacc1-56ea-493b-856d-8e9cb4a5b3f2" ], + "x-ms-correlation-request-id": [ "381eef67-49c9-41af-85ea-712455ffe935" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020224Z:381eef67-49c9-41af-85ea-712455ffe935" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CDE1A877CFF646E6B75FF96C6CBF9DD4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3A28C0039E9C4189BF713C7155D837D6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:24 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1031,7 +1121,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1046,18 +1136,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23bb2ab6-990f-45b8-8d4e-68c295c81563" ], + "x-ms-request-id": [ "e3668a7b-c147-4b35-b504-fff51a79b3e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/fa6692d9-a40a-4f96-9eea-2d696a28438e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c9e60349-44be-4eaa-a3ba-8e1dd305951a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e45200d0-a688-47b2-a575-65e198b1ca9d" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001546Z:e45200d0-a688-47b2-a575-65e198b1ca9d" ], + "x-ms-correlation-request-id": [ "5d0e8e6d-2e6a-41df-8ee6-20588016bab8" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020225Z:5d0e8e6d-2e6a-41df-8ee6-20588016bab8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88ECBEB6B0574CC282ABB1E9F87329CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3CC4D36B21740F6A2C19FAB9BC4A46A Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1075,12 +1165,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "189" ], - "x-ms-client-request-id": [ "92d0328c-014b-4baa-a612-619741701d24" ], + "x-ms-unique-id": [ "547" ], + "x-ms-client-request-id": [ "dfd5e3c3-cbdd-4b89-a156-d2dbf4c8e800" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1092,18 +1182,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc38b4cc-a6be-4afa-81a8-ac97248acd22" ], + "x-ms-request-id": [ "c9a8eb17-506b-4748-a6cb-8988f5bae9ad" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2277de03-82d4-43e7-a151-ba72a6da056b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/2f286eca-890f-4550-a81f-4fac28ff3fed" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "773ec8da-8ac4-4172-9890-58d0f36b7864" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001546Z:773ec8da-8ac4-4172-9890-58d0f36b7864" ], + "x-ms-correlation-request-id": [ "1d1ba055-b124-42c9-a367-1ed3273012b9" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020225Z:1d1ba055-b124-42c9-a367-1ed3273012b9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ACFF64CEFC6F453AA6ADC8856595347F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE4D3D181E6241AB91E691199ED071F4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37708" ], @@ -1121,12 +1211,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "190" ], - "x-ms-client-request-id": [ "24247a63-93d2-4105-82da-d9af66713f7d" ], + "x-ms-unique-id": [ "548" ], + "x-ms-client-request-id": [ "6622190e-4bef-4346-a0c1-fc520f54ba27" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1137,40 +1227,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "92d452e7-da88-4e6d-97b0-ec66f8f26af7", "516b43ae-13f0-41cb-9c4b-561949459baa", "5a11f45b-bb3d-4fee-8c0d-a52dc2c01e8f" ], + "x-ms-original-request-ids": [ "f55bef61-23d3-40d6-9f79-4cecc92814a3", "23ae3c44-af31-4698-9073-5d03010e514d", "2acdb5ab-29bf-4833-a145-ce6e547d92c7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d98ade32-79fb-4344-ada3-d7957d590b3d" ], - "x-ms-correlation-request-id": [ "d98ade32-79fb-4344-ada3-d7957d590b3d" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001547Z:d98ade32-79fb-4344-ada3-d7957d590b3d" ], + "x-ms-request-id": [ "3b62698b-f5db-4d12-9168-73d3dbc7ed8c" ], + "x-ms-correlation-request-id": [ "3b62698b-f5db-4d12-9168-73d3dbc7ed8c" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020226Z:3b62698b-f5db-4d12-9168-73d3dbc7ed8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 90B3543385C94B73AA3434E216841314 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4186F3BEE691474C83049160263EAF9F Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Custom+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "191" ], - "x-ms-client-request-id": [ "7ed03ca0-21f2-4fb7-a618-dc9172ca9e44" ], + "x-ms-unique-id": [ "549" ], + "x-ms-client-request-id": [ "7db3c23d-566a-4e17-b63f-aba5c724a781" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1181,16 +1271,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8ed52019-1f36-420b-a8a5-2f8cda6a493b" ], + "x-ms-request-id": [ "f4503060-7896-4911-872d-f87a1e5d1f76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b4c12c1-488c-415e-aad3-8d26e69b178f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b5079239-2ce9-49dc-9d0f-09620d915eca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "40cd9e75-86b9-49f1-bb1c-3cfb57c1c8c8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001547Z:40cd9e75-86b9-49f1-bb1c-3cfb57c1c8c8" ], + "x-ms-correlation-request-id": [ "812df6fe-9ea1-4797-937e-9de02b86eea7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020226Z:812df6fe-9ea1-4797-937e-9de02b86eea7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E5B9C115E2A4E4FA978AEF3D0AA405A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:15:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EF01B467E0FA42A9A31C862C70686823 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1205,7 +1295,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1220,18 +1310,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c1d9e7e-5b6a-4534-9d55-579a78ba2ea3" ], + "x-ms-request-id": [ "1ba50183-e636-4f9f-a45a-a7542f5f745c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/3a040fbb-b123-4fc9-90e4-2a595100b7a0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1100" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16500" ], - "x-ms-correlation-request-id": [ "daff089e-1bc8-46ae-84fe-a8e489390fb3" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001601Z:daff089e-1bc8-46ae-84fe-a8e489390fb3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/5659d676-df89-44e3-8d30-a2184289a61e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0667c855-959a-47cf-8c9d-16c2ad7bef91" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020226Z:0667c855-959a-47cf-8c9d-16c2ad7bef91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6948E4D4BF2540FD84A9F9317764F581 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:15:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A43F0E23FEC46128419B715A1A041C1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1249,12 +1339,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "193" ], - "x-ms-client-request-id": [ "5fd41ea8-4eb9-4b3a-8db7-f651250f5a7e" ], + "x-ms-unique-id": [ "551" ], + "x-ms-client-request-id": [ "bdd8bba5-6307-43fb-bca0-cc92b48800b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1266,18 +1356,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd1bff8d-2016-4d79-8cc7-5cb17b8271cd" ], + "x-ms-request-id": [ "997b4ee1-fc13-43b7-9dbf-a8cd2aab2107" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/41f9a476-8d73-46eb-bd54-23451f988909" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23ca40be-80e6-48fe-9961-bcf486185ccd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "caffdb4e-34a5-49c5-af09-1d7bb03787f8" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001601Z:caffdb4e-34a5-49c5-af09-1d7bb03787f8" ], + "x-ms-correlation-request-id": [ "a9b4677d-1445-4b55-b304-81067425eb2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020227Z:a9b4677d-1445-4b55-b304-81067425eb2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3FC991A84D9640F1B643A9638F913242 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EBFA324E21DF483EA63B43DA3F409454 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37708" ], @@ -1295,12 +1385,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "194" ], - "x-ms-client-request-id": [ "974ba109-b1d3-4efb-bd55-3a9c44eace53" ], + "x-ms-unique-id": [ "552" ], + "x-ms-client-request-id": [ "0b569eaf-0cc6-481a-b713-e42de079a34e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1311,40 +1401,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "536e3c6d-51b1-4add-afdd-96ccbc6c19f5", "f63738c1-f10d-47ff-9121-f198b3347c3a", "377446ee-bed8-49a2-af41-59bff69abf2e" ], + "x-ms-original-request-ids": [ "fdf70998-bccb-486c-b6cc-f43aba5b2bdd", "114a0f09-95e7-4616-a672-82fecd0fa8ae", "ba7e8ac3-2ef6-45b9-aec3-27242519569e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "49fe4bf9-1b34-4bd2-b121-e3845fc8904d" ], - "x-ms-correlation-request-id": [ "49fe4bf9-1b34-4bd2-b121-e3845fc8904d" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001602Z:49fe4bf9-1b34-4bd2-b121-e3845fc8904d" ], + "x-ms-request-id": [ "5f14bb39-7b1c-4af9-a849-a7fc97392502" ], + "x-ms-correlation-request-id": [ "5f14bb39-7b1c-4af9-a849-a7fc97392502" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020227Z:5f14bb39-7b1c-4af9-a849-a7fc97392502" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6947B08FF3C841F5A386A1D47D5D7503 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 038B5DACE6DB49B9B5AFBFA4B6279279 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for DotNet-Isolated+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "195" ], - "x-ms-client-request-id": [ "b7ff679d-57cb-4aee-94dd-e30655397bb3" ], + "x-ms-unique-id": [ "553" ], + "x-ms-client-request-id": [ "705d66a7-5535-48bd-b01e-f6603137612e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1355,16 +1445,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "83db5327-5b72-4b2c-bafe-1f4c953fb15a" ], + "x-ms-request-id": [ "e1040f07-3b54-4925-8fd7-ff1c0dd76ca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b44b4b9-7ae3-4878-8e9d-56b2b224b532" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/95d4f39e-91be-47d5-bf54-accee49252e2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "29cb5c36-8f15-49df-ac95-56c3aa3f1d29" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001602Z:29cb5c36-8f15-49df-ac95-56c3aa3f1d29" ], + "x-ms-correlation-request-id": [ "6a442a17-3448-46b2-b163-085920fde59b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020227Z:6a442a17-3448-46b2-b163-085920fde59b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3CCA5C2787746398A57478C1D21CC68 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 60F4A8F28EC64D40953914068A943F24 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1379,7 +1469,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1394,18 +1484,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4f7f7a1-a6af-4d16-b754-281f9affa9fc" ], + "x-ms-request-id": [ "2d79575f-f563-4fe9-8352-b7425b6ac8e2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/104ae9b3-b9da-4f35-9b3b-42beafc520f2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/2c95d27b-4357-4e86-b6dc-834d11b0f554" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ecb508d0-734e-42e8-a1cd-e4e57b6764b8" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001602Z:ecb508d0-734e-42e8-a1cd-e4e57b6764b8" ], + "x-ms-correlation-request-id": [ "40344feb-c593-4bac-85bb-c527604b9f50" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020228Z:40344feb-c593-4bac-85bb-c527604b9f50" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66A25B491CD14D06B65C83838A5CAFEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2E224CED1BBB4709A2BCC1F1C3C08BC4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1423,12 +1513,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "197" ], - "x-ms-client-request-id": [ "3a678d32-7682-4109-9755-e9facd21a1b1" ], + "x-ms-unique-id": [ "555" ], + "x-ms-client-request-id": [ "558360ad-97cd-4ffc-8a8b-2f46cf6ee473" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1440,18 +1530,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e95102c0-7b7c-4a0c-a254-3fb4c8b93625" ], + "x-ms-request-id": [ "3893000c-8393-46f8-bfd8-27253949c6fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/93b04e71-7e45-4a76-ae4d-8907287274ed" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aafa7ed3-6f5a-4e1c-95dc-52a0f5291e5e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2f4ece8-26f9-4906-8f7c-7e3f16b8cba9" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001602Z:b2f4ece8-26f9-4906-8f7c-7e3f16b8cba9" ], + "x-ms-correlation-request-id": [ "275642ef-06b6-4210-bab1-a2ffeb25ba52" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020228Z:275642ef-06b6-4210-bab1-a2ffeb25ba52" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 992A573C3EBA4A33A6DAD4E6337F75D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A40351AAED4451B8812E0CC7612A3D6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37708" ], @@ -1469,12 +1559,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "198" ], - "x-ms-client-request-id": [ "4583de1a-ba61-4b61-9484-0c37dce608e4" ], + "x-ms-unique-id": [ "556" ], + "x-ms-client-request-id": [ "db626fbf-cb06-40e5-8c2f-eacfb39f3149" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1485,40 +1575,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0c79425c-1af4-422d-8a03-91642ce92fe6", "bb664227-5f4d-45f2-ab05-50e959a7c1a8", "b2205b01-2403-4fcb-97d8-bf0584367748" ], + "x-ms-original-request-ids": [ "c21a05ea-f1ca-41dc-8b63-c3997bd0dc27", "ed2c8518-9be6-40b0-8e05-ce7584a151f4", "a5de40d9-bc52-4739-a1d1-d70d1edce2b9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d6723c19-5e08-4960-9a84-50d471365f26" ], - "x-ms-correlation-request-id": [ "d6723c19-5e08-4960-9a84-50d471365f26" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001603Z:d6723c19-5e08-4960-9a84-50d471365f26" ], + "x-ms-request-id": [ "09e2ca98-0f75-488d-9c9c-bec08e44097d" ], + "x-ms-correlation-request-id": [ "09e2ca98-0f75-488d-9c9c-bec08e44097d" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020229Z:09e2ca98-0f75-488d-9c9c-bec08e44097d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9719D8C141C04248BA60A4C6CA838DE5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C88CB0CA1C9B4FEA9664937EE790D9F3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for PowerShell+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "199" ], - "x-ms-client-request-id": [ "92870222-ce20-43a9-83f3-a5927c15a240" ], + "x-ms-unique-id": [ "557" ], + "x-ms-client-request-id": [ "a6adab54-0930-4eb3-99bb-cf16a61d7bd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1529,16 +1619,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3166ff91-32c4-4640-96a6-c9d470adf710" ], + "x-ms-request-id": [ "e671b999-b331-47fa-a8ec-489deedcbd98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45d0f31f-9463-40f6-a235-e82262b6d9d6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/310a3cba-4048-4642-b133-61ae13438978" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "200486f1-019d-46b7-95ec-174df2b7993d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001603Z:200486f1-019d-46b7-95ec-174df2b7993d" ], + "x-ms-correlation-request-id": [ "f48cee00-f10e-45be-8082-1855b068c663" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020229Z:f48cee00-f10e-45be-8082-1855b068c663" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D37EC656B14642F785C208D5A403DF23 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25B89A54B5ED44A9A737C5964FB6650E Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1553,7 +1643,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1568,18 +1658,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a106c45d-6b83-4497-841f-6e8d614aaecb" ], + "x-ms-request-id": [ "0114ade8-176c-4cfd-8902-cc13e8b4ef0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/518228f3-f413-49a3-ada5-3b7a8076682d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/0e7d264c-5560-481e-8f76-a5e27a2735d6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e1f1f658-ecc8-4564-b626-215633cc75e9" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001603Z:e1f1f658-ecc8-4564-b626-215633cc75e9" ], + "x-ms-correlation-request-id": [ "6d950009-769c-41e8-a51f-cf77793cb344" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T020229Z:6d950009-769c-41e8-a51f-cf77793cb344" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D408B3A30CAC4236B1F844A2607CD527 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAB1E9A6B87A4DDF920992D6E027FE69 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1597,12 +1687,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "201" ], - "x-ms-client-request-id": [ "e448b099-7db1-4813-9ade-f397d13b475c" ], + "x-ms-unique-id": [ "559" ], + "x-ms-client-request-id": [ "484a9970-f485-4d64-aa21-e2085aab579c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1614,18 +1704,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b3e7c8f-5967-42fb-9d44-842882735e36" ], + "x-ms-request-id": [ "380f85fd-b03a-4b2a-9ec0-a4087f315c4f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/6bc40ed2-5ed1-452d-9069-301e41aad048" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/68dd188e-f0af-47ff-a7ef-00b6d2e30761" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d7c891c6-9e11-4b18-8282-1b0303f108a1" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001604Z:d7c891c6-9e11-4b18-8282-1b0303f108a1" ], + "x-ms-correlation-request-id": [ "64da434f-cffd-4fe6-81df-943ccedf1590" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020229Z:64da434f-cffd-4fe6-81df-943ccedf1590" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 207947D0CB8D4C03B38FABB13528C017 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69F42DE34C624685B78C57BF70EC6883 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37708" ], @@ -1643,12 +1733,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "202" ], - "x-ms-client-request-id": [ "a52b760e-dae0-4c3d-aa4b-a1771b2fa619" ], + "x-ms-unique-id": [ "560" ], + "x-ms-client-request-id": [ "ac1516e3-f831-4145-9ddf-2e272c9a18b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1659,40 +1749,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ef129c03-916d-4e3a-b79e-917c959aad4e", "e1cc7808-0e61-4f8b-a0ab-2391e60d3741", "50ddba37-c8c3-456a-b932-4d4abc725fbc" ], + "x-ms-original-request-ids": [ "c7e552b4-09d6-45cd-9bd0-a3f8d6e29d62", "714c9098-85bf-4554-bd3b-60e9e8b9265c", "529734fe-4c69-4c62-8770-3b277e8b9673" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b2397bad-4372-408a-8efa-5ac9c8538246" ], - "x-ms-correlation-request-id": [ "b2397bad-4372-408a-8efa-5ac9c8538246" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001604Z:b2397bad-4372-408a-8efa-5ac9c8538246" ], + "x-ms-request-id": [ "652c3528-d0d4-4975-9d0b-65177370cecf" ], + "x-ms-correlation-request-id": [ "652c3528-d0d4-4975-9d0b-65177370cecf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020230Z:652c3528-d0d4-4975-9d0b-65177370cecf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3BC9A8978F0A4E319142D8B31F69D270 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DAB14A564D0F4ECF99007FD9588F6172 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Java+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "203" ], - "x-ms-client-request-id": [ "d478eb2d-1188-4274-9388-55b615899b92" ], + "x-ms-unique-id": [ "561" ], + "x-ms-client-request-id": [ "e39745d2-49c6-4029-803d-d56e8c154b12" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1703,16 +1793,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "abdbd6d5-d54d-43f3-8e3a-eab65d80b492" ], + "x-ms-request-id": [ "c62cf67f-7281-4ea2-adaf-faed1ee2221d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7069aef5-7c0a-4eee-9099-738b73f5762c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2afe98c7-a832-4b36-b0e7-6a9a5750f4a8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e797b2c6-1101-4e84-9463-aade21e7d0aa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001604Z:e797b2c6-1101-4e84-9463-aade21e7d0aa" ], + "x-ms-correlation-request-id": [ "c9b9f017-6adf-4261-9c0c-aebdb2a88421" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020230Z:c9b9f017-6adf-4261-9c0c-aebdb2a88421" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44345F80E1454FACA4E88F0AD9BAC8CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82DE322D3E694E8C8FBC632C64BFDF03 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1727,7 +1817,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1742,18 +1832,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f9df22d-e3d7-4182-952c-1763d30c4118" ], + "x-ms-request-id": [ "46f244e3-bebf-4d8e-8846-9a1c3ef0c285" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c6de9229-d9e0-4f2e-a755-e14a82fbe997" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1eae3160-54e6-4e83-9fba-b71aca17dfbd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63d508ef-2b1a-444f-9b11-0ed9e9d24eba" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001605Z:63d508ef-2b1a-444f-9b11-0ed9e9d24eba" ], + "x-ms-correlation-request-id": [ "7890c922-08a9-47c8-91ce-824428532962" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020231Z:7890c922-08a9-47c8-91ce-824428532962" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7881354437E45C695F3035BE2A19107 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F376EFF64A9B4D719662A0C43CC10B28 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1771,12 +1861,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "205" ], - "x-ms-client-request-id": [ "f56d7ac5-5082-4606-884b-35e9ae2e0e99" ], + "x-ms-unique-id": [ "563" ], + "x-ms-client-request-id": [ "2938da41-578b-43d6-9aca-1c3a1cbd40b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1788,18 +1878,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9151a41f-6519-4675-be50-348de076d9f1" ], + "x-ms-request-id": [ "fc9f06ae-b2d7-4d82-b30f-99e35cc7b607" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/a50f18c3-6305-4473-8ede-c4b610ce5fdb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ba19394c-ef62-47c7-87b6-c69bdf1f5214" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f0298b34-3ebc-4fff-a9d9-c7b41b6843b8" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001605Z:f0298b34-3ebc-4fff-a9d9-c7b41b6843b8" ], + "x-ms-correlation-request-id": [ "fd5fdedc-e4d5-4407-8c92-8f1530fb54ae" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020231Z:fd5fdedc-e4d5-4407-8c92-8f1530fb54ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8CF5D3FAA8F421D85D4D987ADF931CA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A7CBBAA3A03947D8AD13B5A09F76BA37 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37708" ], @@ -1817,12 +1907,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "206" ], - "x-ms-client-request-id": [ "149e1bc0-ef6a-44d1-9aee-d0f8872ea756" ], + "x-ms-unique-id": [ "564" ], + "x-ms-client-request-id": [ "e989f15e-d0ec-4081-bf14-85410572d43d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1833,40 +1923,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1ed0f4de-cb55-41cb-9a8c-8c41c0ef3a53", "91417e8c-2ab3-4e42-9fab-62e5fa1caaef", "35a26166-d086-4b51-b851-050828ce9bfb" ], + "x-ms-original-request-ids": [ "aaaf6c32-c0f7-4490-95a9-827124ed19a3", "e6619661-d43e-40b8-8698-c3d2c89b6b3b", "00bc7694-49fe-4eeb-a60a-982e786db497" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4a9ebb6d-8127-436e-994a-ac77b7bd5c19" ], - "x-ms-correlation-request-id": [ "4a9ebb6d-8127-436e-994a-ac77b7bd5c19" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001606Z:4a9ebb6d-8127-436e-994a-ac77b7bd5c19" ], + "x-ms-request-id": [ "95605b75-1819-42fe-8fc9-516e922b8c44" ], + "x-ms-correlation-request-id": [ "95605b75-1819-42fe-8fc9-516e922b8c44" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020232Z:95605b75-1819-42fe-8fc9-516e922b8c44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E8B53AA76AD41C2AE88FC42DD8E8671 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21F45E8ADA68484797EE6638B32129F3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate New-AzFunctionApp default OSType and FunctionsVersion for Node+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "207" ], - "x-ms-client-request-id": [ "8488ada0-09f4-410b-8ad9-17e557eab69f" ], + "x-ms-unique-id": [ "565" ], + "x-ms-client-request-id": [ "057bf891-97bd-4643-8772-774a24151e0c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1877,16 +1967,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "dc1ed617-4cca-4c59-9b98-401f0632e761" ], + "x-ms-request-id": [ "a3f08982-234d-46de-908c-74aeb11e5a41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bed005a1-35d2-4da0-b685-4155be626793" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e7ffa3e8-b29a-4c80-9094-fe3c48b879c8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ad1929bd-917b-4a87-81bd-a606a87092d6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001606Z:ad1929bd-917b-4a87-81bd-a606a87092d6" ], + "x-ms-correlation-request-id": [ "69221139-f694-4c62-9c19-1e3e6eca597d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020232Z:69221139-f694-4c62-9c19-1e3e6eca597d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 415966D8B8B04B1DB54056A73C342696 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:06Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5BE3B7A70A344808967290D62814A577 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -1897,11 +1987,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1916,18 +2006,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90a76ad0-7bc2-4312-a34d-add28b24b050" ], + "x-ms-request-id": [ "ad994f89-258f-497f-959c-16b60c148874" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/abeee47f-853f-43a9-b583-7786914ce0bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/bb4863e9-88db-4643-9101-784a917d1b18" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "34b5788b-e726-4012-a430-1980c91412b4" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001606Z:34b5788b-e726-4012-a430-1980c91412b4" ], + "x-ms-correlation-request-id": [ "66e70a75-ffe0-4dec-861b-5f3a1de4341c" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020233Z:66e70a75-ffe0-4dec-861b-5f3a1de4341c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F97A8093A3854CF886A0EFDEBDD5A9A9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:06Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2CC0FA031A744B9FB99057C17B0F8E9B Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1938,11 +2028,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for PowerShell 6.2 in Windows for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+New-AzFunctionApp should throw InvalidRuntimeVersion for Python 3.6 in Linux for Functions version 4+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1957,18 +2047,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe3f4e40-adeb-47f7-9270-d867c71d836d" ], + "x-ms-request-id": [ "12836213-ff3a-4d10-bf95-20f64b6fda84" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c7e5b94c-72f9-4da3-8307-09e1008386ae" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bcd0c073-fde6-4961-ac08-fce05dbcac91" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001607Z:bcd0c073-fde6-4961-ac08-fce05dbcac91" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/67f5fb93-3034-4314-83d9-f0105d3e218b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "fae92002-4f1b-46e9-b2e8-d490c84c268c" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020233Z:fae92002-4f1b-46e9-b2e8-d490c84c268c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6B5253FBD6D34173B769D2129F4165AA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:07Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95D21ED651604527A5F61B2680EEAC6D Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1983,7 +2073,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1998,18 +2088,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03562ec7-61e1-4754-af53-034e2ccb002d" ], + "x-ms-request-id": [ "aae40ba2-a7b8-4eda-ac12-dcd3093c7b6d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/d5be8407-eb74-4fbe-be35-ace22be6b68c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b96110fc-1aef-4215-a16d-9e7345b28bda" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84ea63af-a3aa-4f23-ba4f-99949f109281" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001607Z:84ea63af-a3aa-4f23-ba4f-99949f109281" ], + "x-ms-correlation-request-id": [ "6a2e0218-90d1-401b-b116-14eb5d347cb4" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020233Z:6a2e0218-90d1-401b-b116-14eb5d347cb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14DEC91E33DE44EE9BE483F8A38BEABE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:07Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE5D575720F24630A078A7C7DDC59296 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2024,7 +2114,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Python-7mrsp6yjac\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Python-uj27iozaxb\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -2039,18 +2129,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab1c3225-b7fd-4682-8af2-7ee79063e757" ], + "x-ms-request-id": [ "9b0db5b8-5e4f-4655-8cc6-b53d4b9df88f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1857a37f-d86b-4304-9ee6-a8da5d5a6851" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c7e928ee-f434-4bc0-bd5a-d1d8a219e28e" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001608Z:c7e928ee-f434-4bc0-bd5a-d1d8a219e28e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/bfe26aa7-7d1b-468f-8d69-f130fa4ce049" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "8ec60161-20f4-45d5-a3cc-5af590589585" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020234Z:8ec60161-20f4-45d5-a3cc-5af590589585" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B80F2C4967B14FCF935A674669226398 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:07Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B53EF2E64C484939B5E189DA09C50537 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -2068,12 +2158,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "212" ], - "x-ms-client-request-id": [ "a88099ec-e6d7-4b3c-bca6-a5a7f22fa01e" ], + "x-ms-unique-id": [ "570" ], + "x-ms-client-request-id": [ "1e3c3936-ef73-48df-b20d-54770c88020d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2084,40 +2174,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d2ad4e28-b715-4555-a870-18d9464c35ba", "d1a363c7-2930-4e27-bbd1-cd3ce3fc9e8e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-request-id": [ "3fc66558-ee7c-466e-9de9-a7edc5bcda8e" ], - "x-ms-correlation-request-id": [ "3fc66558-ee7c-466e-9de9-a7edc5bcda8e" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001609Z:3fc66558-ee7c-466e-9de9-a7edc5bcda8e" ], + "x-ms-original-request-ids": [ "e922f914-691f-4670-8d91-78618c194a27", "1613658b-cb64-4776-b39a-8af7d0a036db" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "37c68441-6f66-41e8-b4a5-ce98744752f4" ], + "x-ms-correlation-request-id": [ "37c68441-6f66-41e8-b4a5-ce98744752f4" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020235Z:37c68441-6f66-41e8-b4a5-ce98744752f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7099B95B479D47EE98CCE38DD787CC51 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DC5AC3B57FE43988DE53A78C112C8D3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8766" ], + "Content-Length": [ "12078" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "213" ], - "x-ms-client-request-id": [ "c00e8187-c69f-460c-bd14-9c3bca20a297" ], + "x-ms-unique-id": [ "571" ], + "x-ms-client-request-id": [ "daae0f27-f44f-4da9-948c-24a66f63d800" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2129,40 +2219,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ade2b56-d820-4f0b-ab91-e795516b1492" ], + "x-ms-request-id": [ "3b2453dd-801d-4081-b839-dc880221246b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e59c5b78-5957-436f-b524-386e6e89e9ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:e59c5b78-5957-436f-b524-386e6e89e9ce" ], + "x-ms-correlation-request-id": [ "50aab283-2516-4628-bdca-6c248a93c712" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020235Z:50aab283-2516-4628-bdca-6c248a93c712" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1CE927E10F8D4EF79AEE9031371AAFD2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B11922E56BD94DA093F0A8C6CA912382 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "572" ], + "x-ms-client-request-id": [ "4807ef6b-a61e-4770-9e94-60edb20c1f97" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2cbdfff6-af81-4c53-ad0f-c7fec35bb458" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "57573a3b-74c3-4982-b3fe-891c0d691f2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020235Z:57573a3b-74c3-4982-b3fe-891c0d691f2b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1B775BBB8E16487CB94D3F83A65F01EE Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1784" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "573" ], + "x-ms-client-request-id": [ "87089a1c-ea78-45c7-8418-7aac4348ddb6" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "0004f7ce-a804-4f3b-883c-6bb9a6b749c1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ef7b47ad-c020-4e40-8e1b-08efb98a5f16" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020235Z:ef7b47ad-c020-4e40-8e1b-08efb98a5f16" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0691633E6B064C98A37CD2C179384243 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:35 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "214" ], - "x-ms-client-request-id": [ "5023148f-6730-4d07-a7f6-bd9cab791ac0" ], + "x-ms-unique-id": [ "574" ], + "x-ms-client-request-id": [ "d6442876-90d7-4157-b8c9-08858f500315" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2174,40 +2354,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fcca214e-85d7-4321-af2a-6c57ffa5b3bb" ], + "x-ms-request-id": [ "94e8d292-ce15-4659-8d57-0d15bbe53db7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bacbc15f-3ad2-44a8-86ea-aae5729f6140" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:bacbc15f-3ad2-44a8-86ea-aae5729f6140" ], + "x-ms-correlation-request-id": [ "71c5b011-becc-43bf-949f-38ed7b26a9bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020235Z:71c5b011-becc-43bf-949f-38ed7b26a9bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EC1931CD89A47AC9EDB13B88DCD6036 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CAE6446F07454EECB6665A03D5218982 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "215" ], - "x-ms-client-request-id": [ "693972ad-17c0-41a6-85bd-fdcc0a42156e" ], + "x-ms-unique-id": [ "575" ], + "x-ms-client-request-id": [ "9d7e024b-a3aa-479b-9aa2-1909ab4cb1b6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2219,40 +2399,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1913a831-d2fa-4de8-94da-a747abab267c" ], + "x-ms-request-id": [ "3c704858-8237-44aa-9d88-4807d786a205" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4fa0699e-c240-476b-a0f5-644f4293f123" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:4fa0699e-c240-476b-a0f5-644f4293f123" ], + "x-ms-correlation-request-id": [ "b75b1a58-fa46-4904-bdc5-142efa693628" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020235Z:b75b1a58-fa46-4904-bdc5-142efa693628" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1C356511B584A018DFD4A15CE63FFA9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B6E912A54C5462CA7B8FD2BA1DA1009 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "216" ], - "x-ms-client-request-id": [ "4d8a0990-585e-410d-ac56-8b663ed02206" ], + "x-ms-unique-id": [ "576" ], + "x-ms-client-request-id": [ "446b05ce-7ec6-4ef5-8e60-68d05eeee7ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2264,40 +2444,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "226cd336-adf0-462b-8a02-ed115e84e541" ], + "x-ms-request-id": [ "ac409101-8ff2-48c0-bcb6-e675083c0bca" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ec69830f-46dd-4a74-b229-d70998dd28fc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001609Z:ec69830f-46dd-4a74-b229-d70998dd28fc" ], + "x-ms-correlation-request-id": [ "5dba682b-4838-4f68-91e2-a4469ae61bef" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020236Z:5dba682b-4838-4f68-91e2-a4469ae61bef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F8E9C23F6474BB2824890406AC24261 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2AB1F3D928E64E1A83988AA1F23CF8D1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "217" ], - "x-ms-client-request-id": [ "94ee7512-c887-42a8-baf9-98b2f20b44c4" ], + "x-ms-unique-id": [ "577" ], + "x-ms-client-request-id": [ "db1c49bc-4fb2-4e4d-847d-e02d2e59d48e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2309,40 +2489,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c6e4cd4-064d-4148-b69e-397efd9e1cb6" ], + "x-ms-request-id": [ "bf7a7436-13f3-4fac-93b8-c5b5abb9b1c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0bc5d55f-f629-4f47-bee5-d3c301a7ec45" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T001610Z:0bc5d55f-f629-4f47-bee5-d3c301a7ec45" ], + "x-ms-correlation-request-id": [ "7fbf3d41-9739-4305-9a4c-857bfdfc726f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020236Z:7fbf3d41-9739-4305-9a4c-857bfdfc726f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1D4314B66A544AD8A02CC54E438D3BE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F04EB5A78E32450ABFE9538133EDB264 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1696" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":8,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "218" ], - "x-ms-client-request-id": [ "2519a0ec-f13a-4301-be9d-afe1c9e161fe" ], + "x-ms-unique-id": [ "578" ], + "x-ms-client-request-id": [ "01b913c0-5845-46f5-b74c-0268e7b7439d" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2353,40 +2533,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "f4b4fccb-f42a-4029-b595-d92a4ebc7434", "2b2afbee-50ce-494e-b81a-b2ae85dbc1cd", "9f65e4a1-dfdc-4ae8-8eaa-0c6ec558925b" ], + "x-ms-original-request-ids": [ "b8047714-c0f6-4727-a618-33b8094f720e", "7a086abf-1288-4a54-9c36-f6c14d182242", "9ce0d488-e665-4c35-b56d-bff2ba5b0938" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1261511f-501e-4c8a-be40-12bfb38a4c70" ], - "x-ms-correlation-request-id": [ "1261511f-501e-4c8a-be40-12bfb38a4c70" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001610Z:1261511f-501e-4c8a-be40-12bfb38a4c70" ], + "x-ms-request-id": [ "d0508ef0-882d-4bff-ac5a-f41e6c101929" ], + "x-ms-correlation-request-id": [ "d0508ef0-882d-4bff-ac5a-f41e6c101929" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020237Z:d0508ef0-882d-4bff-ac5a-f41e6c101929" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F8BF3241114483EBE320747DBFB9F28 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54113897A6984E9D9043820FE070F209 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "219" ], - "x-ms-client-request-id": [ "c19caafc-2f95-4ecd-bc71-81b4049788d5" ], + "x-ms-unique-id": [ "579" ], + "x-ms-client-request-id": [ "8e55039a-669a-44ab-bb5e-58c3a3293bd0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2397,16 +2577,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "0cc1db0a-f9b0-4a60-83b5-ab8cd82f28a0" ], + "x-ms-request-id": [ "e00ee623-2373-45de-abff-eaca2ca2bd8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff02b341-2e5d-49c3-b29e-38e3d4aac51f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d559b15a-bc32-477c-b48b-d717eb66c789" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e2bcd2ed-b94e-4e04-86e8-74ee7373210f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001611Z:e2bcd2ed-b94e-4e04-86e8-74ee7373210f" ], + "x-ms-correlation-request-id": [ "030f456d-055f-4d33-a6e3-26d93853e0f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020237Z:030f456d-055f-4d33-a6e3-26d93853e0f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5CE5AF1D1ED344C0B9C7DBDC26ACD404 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3E750B3F371464CAD1C383D8D383DF2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -2417,10 +2597,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-Python-7mrsp6yjac?api-version=2015-05-01+10": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Insights/components/Functions-Python-uj27iozaxb?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Insights/components/Functions-Python-7mrsp6yjac?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Insights/components/Functions-Python-uj27iozaxb?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -2440,30 +2620,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/898df8a9-775c-4da5-b035-0568605579a6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fc8df836-5b7b-454d-8ba4-ab2ca9dc3a88" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "3dd4e15d-b893-4ac7-9295-4fe6f70d7ede" ], - "x-ms-correlation-request-id": [ "3dd4e15d-b893-4ac7-9295-4fe6f70d7ede" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001617Z:3dd4e15d-b893-4ac7-9295-4fe6f70d7ede" ], + "x-ms-request-id": [ "09fce377-8517-490b-9ba6-932bab1019f6" ], + "x-ms-correlation-request-id": [ "09fce377-8517-490b-9ba6-932bab1019f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020242Z:09fce377-8517-490b-9ba6-932bab1019f6" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6DE877C412F4657AA44887F9CAE9363 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2D9760106504A969A38CE00D921122A Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:02:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1634" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202f148-0000-0300-0000-69c47ad10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-Python-7mrsp6yjac\",\r\n \"name\": \"Functions-Python-7mrsp6yjac\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-7mrsp6yjac\",\r\n \"AppId\": \"109dd349-0540-4220-a333-02741ec50c53\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"29cd09e4-f396-4270-9b30-047a14841e5e\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-7mrsp6yjac\",\r\n \"CreationDate\": \"2026-03-26T00:16:11.6046114+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-7mrsp6yjac_109dd349-0540-4220-a333-02741ec50c53_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-7mrsp6yjac-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d03db55-0000-0300-0000-69c736c20000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/microsoft.insights/components/Functions-Python-uj27iozaxb\",\r\n \"name\": \"Functions-Python-uj27iozaxb\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Python-uj27iozaxb\",\r\n \"AppId\": \"0bff0c57-a7d2-4810-9803-a6e4866fe552\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8262549b-39ee-46c7-9b23-37385eb4bc1e\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Python-uj27iozaxb\",\r\n \"CreationDate\": \"2026-03-28T02:02:38.1034428+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-uj27iozaxb_0bff0c57-a7d2-4810-9803-a6e4866fe552_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-uj27iozaxb-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.13\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"python\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-7mrsp6yjac\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Python|3.13\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"python\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-python-uj27iozaxb\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2477,43 +2657,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB5C50342E0\"" ], + "ETag": [ "\"1DCBE56F86B03A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "64637fe4-ee3e-401c-b48d-4ec8f343fd81" ], + "x-ms-request-id": [ "f205df02-88c2-4889-9f7b-6b076eebdb83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/436d5546-faf1-4a30-ae8f-652001daf044" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0db20909-e4a7-4966-8aec-8181960b4516" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "fa30de73-b30a-4a5f-a7ab-3785c53ffb9b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001639Z:fa30de73-b30a-4a5f-a7ab-3785c53ffb9b" ], + "x-ms-correlation-request-id": [ "29f6a2b9-512e-4249-8516-af6ea13de769" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020305Z:29f6a2b9-512e-4249-8516-af6ea13de769" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55B4E21D22F845928216293BE07DE6E2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:16:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:16:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7ED4193EA4CE426F8CEE68D9434BADAB Ref B: MWH011020809062 Ref C: 2026-03-28T02:02:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8660" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:18.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-uj27iozaxb\",\"state\":\"Running\",\"hostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Python-uj27iozaxb\",\"repositorySiteName\":\"Functions-Python-uj27iozaxb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\",\"functions-python-uj27iozaxb.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-uj27iozaxb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:02:44.8066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-uj27iozaxb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Python-uj27iozaxb\\\\$Functions-Python-uj27iozaxb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "222" ], - "x-ms-client-request-id": [ "b075567b-e8ae-42d5-a689-f1f01d2b7d91" ], + "x-ms-unique-id": [ "582" ], + "x-ms-client-request-id": [ "7cbcee5c-1052-4957-8f25-1d8a02f08c03" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -2523,42 +2703,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB5D0BBA5D5" ], + "ETag": [ "1DCBE57040668B5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc81cc5c-dd38-444b-85f5-f04f8b264b31" ], + "x-ms-request-id": [ "b3b0b22d-5466-4ebb-b31d-6a480286a6cd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "251b205d-072b-4779-b374-635b0dc65897" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:251b205d-072b-4779-b374-635b0dc65897" ], + "x-ms-correlation-request-id": [ "7b7dae8e-ba7b-42dd-89c0-f742867987ee" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020336Z:7b7dae8e-ba7b-42dd-89c0-f742867987ee" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 730A0D301E5E4DC1A38BF0419131E36B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 251DBC799DBD4A52B91DEA8B580C07D7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8472" ], + "Content-Length": [ "8276" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-uj27iozaxb\",\"state\":\"Running\",\"hostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Python-uj27iozaxb\",\"repositorySiteName\":\"Functions-Python-uj27iozaxb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\",\"functions-python-uj27iozaxb.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-uj27iozaxb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:03:05.3233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-uj27iozaxb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Python-uj27iozaxb\\\\$Functions-Python-uj27iozaxb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "223" ], - "x-ms-client-request-id": [ "c7f86485-b47b-4d59-afdd-16e9383f0a15" ], + "x-ms-unique-id": [ "583" ], + "x-ms-client-request-id": [ "37d33af4-d156-46d1-b249-d00e6ac0bda9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2569,42 +2749,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB5D0BBA5D5" ], + "ETag": [ "1DCBE57040668B5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdeebfb0-304e-48fb-8cf0-1c895c59a305" ], + "x-ms-request-id": [ "712f016b-49b9-47aa-ad76-aa8ebb407bb6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "34c4af5e-c769-4a91-8d88-a5a8b7c2c7d4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:34c4af5e-c769-4a91-8d88-a5a8b7c2c7d4" ], + "x-ms-correlation-request-id": [ "efa2e432-25d5-4fab-9596-7f91814e24bb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020336Z:efa2e432-25d5-4fab-9596-7f91814e24bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86A54A9C6B0940DB9121DA42741C980A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D66374A63A934A60B5CD184C778DB7DE Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8472" ], + "Content-Length": [ "8276" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-uj27iozaxb\",\"state\":\"Running\",\"hostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Python-uj27iozaxb\",\"repositorySiteName\":\"Functions-Python-uj27iozaxb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\",\"functions-python-uj27iozaxb.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-uj27iozaxb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:03:05.3233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-uj27iozaxb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Python-uj27iozaxb\\\\$Functions-Python-uj27iozaxb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "224" ], - "x-ms-client-request-id": [ "d2fa8b94-65f6-4933-adca-a3ef4715bb3e" ], + "x-ms-unique-id": [ "584" ], + "x-ms-client-request-id": [ "1b247a36-85ef-4f2d-aee5-9030903b4ff9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2616,40 +2796,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0bdcce64-e209-4f3d-955f-969525ae65bd" ], + "x-ms-request-id": [ "069d7f94-0c25-4868-8836-7ef8cb742c8c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e85b958-a7ee-487d-ba17-234bf72f59e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac670e2d-65d7-4bc7-a872-8b06a4b31d89" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ca385f14-c48c-4013-ac0c-a1aae4badcbf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:ca385f14-c48c-4013-ac0c-a1aae4badcbf" ], + "x-ms-correlation-request-id": [ "64228438-39ce-4e12-a40f-06283f31b162" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020337Z:64228438-39ce-4e12-a40f-06283f31b162" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64F2F7DF58774F7596857E1E1050B2C5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26521DCE7C184915AA9F2B36563C6381 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-uj27iozaxb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "225" ], - "x-ms-client-request-id": [ "0f37ac18-52c5-46d7-bb5d-78418819c16e" ], + "x-ms-unique-id": [ "585" ], + "x-ms-client-request-id": [ "2d50ffbe-a882-46ef-b9e5-ec0ca62f60bf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2661,41 +2841,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e530201-b371-4361-9a54-d7a840892082" ], + "x-ms-request-id": [ "388771e9-5445-416d-b9c3-f87531aee508" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/92a0cd53-c19e-43f7-9913-908d8ac5283f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ac6d6a5-2292-4de2-9759-4673a3fc0346" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "889d0be2-4053-4374-a888-2427d3c9e51a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001710Z:889d0be2-4053-4374-a888-2427d3c9e51a" ], + "x-ms-correlation-request-id": [ "b5d7b16a-f281-4558-9a74-42ca04bd6c87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020337Z:b5d7b16a-f281-4558-9a74-42ca04bd6c87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D7263D43938479D9E430F4F1A744EF5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21BFA096F81F4C4BBC3A8A0B84178B73 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "226" ], - "x-ms-client-request-id": [ "4109d249-ec85-4d2f-91df-d527807095ef" ], + "x-ms-unique-id": [ "586" ], + "x-ms-client-request-id": [ "72008f79-98a7-4de9-9bba-34b868ec9330" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2707,40 +2887,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "529c0534-bf7e-4a6a-bfee-84667f6d1817" ], + "x-ms-request-id": [ "fe7782c0-5cac-497a-a734-7c5a95dd12aa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18fb5b2c-8ad3-4c99-837d-1c9bd2f99d28" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2dd15aaf-db25-4a6c-aa20-f651836725be" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2593c298-7b84-4a40-80c4-0b37fddc77b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:2593c298-7b84-4a40-80c4-0b37fddc77b7" ], + "x-ms-correlation-request-id": [ "327d0f7f-4ef9-478c-8dbf-1076e0e7d4de" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020338Z:327d0f7f-4ef9-478c-8dbf-1076e0e7d4de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9CE2C80E175D46EDB7D7AE521173226C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C76CE617A7F4A309F80FBBA05B3397B Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-uj27iozaxb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "227" ], - "x-ms-client-request-id": [ "6d05a886-8b8e-495d-9bce-ea184d5a3600" ], + "x-ms-unique-id": [ "587" ], + "x-ms-client-request-id": [ "5b8d8b5a-c126-4d99-afad-d12a9126048e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2751,42 +2931,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB5D0BBA5D5" ], + "ETag": [ "1DCBE57040668B5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8eb76be9-ccd5-4a44-899f-8a585c0f539a" ], + "x-ms-request-id": [ "7b608f1f-48de-4acd-a0da-dbdab98a155a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3790a057-bb16-46aa-8353-523187b4b8ed" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:3790a057-bb16-46aa-8353-523187b4b8ed" ], + "x-ms-correlation-request-id": [ "0c293d66-bed6-4f8c-b5fb-db3c4a57f44c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020338Z:0c293d66-bed6-4f8c-b5fb-db3c4a57f44c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 82E55EF03C9942E7B395EDA245085AEB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 78949F8E0CCF4E72A1015A170F999E16 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8472" ], + "Content-Length": [ "8276" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-uj27iozaxb\",\"state\":\"Running\",\"hostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Python-uj27iozaxb\",\"repositorySiteName\":\"Functions-Python-uj27iozaxb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\",\"functions-python-uj27iozaxb.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-uj27iozaxb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:03:05.3233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-uj27iozaxb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Python-uj27iozaxb\\\\$Functions-Python-uj27iozaxb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "228" ], - "x-ms-client-request-id": [ "6a13867a-fc26-49fe-a0ca-796c7a29199a" ], + "x-ms-unique-id": [ "588" ], + "x-ms-client-request-id": [ "c44a53fc-dc65-481e-a6b7-6c3b604a745b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2798,40 +2978,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f9bd2cae-2485-4ed3-b975-2e286dd84444" ], + "x-ms-request-id": [ "5856a619-bc72-42fa-92c5-f9d031790f86" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c6f151f-8f56-4bb8-9ede-e4797fa0b9c6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "20a8cf7c-81d7-4631-b37a-b9906937622f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:20a8cf7c-81d7-4631-b37a-b9906937622f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/99fde39c-0a0e-42b9-b0be-55f534f065a2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "5efe2d4b-86e9-460f-b13a-ae797cb4c626" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020338Z:5efe2d4b-86e9-460f-b13a-ae797cb4c626" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 66C62799C34D4B3BA8CB563559C80259 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53421978C0D44093B87E3E301562410F Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-uj27iozaxb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "229" ], - "x-ms-client-request-id": [ "0eaf3415-a023-45a6-82e6-4f0121dc0580" ], + "x-ms-unique-id": [ "589" ], + "x-ms-client-request-id": [ "8881b478-2fe4-4b03-9ad1-ded779c1e453" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2843,41 +3023,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "797ec05c-29ff-4b8e-aa86-16bf21a25b30" ], + "x-ms-request-id": [ "2165f31c-3c75-4642-8b38-69a935b8c79c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0987734-4ff3-4100-ad06-536ba744e6ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a5da7c48-3b7e-493a-9d9a-1fd18b99c19a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f60880fe-0365-43bb-bc93-f08857413003" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001711Z:f60880fe-0365-43bb-bc93-f08857413003" ], + "x-ms-correlation-request-id": [ "47561577-2b04-4d35-b8a1-7a5dc6f08bd4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020338Z:47561577-2b04-4d35-b8a1-7a5dc6f08bd4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1DA9EFF074AE4D29AFC7F1CB48368209 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4881D45C113D46FA9E405472B46798F2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "230" ], - "x-ms-client-request-id": [ "222797be-b9a3-422f-b231-324811f0e238" ], + "x-ms-unique-id": [ "590" ], + "x-ms-client-request-id": [ "d490939b-13cb-4618-b7e4-01b41e75d2cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2888,42 +3068,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB5D0BBA5D5" ], + "ETag": [ "1DCBE57040668B5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d7b4bce-f25c-420a-8bfa-a64a157ce29a" ], + "x-ms-request-id": [ "d7bf371d-cf37-4c41-9bfa-d3ea3dbc8e5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "883bca6e-2a11-4b6b-8a49-c837499b6d47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:883bca6e-2a11-4b6b-8a49-c837499b6d47" ], + "x-ms-correlation-request-id": [ "05a456bb-f7a5-46b7-a2b7-95910fb65567" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020339Z:05a456bb-f7a5-46b7-a2b7-95910fb65567" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62106C3FD0B2457282BEF2988C4AD062 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7C3E77348404C8FB676C5B4238F25B1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8472" ], + "Content-Length": [ "8276" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-7mrsp6yjac\",\"state\":\"Running\",\"hostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Python-7mrsp6yjac\",\"repositorySiteName\":\"Functions-Python-7mrsp6yjac\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-7mrsp6yjac.azurewebsites.net\",\"functions-python-7mrsp6yjac.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-7mrsp6yjac.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:16:39.1333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-7mrsp6yjac\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Python-7mrsp6yjac\\\\$Functions-Python-7mrsp6yjac\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-python-7mrsp6yjac.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-uj27iozaxb\",\"state\":\"Running\",\"hostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Python-uj27iozaxb\",\"repositorySiteName\":\"Functions-Python-uj27iozaxb\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-uj27iozaxb.azurewebsites.net\",\"functions-python-uj27iozaxb.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.13\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-uj27iozaxb.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:03:05.3233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-uj27iozaxb\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Python-uj27iozaxb\\\\$Functions-Python-uj27iozaxb\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-python-uj27iozaxb.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "231" ], - "x-ms-client-request-id": [ "06c8033d-16a5-426f-94c2-aa68d4e099e2" ], + "x-ms-unique-id": [ "591" ], + "x-ms-client-request-id": [ "2936f6f0-86cd-4b39-8120-ea814832e76c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2935,40 +3115,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "733a5577-a030-4a86-b0a6-e47ca74370eb" ], + "x-ms-request-id": [ "00996582-65bc-425b-9824-1928d720b264" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/efe51dbb-b56f-487b-b81c-a895a183747d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/02a448fa-397a-4af8-ab38-08d71fe3ff33" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "951cae2c-ceae-4b8e-a197-48b37328d85c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:951cae2c-ceae-4b8e-a197-48b37328d85c" ], + "x-ms-correlation-request-id": [ "b8bfce1b-a30a-446c-a1ba-95042c58fd2d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020339Z:b8bfce1b-a30a-446c-a1ba-95042c58fd2d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E90A9F80DE1435BBD0D43A811D93D3D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69F3F1FFFFE04ED69E7E46C205F06460 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1209" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-7mrsp6yjac\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-uj27iozaxb\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "232" ], - "x-ms-client-request-id": [ "5ec9e4ad-02b9-403d-bdc3-560b0e22497a" ], + "x-ms-unique-id": [ "592" ], + "x-ms-client-request-id": [ "61067935-89cf-4e73-a92f-d49f282d551c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2980,41 +3160,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7c2e4359-7cca-43ee-b77b-df018779030e" ], + "x-ms-request-id": [ "d785ce04-f651-4ac9-9997-849059b40f9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0576067-3aef-41d3-91f2-eab7f75a24c0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20df01dc-3cb1-4ad3-966f-3745ab85524c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6524ce71-e68d-4b1e-b8f6-5413f64559a9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:6524ce71-e68d-4b1e-b8f6-5413f64559a9" ], + "x-ms-correlation-request-id": [ "95a0416a-d05d-4884-a841-ce1d64c08489" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020339Z:95a0416a-d05d-4884-a841-ce1d64c08489" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8091D98988CA441AA9D8EB9940FE6AFA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B71A7A88A1764462947B5A8C4C22FF78 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac/config/web\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb/config/web\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.13\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "233" ], - "x-ms-client-request-id": [ "75efd022-d360-456a-a779-6a4658b18a89" ], + "x-ms-unique-id": [ "593" ], + "x-ms-client-request-id": [ "28ae87f1-4b86-4d07-933e-1756b1ad64b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3026,40 +3206,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06648a34-d75c-49c3-a9dc-18acf6357a96" ], + "x-ms-request-id": [ "b6347ea2-4e4c-45d3-85f5-01e135c19e3a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "18abab99-4f61-41de-9041-e7f12c85f19c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001712Z:18abab99-4f61-41de-9041-e7f12c85f19c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1c186287-8ead-430e-8fb1-fbca9c5dff58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020340Z:1c186287-8ead-430e-8fb1-fbca9c5dff58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9EF2AD8C04C470B8EBD085901D40354 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18A8097E22E0471DB65053FC3E98833C Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Linux functions apps should not set the \u0027WEBSITE_NODE_DEFAULT_VERSION\u0027 app setting+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Python-7mrsp6yjac?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Python-uj27iozaxb?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "234" ], - "x-ms-client-request-id": [ "1da8c060-d373-4928-878e-7e708901fa8b" ], + "x-ms-unique-id": [ "594" ], + "x-ms-client-request-id": [ "0cdcf5fd-8e99-4c10-a9e3-daea2d20373f" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3070,20 +3250,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB5D0BBA5D5\"" ], + "ETag": [ "\"1DCBE57040668B5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "270cee1c-f6bb-46b9-9853-5b60b7e3b0c1" ], + "x-ms-request-id": [ "e9f69577-618b-4f4c-b0b8-1fd80a1d097d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/78da1bb3-92cf-477a-a089-5853594fa7bf" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "d3cdcf11-6763-4be1-b7ae-f256daae1ea3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001719Z:d3cdcf11-6763-4be1-b7ae-f256daae1ea3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c2e5b69-e369-4ca9-92e4-c178bf719f54" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "5c02a5e0-1dc9-4e01-aa57-900edc9721f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020346Z:5c02a5e0-1dc9-4e01-aa57-900edc9721f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 525AC54DA2D44ACB8019FA72D1F8AFDC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ED8720355D134B4EB17F27E35FE1C745 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3097,7 +3277,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3112,18 +3292,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "08fa7105-c25e-4da7-b323-4177394fd0a5" ], + "x-ms-request-id": [ "e6048e81-6c49-4b0b-8513-0a72949083fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/88bb1c7d-2d35-4691-a978-d8d41828196b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/fea5d1da-3e13-4c6b-9656-bd5faf46f5dd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "65796f42-9212-4f5a-9fad-38e73fe68363" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001720Z:65796f42-9212-4f5a-9fad-38e73fe68363" ], + "x-ms-correlation-request-id": [ "588b1ce0-ded3-47bd-915a-4de61f2b1c79" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T020347Z:588b1ce0-ded3-47bd-915a-4de61f2b1c79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EFFB939FB21B4B1B8B049BC4196D1F19 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD9562386E47483988FCB0742474A3A9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3141,12 +3321,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "236" ], - "x-ms-client-request-id": [ "d57e534e-07d5-44a0-a476-742a1198cbd2" ], + "x-ms-unique-id": [ "596" ], + "x-ms-client-request-id": [ "2e8d15d6-2e8d-49e9-9c24-01b1fbe732db" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3158,18 +3338,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dbd82b5c-a011-45fc-a4a1-ef406969d494" ], + "x-ms-request-id": [ "b4214fe5-34e8-4280-a420-158c4c71fdc9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/0c98da0b-21c3-471e-96bc-e425989dc675" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "48781627-545a-4ea3-b30f-0836faafa557" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001720Z:48781627-545a-4ea3-b30f-0836faafa557" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be7b6480-fe72-4aec-a2e6-dc465ca3a093" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "16c01e65-5b4d-4d29-b502-eb8061dcbe25" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020347Z:16c01e65-5b4d-4d29-b502-eb8061dcbe25" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1EA279BAD5E74C19BEC9CFE1BE88D526 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8129B1CCEBC74B638EB1A009E536DC8B Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "37708" ], @@ -3187,12 +3367,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "237" ], - "x-ms-client-request-id": [ "562e38ac-ff7d-45fe-8f3d-e2583df6a715" ], + "x-ms-unique-id": [ "597" ], + "x-ms-client-request-id": [ "1cdd3e92-93b6-40ad-b6e9-6b311e7fe54b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3203,40 +3383,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "df5ebd21-d6fd-4824-8090-a6ed19dd3000", "fba37e9e-ffe7-47ed-beed-799fb83e2cf8", "b80e26ea-07c9-4e8d-b7f0-89c0b0794761" ], + "x-ms-original-request-ids": [ "4f3a0c25-430f-4cb6-8d0a-6fe0e40f00f6", "1853f37a-dcc9-4e5d-83a6-67a092f79fb0", "21c21e5a-6dcd-4db4-8be7-f9c235dea170" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e1370e22-027f-4abb-a636-9338a7eefcc9" ], - "x-ms-correlation-request-id": [ "e1370e22-027f-4abb-a636-9338a7eefcc9" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001720Z:e1370e22-027f-4abb-a636-9338a7eefcc9" ], + "x-ms-request-id": [ "9454fd01-bf94-49d8-89e2-48d8140623de" ], + "x-ms-correlation-request-id": [ "9454fd01-bf94-49d8-89e2-48d8140623de" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020347Z:9454fd01-bf94-49d8-89e2-48d8140623de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB4059DB6CB54199A1977FFB5A7F9080 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FAF2D35A8884CCAA7DB992E589805EA Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "238" ], - "x-ms-client-request-id": [ "589bc0e4-1cfe-4509-a6f8-ac0462f4124c" ], + "x-ms-unique-id": [ "598" ], + "x-ms-client-request-id": [ "58cc1ec9-a8dc-46ea-90cc-f8e93c4ea0f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3247,16 +3427,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "55c6485e-8116-4db7-9805-f304c9dae1d1" ], + "x-ms-request-id": [ "77a119cb-4d60-4a74-8e8c-1d5981ffb485" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/843b40f7-e3e8-48b1-9d20-31ad4bf59e79" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2d8b0e0-e4e8-49fa-9904-ba1e39d24ae9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0f196c60-8e00-4c5d-97cc-909aaa443946" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001721Z:0f196c60-8e00-4c5d-97cc-909aaa443946" ], + "x-ms-correlation-request-id": [ "3ae0f3c1-296a-4086-b6e2-daa30b55d70b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020348Z:3ae0f3c1-296a-4086-b6e2-daa30b55d70b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6E857FFA641B42598ABC07697C3C032F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DEFAE10996B4B5EA005B74F90D7FA5D Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -3267,10 +3447,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Insights/components/Functions-PowerShellTest-0yltam84vr?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Insights/components/Functions-PowerShellTest-0yltam84vr?api-version=2015-05-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -3290,30 +3470,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ce45212-c478-462b-a738-c8513d5e8677" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "f2ada9de-d319-4bf2-bf31-7cf7c5a784f7" ], - "x-ms-correlation-request-id": [ "f2ada9de-d319-4bf2-bf31-7cf7c5a784f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001727Z:f2ada9de-d319-4bf2-bf31-7cf7c5a784f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4b4ea8b7-9924-4b56-8bd9-59fe59ee979b" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-request-id": [ "0f1abdce-8c18-4180-b991-ab3373659919" ], + "x-ms-correlation-request-id": [ "0f1abdce-8c18-4180-b991-ab3373659919" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020354Z:0f1abdce-8c18-4180-b991-ab3373659919" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E475B57B56D443CFA1C050CD63365ABA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:17:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33974376D20446EF96211F01D67DD3AC Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:03:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1688" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202a251-0000-0300-0000-69c47b170000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"AppId\": \"db56b95a-3f4f-4eb1-b507-1e5a10443bc4\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"ed7b9976-dd73-42e2-99e4-89a1f8783d15\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"CreationDate\": \"2026-03-26T00:17:21.5953108+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_db56b95a-3f4f-4eb1-b507-1e5a10443bc4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d03ec63-0000-0300-0000-69c7370a0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr\",\r\n \"name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"AppId\": \"a59cc98f-5b2d-4b27-9cad-b2a044d3c9b1\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a98e7df1-235d-4bc8-b8fe-d47dd9f253be\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"CreationDate\": \"2026-03-28T02:03:48.9464693+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr_a59cc98f-5b2d-4b27-9cad-b2a044d3c9b1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-d90zp8nj5h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AppSetting2\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting1\",\r\n \"value\": \"Value1\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0yltam84vr\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AppSetting2\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting3\",\r\n \"value\": \"\"\r\n },\r\n {\r\n \"name\": \"AppSetting1\",\r\n \"value\": \"Value1\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -3327,43 +3507,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB5F01FF180\"" ], + "ETag": [ "\"1DCBE57241B32AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec613a3d-c2da-4ba4-9f9a-54393da890eb" ], + "x-ms-request-id": [ "a2a9d771-5027-46e6-92a9-697945549a47" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0b9617cf-8b4e-43cc-9f7c-34b81bfc2dab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/54d57092-d07b-4650-b508-28d1575a0ea8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "653d6ff0-dc60-4890-8cd0-40af0d3bd3a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001810Z:653d6ff0-dc60-4890-8cd0-40af0d3bd3a5" ], + "x-ms-correlation-request-id": [ "bba87819-8a91-4cfb-b6d6-3ca03f7f11bf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020438Z:bba87819-8a91-4cfb-b6d6-3ca03f7f11bf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A034D9E140A4C48B28251037B6DDC54 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:17:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB8821A0D374443BB7D4AFD218A570EE Ref B: MWH011020809062 Ref C: 2026-03-28T02:03:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:04:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8987" ], + "Content-Length": [ "8469" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:17:30.1666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:03:58.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "241" ], - "x-ms-client-request-id": [ "6d5d3d25-078f-435a-b355-9b52cdd67d42" ], + "x-ms-unique-id": [ "601" ], + "x-ms-client-request-id": [ "b2fbeba3-d021-4b52-a5fd-dbbeee58c582" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -3373,42 +3553,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6070C7940" ], + "ETag": [ "1DCBE573BA8F675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36b8984e-8343-4f10-9750-f0b55aa51a4f" ], + "x-ms-request-id": [ "3aaa096e-219e-4441-a6d2-3a40725417a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49379a7f-f993-449c-80c7-03937622f25d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001841Z:49379a7f-f993-449c-80c7-03937622f25d" ], + "x-ms-correlation-request-id": [ "45a96610-be5d-41b6-b605-eee329696368" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020509Z:45a96610-be5d-41b6-b605-eee329696368" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C2EBACB73434CCEA25F54392E1EA708 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B95B7DF8849942F48EBB398B072F6D93 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8781" ], + "Content-Length": [ "8268" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:04:38.6633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "242" ], - "x-ms-client-request-id": [ "71a71025-1f86-4e4f-ac01-c9491594773b" ], + "x-ms-unique-id": [ "602" ], + "x-ms-client-request-id": [ "c00ab076-701b-49c9-8c90-c80b33f42a16" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3419,42 +3599,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6070C7940" ], + "ETag": [ "1DCBE573BA8F675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1154f96-cbda-4307-8bbb-c1100523c716" ], + "x-ms-request-id": [ "5a03c0c9-f617-4128-b615-c32fdc7b077e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c32647d1-df5b-420a-98be-9190d5a33cc0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001842Z:c32647d1-df5b-420a-98be-9190d5a33cc0" ], + "x-ms-correlation-request-id": [ "74b14f2a-634a-44c9-b9b5-7fbfd8603c06" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020510Z:74b14f2a-634a-44c9-b9b5-7fbfd8603c06" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63CC80CEB0F44CA99AD351B5F7967F4B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D62F1728416E4F5682622F0FE2120F04 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8781" ], + "Content-Length": [ "8268" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:04:38.6633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "243" ], - "x-ms-client-request-id": [ "ac9de2c4-1d89-42f7-ab9f-b89f4beef62b" ], + "x-ms-unique-id": [ "603" ], + "x-ms-client-request-id": [ "f1db2aa7-07ed-4497-ae65-e7706734d073" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3466,40 +3646,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c9bad68-c662-4918-9929-e312ceecb1e6" ], + "x-ms-request-id": [ "8a8a1d3a-7ad5-4919-be80-54e666cb5680" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c376fe09-5a25-4a23-b2b0-cc94eb8c617f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4522cc1e-0e22-4e54-adc9-a1e294e98076" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1ce81c44-afac-4912-8724-b3a19ed9cc8a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001842Z:1ce81c44-afac-4912-8724-b3a19ed9cc8a" ], + "x-ms-correlation-request-id": [ "7673f5b5-f083-4ec7-b040-6fda3e469632" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020510Z:7673f5b5-f083-4ec7-b040-6fda3e469632" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9DBF4D5646424586904A32F771E3C980 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B69CAFB88AC49A18C1288EC193BA044 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "244" ], - "x-ms-client-request-id": [ "6970032c-da93-4122-8ec9-2011f879b6f3" ], + "x-ms-unique-id": [ "604" ], + "x-ms-client-request-id": [ "fee9724d-68f6-4202-abf5-519c01349e3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3511,41 +3691,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7638f53b-17e3-4378-82b5-7360044503e4" ], + "x-ms-request-id": [ "580e79cd-3001-416a-8276-ed2fea30a5da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/13c4629c-e533-47f3-aa02-b5170341121e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33e8dea3-2196-48a8-b344-020628913dc7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a0e14de8-b69b-4d0c-8e6c-1d464c4c9c76" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001842Z:a0e14de8-b69b-4d0c-8e6c-1d464c4c9c76" ], + "x-ms-correlation-request-id": [ "007660a8-90fe-4d87-b62b-264df0baed28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020510Z:007660a8-90fe-4d87-b62b-264df0baed28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0ACA439ED08846DEB2BFA5193B7057AB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A3426C83A92B42D6868185B53165DD9E Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "245" ], - "x-ms-client-request-id": [ "f58f93b6-672f-4433-8f19-400bfe53c50f" ], + "x-ms-unique-id": [ "605" ], + "x-ms-client-request-id": [ "8733bf24-8fd5-4e8b-a66a-49937ce8ead6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3557,40 +3737,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb0bea31-645f-4e6f-bfd5-f9458458ceb9" ], + "x-ms-request-id": [ "390d6010-9319-4d68-a6d0-6bc460661bfb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eebdba9f-21a6-4a67-8632-168311bfd525" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/33ce26ba-032a-4db4-8efc-aa9374ec973a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "acd68b64-dfc9-4909-bf49-8e6a780eec29" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001843Z:acd68b64-dfc9-4909-bf49-8e6a780eec29" ], + "x-ms-correlation-request-id": [ "7b7fcaaf-91e1-4d3f-8b85-43073258cfa6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020511Z:7b7fcaaf-91e1-4d3f-8b85-43073258cfa6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 12ED82404F694698B9DDDE7E34CFC274 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DA9B66FAE874FB78FFEF98AE93C92C9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "246" ], - "x-ms-client-request-id": [ "2329e9d5-9606-41a2-b0e4-f888b0b50035" ], + "x-ms-unique-id": [ "606" ], + "x-ms-client-request-id": [ "58a1cd16-61ae-487e-b3aa-75d8cd91ffa9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3601,42 +3781,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6070C7940" ], + "ETag": [ "1DCBE573BA8F675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da5eda9b-03af-4f7e-b2f5-1d257368a86f" ], + "x-ms-request-id": [ "9d9fb8ac-d4da-462b-aa8e-2bd7726975e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c9064644-a6a0-4702-9e1c-fed7e0456e47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001843Z:c9064644-a6a0-4702-9e1c-fed7e0456e47" ], + "x-ms-correlation-request-id": [ "2eb6dd7b-6813-4142-b6a2-bc6d972e1250" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020511Z:2eb6dd7b-6813-4142-b6a2-bc6d972e1250" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E49E9DFFCF52486D9572A786C15BDC36 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 019008BF2E1E42E9BAC3FBC52B95338A Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8781" ], + "Content-Length": [ "8268" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:04:38.6633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "247" ], - "x-ms-client-request-id": [ "a3584df1-2959-4fd2-869d-2febd8083444" ], + "x-ms-unique-id": [ "607" ], + "x-ms-client-request-id": [ "5df80d2e-d483-4dca-9777-f9fc7966d02a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3648,40 +3828,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "03e47b29-f826-47fd-97bb-c1fbbe87ab89" ], + "x-ms-request-id": [ "7c1382ad-3cfc-4f7a-be1a-a8cffe6e8c30" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed8ab0f5-6b34-4078-834b-575a206cc20b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/25450300-bc72-4fc9-bd51-85c727b27ed7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "476996b1-7755-480b-b386-139fc271528f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001843Z:476996b1-7755-480b-b386-139fc271528f" ], + "x-ms-correlation-request-id": [ "7a531f2e-a51b-4d9e-b9b3-08ef4da59f04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020511Z:7a531f2e-a51b-4d9e-b9b3-08ef4da59f04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80FA2C73B7444D21841F4B21236A15EC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 93A2481D4CBB4A2380C405733C3D90FF Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "248" ], - "x-ms-client-request-id": [ "43965cbf-f40a-41f8-863c-821257e61140" ], + "x-ms-unique-id": [ "608" ], + "x-ms-client-request-id": [ "dd933762-494c-44ab-801f-87a84e94a66a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3693,41 +3873,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a5c2558-9e5a-4947-a2f9-98361d8dbc47" ], + "x-ms-request-id": [ "d7bb0a89-7297-4903-aeec-2177f966bce0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8403861e-4cd8-47be-8349-94dd500dc3dd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70f9d080-f8c0-4dbe-b7d9-4f2ce4f2687d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eb88d103-b3d4-4d1d-b7db-f6305a65c503" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001844Z:eb88d103-b3d4-4d1d-b7db-f6305a65c503" ], + "x-ms-correlation-request-id": [ "f45f2fab-74dc-4a16-a2af-975bc8509d76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020512Z:f45f2fab-74dc-4a16-a2af-975bc8509d76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0CC3878BC6424B9FA5743B39CCBE8270 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4473B1946F98484DB0D8305BB6827C02 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "249" ], - "x-ms-client-request-id": [ "f6f493ab-b998-4d56-9147-e336c48aa503" ], + "x-ms-unique-id": [ "609" ], + "x-ms-client-request-id": [ "11c1f8f6-7541-41d2-976a-c04aa5c69e28" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3738,42 +3918,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6070C7940" ], + "ETag": [ "1DCBE573BA8F675" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5267004a-7156-49e2-9a17-9215950a2ab7" ], + "x-ms-request-id": [ "f5daa425-6f5a-4ec2-bb04-a180cb6cb25d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "51c6b72e-5bed-47e3-9b42-1624a1f114f5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001844Z:51c6b72e-5bed-47e3-9b42-1624a1f114f5" ], + "x-ms-correlation-request-id": [ "ff24d77f-dcf1-4dd1-be10-257f8b254c94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020512Z:ff24d77f-dcf1-4dd1-be10-257f8b254c94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4647F2917B9E40C5AD01F2B953CD3299 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5AE8A4C644744BCA50E52858115E538 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8781" ], + "Content-Length": [ "8268" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:18:10.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:04:38.6633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "250" ], - "x-ms-client-request-id": [ "14a5e96a-8cf5-4162-bd86-9bdd0136d699" ], + "x-ms-unique-id": [ "610" ], + "x-ms-client-request-id": [ "5d776e25-c7e3-444a-9404-a81dc022f22c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3785,40 +3965,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98b9c73c-90e4-404d-98e0-040c18a483b5" ], + "x-ms-request-id": [ "28c6a9b5-a575-46d2-8e14-e1c6f6ea9d4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/38e44b69-f5ae-4c97-8f55-b2647f200fe0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5209a6bd-6911-44ce-97c8-294f0998f497" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "74d35490-bc93-4988-8d12-9583f379c8ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001845Z:74d35490-bc93-4988-8d12-9583f379c8ca" ], + "x-ms-correlation-request-id": [ "a297af05-5f1d-4c04-9eb3-c96dc5f62a9d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020513Z:a297af05-5f1d-4c04-9eb3-c96dc5f62a9d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C57B5EDF57644FF485EE6C8A540D88A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9DA53C7C3E4A430C85A98B10C9480D02 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1300" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AppSetting2\":\"\",\"AppSetting3\":\"\",\"AppSetting1\":\"Value1\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "251" ], - "x-ms-client-request-id": [ "daea118f-d7a6-4bf1-9257-7519e6e6656f" ], + "x-ms-unique-id": [ "611" ], + "x-ms-client-request-id": [ "09a42a97-ee94-4686-9065-199ec10aee0b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3830,41 +4010,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22f18149-127c-4431-bb8d-8cac6fec035c" ], + "x-ms-request-id": [ "66112ebd-0182-411d-9823-52c6a7f131b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b5618ad7-823a-4490-886b-d339269e6209" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d57fef54-7b6c-4573-9d28-733b6132fefe" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "35a4b084-a680-49d3-8170-84aa11e3e7b9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001845Z:35a4b084-a680-49d3-8170-84aa11e3e7b9" ], + "x-ms-correlation-request-id": [ "bb3131e9-3118-4eb0-affb-7ecd389cb401" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020513Z:bb3131e9-3118-4eb0-affb-7ecd389cb401" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B40B3E5EF31D4BC993D50E74BBF37621 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8410DE6DD844580A000F7EC8DEA317A Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4254" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "252" ], - "x-ms-client-request-id": [ "9196126d-9f88-4b87-aca1-626eb6b230c1" ], + "x-ms-unique-id": [ "612" ], + "x-ms-client-request-id": [ "502def3e-bacb-4468-9334-63ab23c6bb72" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3876,40 +4056,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67489a8c-1115-44b0-b973-550c97e17c76" ], + "x-ms-request-id": [ "15c5c4e0-058c-4337-9cc3-79398357d72f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "52509aa0-3725-4c2c-b344-6dad303a6b97" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001845Z:52509aa0-3725-4c2c-b344-6dad303a6b97" ], + "x-ms-correlation-request-id": [ "b38962a0-c29e-4d16-93ac-93a63f84c167" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020513Z:b38962a0-c29e-4d16-93ac-93a63f84c167" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 839FBE15C0604705B06AA36BE4460C5F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 235B0CFB0B2A4F58AB3E68E2769FEC9F Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:13 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create Windows Consumption app and validiate app properties: 1) Location 2) App settings 3) Connection string suffix+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "253" ], - "x-ms-client-request-id": [ "50116969-6a04-4313-99b8-2404da7119c0" ], + "x-ms-unique-id": [ "613" ], + "x-ms-client-request-id": [ "01f4fd29-d615-47b9-a368-b5ac89763c15" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3920,20 +4100,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB6070C7940\"" ], + "ETag": [ "\"1DCBE573BA8F675\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ff13d801-a323-4404-8821-cb23782460fc" ], + "x-ms-request-id": [ "1f017188-73e9-47dd-a02a-da106e5cfb5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94ccd418-d99e-46b2-8e96-96cb9d5b0d64" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b488153c-4c9e-4663-9f20-ed7046e61a73" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "6ef4dbda-229b-46f5-8170-b900f99c3590" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001855Z:6ef4dbda-229b-46f5-8170-b900f99c3590" ], + "x-ms-correlation-request-id": [ "6392bdb7-4e50-4b02-8501-baeefdf90742" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020522Z:6392bdb7-4e50-4b02-8501-baeefdf90742" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A97AB18403964737B90B2CF1BABCFBEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D24173146E3466CBF5C9492FDF20D3A Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3947,7 +4127,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3962,18 +4142,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74dd823c-7a45-4700-9de7-87496b501553" ], + "x-ms-request-id": [ "f823c60e-d2ee-47c7-b3f3-d04a980c9deb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/78504e0e-1e03-49f0-89b8-59c332ff41d9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/619bbbdf-3593-4e80-9dde-9a40c4a0c37f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84aabcdb-d3e3-40ed-b896-eaf87760a22a" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T001856Z:84aabcdb-d3e3-40ed-b896-eaf87760a22a" ], + "x-ms-correlation-request-id": [ "0fcdeb42-1fd0-4ec3-bce4-c381919d2c7c" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020523Z:0fcdeb42-1fd0-4ec3-bce4-c381919d2c7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1F1D30C0DCCC4D57AD5A75ACF2B9A776 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:55Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 95C3E486BAE744E6B7B9EF763159E5EB Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:22Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3991,12 +4171,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "255" ], - "x-ms-client-request-id": [ "0f94a9e3-5b9c-4262-a9e3-26d6147087a0" ], + "x-ms-unique-id": [ "615" ], + "x-ms-client-request-id": [ "a90ba4c6-7189-4f09-a5b6-8f19730a9a9f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4007,40 +4187,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "4c96612f-2b34-4443-bc0f-46fd16650b6f", "eef10d1f-561e-46b2-93c6-0d6d8c535660" ], + "x-ms-original-request-ids": [ "71568410-f96f-4b3a-ba97-3a6d77ffd582", "840609cd-bf71-4f34-b0ad-2734ff60c41f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "ebd46b67-6c00-48e1-b68f-65bfc0f87200" ], - "x-ms-correlation-request-id": [ "ebd46b67-6c00-48e1-b68f-65bfc0f87200" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T001857Z:ebd46b67-6c00-48e1-b68f-65bfc0f87200" ], + "x-ms-request-id": [ "8a61e209-8344-4384-88c8-ccebe76ce86e" ], + "x-ms-correlation-request-id": [ "8a61e209-8344-4384-88c8-ccebe76ce86e" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020524Z:8a61e209-8344-4384-88c8-ccebe76ce86e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4156FAE622E14D72A91F90D76B7D5B49 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:56Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 686D7825B34D4C61BCC94CFFF5FC0996 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8766" ], + "Content-Length": [ "12078" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "256" ], - "x-ms-client-request-id": [ "337337d8-dffb-4d59-accf-f9f5f6df26a4" ], + "x-ms-unique-id": [ "616" ], + "x-ms-client-request-id": [ "0ccf02b9-d828-4509-ad25-87795aa7b1c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4052,40 +4232,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50518ed0-3ada-4798-9fe8-f0da79bf5cde" ], + "x-ms-request-id": [ "8f06cb11-a5ed-4940-8f82-9dcb36aeff34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "43d10e2e-5f28-4939-bd0a-82dc7603dcdf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001857Z:43d10e2e-5f28-4939-bd0a-82dc7603dcdf" ], + "x-ms-correlation-request-id": [ "a8dd390f-52d4-4a98-a2b7-45f6ebe4cc4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020524Z:a8dd390f-52d4-4a98-a2b7-45f6ebe4cc4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA182AA3D3034E46B8091ACAF4C321AB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 287214E70E564E85B973A7287372BF52 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:24Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "257" ], - "x-ms-client-request-id": [ "1047e5e6-ce5d-46f1-b1ec-504bcc085e4e" ], + "x-ms-unique-id": [ "617" ], + "x-ms-client-request-id": [ "bb46ebcc-1cbb-41c6-a99a-30789034ab0f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4097,40 +4277,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59d11461-1e67-4884-9652-85ec30ac6728" ], + "x-ms-request-id": [ "eea8fadd-e77c-4596-92fb-e34d43b6d279" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37517db6-a08f-4748-8ae0-c495105235f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001857Z:37517db6-a08f-4748-8ae0-c495105235f1" ], + "x-ms-correlation-request-id": [ "be5af8d9-cf6d-40e4-b971-51744bb596eb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020524Z:be5af8d9-cf6d-40e4-b971-51744bb596eb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17E9ABF87BEA4BB69937AC47CECD7025 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEA83D3320B342FC9067158A62B9496F Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:24Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "258" ], - "x-ms-client-request-id": [ "181e995e-c7de-48aa-964c-6f79b3676774" ], + "x-ms-unique-id": [ "618" ], + "x-ms-client-request-id": [ "5a2c8f2d-d34a-46c5-bfc2-308c82ca9fde" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4142,40 +4322,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74c69d2e-687f-44d3-bc31-b5d4c03b7bbe" ], + "x-ms-request-id": [ "585d1b22-d55c-4ce7-b4aa-f431cae33200" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "214f3b1c-ab75-4daa-8fea-7fb8d7b6d3b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001858Z:214f3b1c-ab75-4daa-8fea-7fb8d7b6d3b1" ], + "x-ms-correlation-request-id": [ "d103a59a-6c5c-43f9-a0a4-909ee8c1f1ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020524Z:d103a59a-6c5c-43f9-a0a4-909ee8c1f1ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 677CF91DBD244508BE656D5027FB0F21 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 02E8F84888634C23B8C57F8B44D7E603 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:24Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "259" ], - "x-ms-client-request-id": [ "1734e0cf-abb8-4baf-bc46-a34320e40003" ], + "x-ms-unique-id": [ "619" ], + "x-ms-client-request-id": [ "22342230-e97e-4a93-9700-92bc2ceda984" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4187,40 +4367,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "800388d2-2cf6-4903-b6b7-5118a7b642d7" ], + "x-ms-request-id": [ "ad73b540-2a3b-4fb6-90b9-373868bfc83a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "05389884-6110-4dbb-9591-08a676e34e07" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001858Z:05389884-6110-4dbb-9591-08a676e34e07" ], + "x-ms-correlation-request-id": [ "7ebf0908-e392-41c2-8096-2bd718d6ef96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020524Z:7ebf0908-e392-41c2-8096-2bd718d6ef96" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6CDA4C36CF75498390A6ED537A94FF5A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 526987FAD7BA48E08D37C8A8361F8554 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:24Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "260" ], - "x-ms-client-request-id": [ "eb275c6a-e67b-405b-b68c-bc410fc78661" ], + "x-ms-unique-id": [ "620" ], + "x-ms-client-request-id": [ "5609c1e0-0b87-4b55-bde8-039b028746b8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4232,40 +4412,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5a80e6f-07e1-459e-b03a-071da224c223" ], + "x-ms-request-id": [ "d7a5adde-c7a6-4e8d-867d-128d0f87d068" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1f46a04e-80f4-4c93-b000-a05fac07f7ad" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T001858Z:1f46a04e-80f4-4c93-b000-a05fac07f7ad" ], + "x-ms-correlation-request-id": [ "750c4116-833a-4323-adb9-f1fd026bf60b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020525Z:750c4116-833a-4323-adb9-f1fd026bf60b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA21E76BEB0B472AA302CB0D20A79AA9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42B0646AA6DD433C94F34EAE4DCEA6C9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "621" ], + "x-ms-client-request-id": [ "ba2ac76f-57e0-45a5-bf29-33267b195b20" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "09f4dca6-12fa-4a0c-bd19-a94d901e4889" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aaf37beb-3a71-4096-bec6-fd1c028a9f2d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020525Z:aaf37beb-3a71-4096-bec6-fd1c028a9f2d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 76DA02E72AE44299A7A0EE26207D3568 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1816" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "622" ], + "x-ms-client-request-id": [ "dd364873-4d6d-46b0-9000-44600d85e415" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "a5a8a10e-6f77-4184-b260-23d9d34f8afa" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a255fa73-37ee-4274-ad6c-83cd6ca2874a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020525Z:a255fa73-37ee-4274-ad6c-83cd6ca2874a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BD303CA842494CBA86D6E694D9A57D58 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1696" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":9,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "261" ], - "x-ms-client-request-id": [ "eb923293-6295-4dd2-b798-96a8ee58bd19" ], + "x-ms-unique-id": [ "623" ], + "x-ms-client-request-id": [ "088e404f-7a6d-46c6-a3f0-b2532e228e14" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4276,40 +4546,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "6e10f161-3575-4e82-8857-6b3bb6d3f2da", "1e38873e-d3fb-412a-a913-744d0d120237", "14610417-0c6d-4fb8-9a7c-ce14bac1f345" ], + "x-ms-original-request-ids": [ "7a6faeb1-b260-450d-a92d-35e1b615bca3", "58a6e8f6-d55e-46bf-95a7-82d84d0fcbd4", "9c6d16d6-82ff-4b6a-ac92-20a8607f7bf7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "4ada6c33-c756-42f8-9f4f-123675d331e5" ], - "x-ms-correlation-request-id": [ "4ada6c33-c756-42f8-9f4f-123675d331e5" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T001859Z:4ada6c33-c756-42f8-9f4f-123675d331e5" ], + "x-ms-request-id": [ "633d0d66-e12b-4fd2-8201-95389701d44a" ], + "x-ms-correlation-request-id": [ "633d0d66-e12b-4fd2-8201-95389701d44a" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020526Z:633d0d66-e12b-4fd2-8201-95389701d44a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EA084FCCCDE4CFD9F21D77A0503A8AE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F886498FD4B435CA93EC5F762DE72A6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "262" ], - "x-ms-client-request-id": [ "9437e2d8-1dbb-4b6a-83a4-6699e93bee8c" ], + "x-ms-unique-id": [ "624" ], + "x-ms-client-request-id": [ "8f692fc6-d42f-43d5-a1df-c0afd5cf42b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4320,16 +4590,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "fd9100e5-3fa3-487d-83fb-3f49806141fc" ], + "x-ms-request-id": [ "1c231ac1-ccab-4b85-a540-5e9f9f037a80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/315ea48b-6a6d-473e-9c36-6a9ead07fde8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c328c042-779e-413e-859f-cb3f442d6f07" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5ecbb32f-5a8c-4103-9ba6-4aed95331111" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001859Z:5ecbb32f-5a8c-4103-9ba6-4aed95331111" ], + "x-ms-correlation-request-id": [ "fd72a995-7a18-4c54-87b4-ae971c2028b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020526Z:fd72a995-7a18-4c54-87b4-ae971c2028b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86D5EC9B86764C9381A93AA1168F4DCE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:59Z" ], - "Date": [ "Thu, 26 Mar 2026 00:18:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D50EAAE81699451B8488F07DA256E050 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -4340,10 +4610,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01+10": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-PowerShellTest-0yltam84vr?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-PowerShellTest-0yltam84vr?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -4363,30 +4633,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/182c3fe2-0d4a-4cc2-b803-8f190c141a01" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9bed8788-c7e5-436c-b213-4047b9ab1dc1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "af286bbd-84b4-44af-80fa-14b454443bee" ], - "x-ms-correlation-request-id": [ "af286bbd-84b4-44af-80fa-14b454443bee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001905Z:af286bbd-84b4-44af-80fa-14b454443bee" ], + "x-ms-request-id": [ "473f5581-670d-4117-8c23-9312d1c1bfab" ], + "x-ms-correlation-request-id": [ "473f5581-670d-4117-8c23-9312d1c1bfab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020533Z:473f5581-670d-4117-8c23-9312d1c1bfab" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2872C74D2F3140BD8C2D2C1F763B4ED5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:18:59Z" ], - "Date": [ "Thu, 26 Mar 2026 00:19:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AEC059E59E2A49B78D6A0B52679C845B Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:05:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202095e-0000-0300-0000-69c47b790000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"AppId\": \"dd90b389-c106-473f-8d04-dcc13bc70a14\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8492dd6b-bfa8-42e6-9744-d817aec945a5\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"CreationDate\": \"2026-03-26T00:18:59.7875813+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_dd90b389-c106-473f-8d04-dcc13bc70a14_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d036377-0000-0300-0000-69c7376d0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr\",\r\n \"name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"AppId\": \"99cfda69-0379-4738-9257-1503dbf1bfd7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6756353b-1c54-486a-9e6c-0e0e33dd03f3\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"CreationDate\": \"2026-03-28T02:05:27.6032374+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr_99cfda69-0379-4738-9257-1503dbf1bfd7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-d90zp8nj5h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0yltam84vr\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4400,43 +4670,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB62956DAE0\"" ], + "ETag": [ "\"1DCBE575E3988D5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2df76bd2-106c-4e6c-be05-719136a01e21" ], + "x-ms-request-id": [ "a68e294d-794c-4292-b3a3-c5bb00ad7e26" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/095e1573-50ae-4cd8-a280-32aa0f451b75" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f75fe9ac-3674-4e8f-95ae-fc4350ad44ed" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "320ce8dd-fe51-4e3c-9918-da4e8d66b15d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T001947Z:320ce8dd-fe51-4e3c-9918-da4e8d66b15d" ], + "x-ms-correlation-request-id": [ "06193b6c-e2e3-40ea-a7d8-feffe0399090" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020615Z:06193b6c-e2e3-40ea-a7d8-feffe0399090" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17920633B838455FB9399C754816B23A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:19:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:19:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE031D474F644C968BDD0B2F031AB4A9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:05:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8923" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:07.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:05:35.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "265" ], - "x-ms-client-request-id": [ "b1b4ec25-e218-46d0-86f0-716b0e2413f5" ], + "x-ms-unique-id": [ "627" ], + "x-ms-client-request-id": [ "782ccab2-7d37-42a7-be17-a5d9404e183c" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -4446,42 +4716,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB640BE790B" ], + "ETag": [ "1DCBE57752EB620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac1b5a15-3659-4444-a2d5-ec88d5a5ddce" ], + "x-ms-request-id": [ "1c65bd15-d053-430d-b326-756b2068dfbc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f721b663-b885-450a-a370-fc1124a2e45f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002017Z:f721b663-b885-450a-a370-fc1124a2e45f" ], + "x-ms-correlation-request-id": [ "e6d3f7ff-270b-4e1c-9748-c840618fc62a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020646Z:e6d3f7ff-270b-4e1c-9748-c840618fc62a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B96DDF9713E1443391926E35FE34BF83 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B563B6294C81407798495439D8BB89EC Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8719" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:06:15.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "266" ], - "x-ms-client-request-id": [ "f32d8aab-46c1-4b45-a8fd-63225158aa0c" ], + "x-ms-unique-id": [ "628" ], + "x-ms-client-request-id": [ "9d578d86-50fb-4d6b-a572-49cc9a216f69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4492,42 +4762,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB640BE790B" ], + "ETag": [ "1DCBE57752EB620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "df4d89c5-b62f-4b1d-955e-b6af423fcfb7" ], + "x-ms-request-id": [ "55753a36-4d72-48d3-ab73-d2c0f95a4919" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1b4e7c15-5c02-4336-9e3c-4a6f29fefbd5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002018Z:1b4e7c15-5c02-4336-9e3c-4a6f29fefbd5" ], + "x-ms-correlation-request-id": [ "a2ff44aa-ac87-4484-9886-4fa5fcfb9577" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020646Z:a2ff44aa-ac87-4484-9886-4fa5fcfb9577" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F57C954BEE3B41B88903D41CB4FC9049 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9A86B9F8A164FFCA0751F7948167B91 Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8719" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:06:15.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "267" ], - "x-ms-client-request-id": [ "6b7ad003-f10f-4035-b037-cf1878803520" ], + "x-ms-unique-id": [ "629" ], + "x-ms-client-request-id": [ "b21772fc-6ae7-4a9d-84e7-1cea01f639d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4539,40 +4809,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f13c587-c480-4f02-a1db-c03b47d67433" ], + "x-ms-request-id": [ "fc7fd5f8-5833-4a4a-9f3c-1f56610027e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97700331-4056-4172-9652-1f96dda1f7d4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29838615-a758-4303-be84-5e2cae297925" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d0895f06-4554-4f16-8159-aa6c0fdcbc28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002018Z:d0895f06-4554-4f16-8159-aa6c0fdcbc28" ], + "x-ms-correlation-request-id": [ "0ede85df-ba92-498b-b2d4-253006a82772" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020646Z:0ede85df-ba92-498b-b2d4-253006a82772" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECAD4B232F9441CCAA3E8DA281B870ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EE8087745E474B1D9E9C136191CED5DA Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "268" ], - "x-ms-client-request-id": [ "0c5cd029-afc3-4859-b380-c0746c738e6d" ], + "x-ms-unique-id": [ "630" ], + "x-ms-client-request-id": [ "3e104f4b-4d05-4637-aff9-f79d68690299" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4584,41 +4854,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "825e6938-541b-4fe9-bcd8-752ad73daf17" ], + "x-ms-request-id": [ "8e3d181a-a32c-4bde-a3cc-74fdbf1c19eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feccb480-d735-40ec-a90f-409f30a779f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6aad6ce7-0349-4999-b8e6-c4b920adbe65" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "162244d3-e113-4742-9cde-552a2f93a561" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002018Z:162244d3-e113-4742-9cde-552a2f93a561" ], + "x-ms-correlation-request-id": [ "c740dcc8-a4db-48a9-8557-1315c70e1526" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020647Z:c740dcc8-a4db-48a9-8557-1315c70e1526" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D34D63FE6488445AA40C302C12121473 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 577AF527473D4150B9FD220B6BFB5CF9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88189,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":94757,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "269" ], - "x-ms-client-request-id": [ "e7733fce-03c4-4a93-93c7-af13b3d249c9" ], + "x-ms-unique-id": [ "631" ], + "x-ms-client-request-id": [ "af7ce595-5366-4e33-817f-c5e9ca33a1fc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4629,42 +4899,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB640BE790B" ], + "ETag": [ "1DCBE57752EB620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3746c53d-373f-4123-a99a-2bdc43b2cbf7" ], + "x-ms-request-id": [ "d6abde81-ef2f-4ca8-ac9b-4ce91a9c56e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b8692760-0e68-47ff-a45d-e92505aea1fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002019Z:b8692760-0e68-47ff-a45d-e92505aea1fa" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0a6821f4-d4a3-4b5e-bb8e-5d4c60604918" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020647Z:0a6821f4-d4a3-4b5e-bb8e-5d4c60604918" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C75824DFEB8447589EA0F005D0B20E6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 942007C0C518481AB65BE9BB7FE8F17A Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8719" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:06:15.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "270" ], - "x-ms-client-request-id": [ "3f885545-f44d-469b-a5b0-7312921a8a34" ], + "x-ms-unique-id": [ "632" ], + "x-ms-client-request-id": [ "08dd20cb-f1d2-4613-8121-d7ca454a3962" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4676,40 +4946,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c27d8616-6ed8-4a95-b14c-b99832c55293" ], + "x-ms-request-id": [ "d0dc7ee5-c9ad-4e36-95c7-b2cbe6eb4486" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a182b042-0be3-427b-9960-18d5e0dac9a5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c5d0f4b5-dedd-4226-8bc1-a77e495531ca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "83e9fcc8-9dd9-42be-92c7-ad8720fdb72f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002019Z:83e9fcc8-9dd9-42be-92c7-ad8720fdb72f" ], + "x-ms-correlation-request-id": [ "79ab8b91-b68c-4270-89ad-cd4fd698ab94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020647Z:79ab8b91-b68c-4270-89ad-cd4fd698ab94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16255272C74748E4AAA1D852B15B6869 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F513062A259949D4A772CC21DDE7DDD0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "271" ], - "x-ms-client-request-id": [ "fb08f7f5-38cd-4718-b1bc-da4f9371026e" ], + "x-ms-unique-id": [ "633" ], + "x-ms-client-request-id": [ "429d1f11-7394-4620-ba13-e677e632011e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4721,41 +4991,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6b0e529-c056-4896-a6d6-d5fba855f2e2" ], + "x-ms-request-id": [ "d43cd599-a7b6-44a5-bf4a-de90449844ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/af0d3446-eac1-4a23-8478-b32d539c526a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e54c52c-8e9f-474e-85f0-afff5a793dff" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df730b8f-d8c5-45fa-b2c1-5e6a53198bea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002019Z:df730b8f-d8c5-45fa-b2c1-5e6a53198bea" ], + "x-ms-correlation-request-id": [ "a20c7eb9-fc66-4380-9369-bd79bd2c5289" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020647Z:a20c7eb9-fc66-4380-9369-bd79bd2c5289" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E18BFE013C814ADBB53A1066D6E84E77 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D800C8841093429CAF147D0506BB54DE Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88189,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":94757,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "272" ], - "x-ms-client-request-id": [ "ee48425d-3a9b-408e-accc-9cb8963e82ad" ], + "x-ms-unique-id": [ "634" ], + "x-ms-client-request-id": [ "716b6837-c85b-404e-9a13-a9242dd21422" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4766,42 +5036,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB640BE790B" ], + "ETag": [ "1DCBE57752EB620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1aa1c0db-f6b5-44fa-a596-34746952034b" ], + "x-ms-request-id": [ "e6704e4a-64e5-44e6-8a6e-46ea51bd6a28" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a93ce4ed-3114-40b0-9f8f-e9e6a2b23981" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002020Z:a93ce4ed-3114-40b0-9f8f-e9e6a2b23981" ], + "x-ms-correlation-request-id": [ "75d05658-ecf0-4cf1-8173-c2bc035e4c12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020648Z:75d05658-ecf0-4cf1-8173-c2bc035e4c12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7102B295EABF49B48FEE1DAC9D60F36B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31DE60030A234F8EB4F68A6AB80A2881 Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8719" ], + "Content-Length": [ "8714" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:19:47.0566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:06:15.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "273" ], - "x-ms-client-request-id": [ "a6fa5d6b-942a-43d4-9189-f3ab6c44e87a" ], + "x-ms-unique-id": [ "635" ], + "x-ms-client-request-id": [ "ba55c24d-fe94-49f7-9753-cbab87cc0116" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4813,40 +5083,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f96427c2-a9d0-456f-9766-3af8d31f7ff3" ], + "x-ms-request-id": [ "817f7efa-e5da-403d-9625-8ca6a3994037" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4f7f76b9-50a8-46ba-8b4d-9e1cf21a8669" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f55ef478-5370-4f06-84bc-c081eaa46f15" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c18b21b3-0745-4336-9788-8bda793f7865" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002020Z:c18b21b3-0745-4336-9788-8bda793f7865" ], + "x-ms-correlation-request-id": [ "a228a880-8bc7-4ea7-a951-cc6143dd2c5a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020648Z:a228a880-8bc7-4ea7-a951-cc6143dd2c5a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 705DD3439E444BD3A54AE1819691A99B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 36AE9195F18A4D6DB8D5B83EEB074428 Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "274" ], - "x-ms-client-request-id": [ "87e4c133-e6d8-42d5-8992-4180c9a78ea9" ], + "x-ms-unique-id": [ "636" ], + "x-ms-client-request-id": [ "2dff7977-c3e6-4c50-9c76-7de267f5ad17" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4858,41 +5128,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "648e695a-ef55-4a81-adc7-7930cfdce71f" ], + "x-ms-request-id": [ "918b38d4-a851-440b-98d2-154afe01a7f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80bed76e-ecf2-4ce1-8c6e-8dd94e4c7e85" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62ae2db4-3c25-46f9-b92a-feda0c7f0058" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002020Z:62ae2db4-3c25-46f9-b92a-feda0c7f0058" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df6085f1-3920-4d8c-95e2-ed7678df127b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "db19380f-ecb1-414c-be6f-d470a94d223e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020648Z:db19380f-ecb1-414c-be6f-d470a94d223e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 090BEE8B249D4839ADEFDEC78FD7978C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EC537D9AB4D7461A8671A868422D599C Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88189,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":94757,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "275" ], - "x-ms-client-request-id": [ "99e47510-e561-4133-ae47-6a9a8a651c7b" ], + "x-ms-unique-id": [ "637" ], + "x-ms-client-request-id": [ "78f84007-ac74-4450-b517-af2954a3b294" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4904,40 +5174,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f96e47b-5d10-4639-b4c9-dbeb67c8d516" ], + "x-ms-request-id": [ "1420200a-aba7-4fd6-b039-203107b42f29" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2aab00e6-993d-4bc1-9bc6-d328f7a55b11" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002021Z:2aab00e6-993d-4bc1-9bc6-d328f7a55b11" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c220eeab-b9b3-401f-95b7-f94a4f1b8de8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020649Z:c220eeab-b9b3-401f-95b7-f94a4f1b8de8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5760295A4430404A85E633349E0C22EA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3318EF4B814484C866E2D271F87B82E Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create a function app with \u0027UserAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "276" ], - "x-ms-client-request-id": [ "c01d70b0-c4cb-4949-b441-4a5c76585e53" ], + "x-ms-unique-id": [ "638" ], + "x-ms-client-request-id": [ "b4b7f165-672b-4b56-9f33-448dfd499a8b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4948,20 +5218,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB640BE790B\"" ], + "ETag": [ "\"1DCBE57752EB620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f341a72c-b337-492a-a939-1cbd87dc43cc" ], + "x-ms-request-id": [ "0919c454-c64b-4283-b7c7-deb30226ab0a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6cdb2ea9-a5df-4734-923d-25a75f4ed5ea" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "bd23e392-edbb-41c7-9c5d-efb5fc72bbb6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002029Z:bd23e392-edbb-41c7-9c5d-efb5fc72bbb6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/41c9feb7-1903-445c-bd45-0d3ee4e194ae" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "6c2b74bd-d3e4-4251-8e63-d756225ec279" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020657Z:6c2b74bd-d3e4-4251-8e63-d756225ec279" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9740F5EEF1CC4299BFC267520AEABBB1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A648AC8F734E48BE81BEAFC5CD1B315F Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:57 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4975,7 +5245,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -4990,18 +5260,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96bb7cbd-d413-4939-ba3d-8f388922d848" ], + "x-ms-request-id": [ "c104b35a-7543-4346-8f19-9af23acc0f55" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/c983526d-7dbf-4521-b7b7-306b0b344bae" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/0e8f6cc1-58a3-4d58-b1fc-11d92f02c998" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9d163838-eb26-4867-b026-dd6db1ea1c19" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T002029Z:9d163838-eb26-4867-b026-dd6db1ea1c19" ], + "x-ms-correlation-request-id": [ "1694689c-7262-4635-bec2-ec1632b5e533" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020658Z:1694689c-7262-4635-bec2-ec1632b5e533" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46102B4A019740AF914619EB278861A2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21094E6DE7EB4438A5B7FCB5E6741548 Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -5019,12 +5289,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "278" ], - "x-ms-client-request-id": [ "19595cd1-42d7-4165-9aae-c99e2c49ea30" ], + "x-ms-unique-id": [ "640" ], + "x-ms-client-request-id": [ "3ba5be14-72c0-4041-a479-1125ac23dba8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5035,40 +5305,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "a3d02a01-0ab9-4529-8ccb-0f32b503f1ac", "560b4076-b88c-4e51-b778-8a5af4da6a4d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "43eb903d-82fc-4cd8-93ef-0837bc8b39b9" ], - "x-ms-correlation-request-id": [ "43eb903d-82fc-4cd8-93ef-0837bc8b39b9" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T002031Z:43eb903d-82fc-4cd8-93ef-0837bc8b39b9" ], + "x-ms-original-request-ids": [ "31ab8961-c427-4062-a2a7-181c970aca17", "0825d567-c342-454d-9e2a-69a073c6ebbf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "e57f9310-70c2-4ecd-8d44-5799e079df56" ], + "x-ms-correlation-request-id": [ "e57f9310-70c2-4ecd-8d44-5799e079df56" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020659Z:e57f9310-70c2-4ecd-8d44-5799e079df56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3FA1A37DFC149E09C611CFA2F7DF824 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 927F34B9DD7A48DD92FDA19D6C5AF7CB Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8766" ], + "Content-Length": [ "12078" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "279" ], - "x-ms-client-request-id": [ "913a5a0c-d588-4295-a31c-a73b91345ca8" ], + "x-ms-unique-id": [ "641" ], + "x-ms-client-request-id": [ "0e324f28-e8ea-47dd-8ea6-1cec1998c334" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5080,40 +5350,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc745daa-1fc0-4633-9f94-331fc467800c" ], + "x-ms-request-id": [ "d56cd5d0-f073-4691-b055-72f5ddf81d3b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5afa618c-e16a-40d6-a946-bc3e799c5784" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002031Z:5afa618c-e16a-40d6-a946-bc3e799c5784" ], + "x-ms-correlation-request-id": [ "da35dd1e-84e1-464a-b37d-f1cf8297be46" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020659Z:da35dd1e-84e1-464a-b37d-f1cf8297be46" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4B915F9CB2BF421485065DA5DCAD46A8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA934932BD1F4E229D73186DFBA7925F Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "280" ], - "x-ms-client-request-id": [ "b81232ff-ca13-4e73-8aec-e31a1bcd114c" ], + "x-ms-unique-id": [ "642" ], + "x-ms-client-request-id": [ "a0bfa789-7ae2-49bd-bd81-523e1a54e3d3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5125,40 +5395,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "474ce282-8118-419c-997f-4a821a149d1a" ], + "x-ms-request-id": [ "b96fa3a6-9240-47cb-8ba8-48063372b8d5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "86678242-6c38-424b-89e0-cf028c303fda" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002031Z:86678242-6c38-424b-89e0-cf028c303fda" ], + "x-ms-correlation-request-id": [ "e6044cda-3daf-4022-adbb-240cc3092c67" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020659Z:e6044cda-3daf-4022-adbb-240cc3092c67" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7CC9DF6331842CAA9576AFB39C28284 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C8AF1F9A034A4CC7A58A753ABCCDDE20 Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "281" ], - "x-ms-client-request-id": [ "5ccfc5ef-48cc-4c0d-bf2a-9b29278d48d3" ], + "x-ms-unique-id": [ "643" ], + "x-ms-client-request-id": [ "ab86a642-06d0-42d2-ba86-d372f6fcce7d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5170,40 +5440,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a1a6f942-d854-4e73-944c-74cb69f82019" ], + "x-ms-request-id": [ "e77e29d2-03db-4b5b-9b50-74716b727f5a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f508c9a-229b-47d2-94e7-f9350a005952" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002031Z:6f508c9a-229b-47d2-94e7-f9350a005952" ], + "x-ms-correlation-request-id": [ "22d753fe-17dd-4ba9-b0f1-35ad3bcee546" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020700Z:22d753fe-17dd-4ba9-b0f1-35ad3bcee546" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76872D653F2647FEBC8A40B6F4D62465 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03A9C3DF923442B6B37FAAE18804B23C Ref B: MWH011020809062 Ref C: 2026-03-28T02:06:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "282" ], - "x-ms-client-request-id": [ "b10dd437-85dd-4cb6-80fd-37fab89a0a04" ], + "x-ms-unique-id": [ "644" ], + "x-ms-client-request-id": [ "c12f1a3e-8626-400b-93fb-85c8f3bef119" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5215,40 +5485,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b5a3431b-cc97-4209-be7f-25989fa12b72" ], + "x-ms-request-id": [ "bf77e482-9b1a-4192-80c2-c4400a58fc0f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "41a66b42-f201-409d-92ee-806e2999ecd0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002032Z:41a66b42-f201-409d-92ee-806e2999ecd0" ], + "x-ms-correlation-request-id": [ "12b13ddf-b25c-4c63-8e72-c1573fe437cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020700Z:12b13ddf-b25c-4c63-8e72-c1573fe437cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C69CDEA879164AF09D9473246AA7C06D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31CFF4C069BA4DAAAFD1E4FC9E7E23C5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:06:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "283" ], - "x-ms-client-request-id": [ "7967e3d0-6156-4d96-96c7-aeb777924032" ], + "x-ms-unique-id": [ "645" ], + "x-ms-client-request-id": [ "2064f87c-e659-4916-859e-ffc32b7e1cca" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5260,40 +5530,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c64459ff-5100-42d1-8abe-225fed53389e" ], + "x-ms-request-id": [ "a11a88b1-8f11-468d-b9a5-57cc0878db67" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f2edd8f8-695a-4915-a55c-ec37dd02c460" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020700Z:f2edd8f8-695a-4915-a55c-ec37dd02c460" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4D3C642295114956B139A3411E1261C4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:07:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "646" ], + "x-ms-client-request-id": [ "7da900a6-5d26-4fad-bc2f-deac3f21ffa4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "75f0d86b-b790-4968-886d-65dbb4b6e74f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b27fc50f-7145-4a72-85c7-ff18b26c35a1" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T002032Z:b27fc50f-7145-4a72-85c7-ff18b26c35a1" ], + "x-ms-correlation-request-id": [ "88256aba-d28b-4a9f-9bc8-eac06b4489b1" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020700Z:88256aba-d28b-4a9f-9bc8-eac06b4489b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D8BF07C68D84C56BBCAB269246102DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53BB1B86A6F84C54A9165EB546B6ED9C Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:07:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "647" ], + "x-ms-client-request-id": [ "834ca839-be64-45b2-933f-b88bb6dd94b3" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1091e9fd-9c60-4895-8664-03502785d5f6" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d10d617b-453f-4f33-8fe6-236ddf0b2841" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020701Z:d10d617b-453f-4f33-8fe6-236ddf0b2841" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 83E63E80E84B4D2DB327F8465B54CAA9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:07:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1697" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":10,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "284" ], - "x-ms-client-request-id": [ "5b91b544-516a-4f8e-8710-7e102df39e9f" ], + "x-ms-unique-id": [ "648" ], + "x-ms-client-request-id": [ "a6c06b64-4284-41f5-8ddb-c68f6c8059f0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5304,40 +5664,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "76f25c10-45bd-466b-98ba-047eac2e1125", "f89ca6ed-747c-407e-af57-815f5e63231f", "7dc3a205-3d3a-4da7-b20c-e845841769af" ], + "x-ms-original-request-ids": [ "780b8c03-9f18-4e94-bee6-dc2f479d9576", "095f1608-2062-472c-9b18-a52aeb75aec6", "add90fa5-16fe-43b4-bcc4-45d0c24bd6c8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9533331d-acd6-4775-85a8-11ebd8addf94" ], - "x-ms-correlation-request-id": [ "9533331d-acd6-4775-85a8-11ebd8addf94" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002033Z:9533331d-acd6-4775-85a8-11ebd8addf94" ], + "x-ms-request-id": [ "89ca75f7-16ba-48d6-9309-c3b728c00fc3" ], + "x-ms-correlation-request-id": [ "89ca75f7-16ba-48d6-9309-c3b728c00fc3" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020702Z:89ca75f7-16ba-48d6-9309-c3b728c00fc3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69B9AB13D90F4C838D2754728F3A6002 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 45BE55F4A9DC49809602CD3AA1544B76 Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:07:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "285" ], - "x-ms-client-request-id": [ "abefa981-67bd-4754-b4f5-11df38ad406a" ], + "x-ms-unique-id": [ "649" ], + "x-ms-client-request-id": [ "281d474c-4d73-403b-9747-02244a6d53cc" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5348,16 +5708,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5604ae45-4657-49ad-8e20-a9e4e1676a9a" ], + "x-ms-request-id": [ "9945b033-9451-48a4-a07f-4bbd0454c9a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/328d26b9-0a56-40d6-a754-ec5944bb1bc6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b5c2d19-7be6-4498-88ae-fe07f9708c80" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e2981cff-150f-47bb-b788-71c98033a6dd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002033Z:e2981cff-150f-47bb-b788-71c98033a6dd" ], + "x-ms-correlation-request-id": [ "1a6525c3-b2ae-4400-aecc-5cd061f42b88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020702Z:1a6525c3-b2ae-4400-aecc-5cd061f42b88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 36A0198C4F9D4D8A93D3DBA9066E3312 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7532C51EC6834B1E9747D0CB29FE09FB Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:02Z" ], + "Date": [ "Sat, 28 Mar 2026 02:07:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -5368,10 +5728,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01+10": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-PowerShellTest-0yltam84vr?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-PowerShellTest-d90zp8nj5h?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-PowerShellTest-0yltam84vr?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -5391,30 +5751,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5609847d-6098-4966-906c-e09ad5b816e2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ffe23c13-2527-42a3-a270-9e8f5e7f1d03" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "aa825665-c569-4eaa-92ac-5dd70909e9cf" ], - "x-ms-correlation-request-id": [ "aa825665-c569-4eaa-92ac-5dd70909e9cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002033Z:aa825665-c569-4eaa-92ac-5dd70909e9cf" ], + "x-ms-request-id": [ "6f784601-c504-4c2b-ab2b-48d095cff9f6" ], + "x-ms-correlation-request-id": [ "6f784601-c504-4c2b-ab2b-48d095cff9f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020702Z:6f784601-c504-4c2b-ab2b-48d095cff9f6" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D98248D514F4E8490CE3952B6F79DEE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:20:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B19EE570B9BD4CBBB1AA52CFDDA2FFA2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:02Z" ], + "Date": [ "Sat, 28 Mar 2026 02:07:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202fe67-0000-0300-0000-69c47bd10000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"AppId\": \"dd90b389-c106-473f-8d04-dcc13bc70a14\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"8492dd6b-bfa8-42e6-9744-d817aec945a5\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"CreationDate\": \"2026-03-26T00:18:59.7875813+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_dd90b389-c106-473f-8d04-dcc13bc70a14_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d03fe8c-0000-0300-0000-69c737c60000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr\",\r\n \"name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"AppId\": \"99cfda69-0379-4738-9257-1503dbf1bfd7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"6756353b-1c54-486a-9e6c-0e0e33dd03f3\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"CreationDate\": \"2026-03-28T02:05:27.6032374+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr_99cfda69-0379-4738-9257-1503dbf1bfd7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-d90zp8nj5h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-powershelltest-0yltam84vr\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting2\",\r\n \"value\": \"FooBar\"\r\n },\r\n {\r\n \"name\": \"MyAppSetting1\",\r\n \"value\": \"98765\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5428,43 +5788,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB65EDA3220\"" ], + "ETag": [ "\"1DCBE579DF9D3A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5b81b486-d90b-426f-a782-7afe8232c5b9" ], + "x-ms-request-id": [ "31366e7c-1ae9-4270-8ec5-0263410d8597" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6f785de5-a72e-448b-9560-8ae358738275" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fcfa7c4a-0198-4d5a-8e13-087d57587455" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "78bfd46d-2505-4977-a1e4-f482006d373d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002117Z:78bfd46d-2505-4977-a1e4-f482006d373d" ], + "x-ms-correlation-request-id": [ "edff4a97-8c23-4e84-bf3a-5a760c2027d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020746Z:edff4a97-8c23-4e84-bf3a-5a760c2027d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49040F4118E2460C9F3EB9B963CF2C78 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:20:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF23FB63B52440A7AFF1BF2A76987D8B Ref B: MWH011020809062 Ref C: 2026-03-28T02:07:02Z" ], + "Date": [ "Sat, 28 Mar 2026 02:07:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8721" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:20:36.88\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:07:05.04\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a3285036-9ce7-4bec-bea7-faa0209cc797\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "288" ], - "x-ms-client-request-id": [ "b2a9aa70-f131-42ac-922b-7bf56bb10d7f" ], + "x-ms-unique-id": [ "652" ], + "x-ms-client-request-id": [ "e9162469-0df8-4c92-9f82-b5309893cb27" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -5474,42 +5834,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6769128CB" ], + "ETag": [ "1DCBE57AB630DE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b38b1caa-f4bb-4edb-8e5e-d7dea8135372" ], + "x-ms-request-id": [ "1428166b-7781-4914-a038-8773e911636f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b6d3cae5-98d6-45e2-be11-c9affaea878b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:b6d3cae5-98d6-45e2-be11-c9affaea878b" ], + "x-ms-correlation-request-id": [ "b6979c0d-a8ef-40c4-a847-060ed45fc2f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020817Z:b6979c0d-a8ef-40c4-a847-060ed45fc2f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A768F98727740E3A3887435A6929B67 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7EC52ABAB90F430D9BABA7FD5297617E Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8522" ], + "Content-Length": [ "8517" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:07:46.11\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a3285036-9ce7-4bec-bea7-faa0209cc797\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "289" ], - "x-ms-client-request-id": [ "dd44e88a-16c4-4db3-acf4-77a7bfab69c3" ], + "x-ms-unique-id": [ "653" ], + "x-ms-client-request-id": [ "22bdf53e-e48c-4171-84a1-fa4a304e7fff" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5520,42 +5880,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6769128CB" ], + "ETag": [ "1DCBE57AB630DE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "816cec94-d113-4cde-9a96-90afdc59b758" ], + "x-ms-request-id": [ "a6cd941c-e67c-4873-ad99-3a14379859e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3cd8a342-84fe-42ff-ae33-1e8ca17e9c58" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:3cd8a342-84fe-42ff-ae33-1e8ca17e9c58" ], + "x-ms-correlation-request-id": [ "09f26bcd-6c77-4b0d-9baa-18204e896959" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020817Z:09f26bcd-6c77-4b0d-9baa-18204e896959" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDE0959723F74564BA099415DA8C65D8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BD60BEFE2D344F4C99308A431B498D88 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8522" ], + "Content-Length": [ "8517" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:07:46.11\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a3285036-9ce7-4bec-bea7-faa0209cc797\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "290" ], - "x-ms-client-request-id": [ "5ae4c18e-f6e4-4912-9cfe-553fe8414a5c" ], + "x-ms-unique-id": [ "654" ], + "x-ms-client-request-id": [ "e936e597-8b8e-4dbe-9957-c6a4c7f1cc22" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5567,40 +5927,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "10893dca-03e0-485e-80be-31c12c9f77c4" ], + "x-ms-request-id": [ "7f4ca452-07bf-473c-a869-398cea9d010a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac6adaaf-59cf-4816-bd68-703cff410ed7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4660d740-2ec9-424b-bd76-a2a5a7493a1f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5a7a4dcb-c3e1-455b-8fd4-708e3a2abf34" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:5a7a4dcb-c3e1-455b-8fd4-708e3a2abf34" ], + "x-ms-correlation-request-id": [ "532b44ee-2780-4c8c-9afa-dafe2fea4ab8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020818Z:532b44ee-2780-4c8c-9afa-dafe2fea4ab8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 842D890D215D48088986D6C4D98AD906 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CABD4DEBF1A541B8B30EC25398A9728E Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "291" ], - "x-ms-client-request-id": [ "75ff03bc-4cb0-4e79-b4b6-6aa49131348d" ], + "x-ms-unique-id": [ "655" ], + "x-ms-client-request-id": [ "959f4c22-0c13-4648-8178-c07a16443154" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5612,41 +5972,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32d885e6-bea2-4959-89f4-b035f0510773" ], + "x-ms-request-id": [ "764d716d-fa5b-4b4e-977c-49f411a71c69" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65bb8998-6c68-4ae4-bd79-5e12db8149a0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/73e30d8f-84a3-4e9f-96c8-97e0a43a0954" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f8d53a5d-f1a0-4aae-abdf-15ca8d651603" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002148Z:f8d53a5d-f1a0-4aae-abdf-15ca8d651603" ], + "x-ms-correlation-request-id": [ "9963e07c-2702-461e-9187-55f5b6f0d9ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020818Z:9963e07c-2702-461e-9187-55f5b6f0d9ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 036D60CD33CC4E6B8983F16FD48359D5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 562234CF22444BBD8EBA5E4FEFF5C407 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88192,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94758,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "292" ], - "x-ms-client-request-id": [ "cd7d6ce8-ba1e-495b-a82a-4891d703564b" ], + "x-ms-unique-id": [ "656" ], + "x-ms-client-request-id": [ "0d86d8d7-bb36-4ab3-993c-e92400f8c57b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5658,40 +6018,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6a91c70-1df4-4d41-bdec-ab86c48bf066" ], + "x-ms-request-id": [ "f872dd44-e7fd-491c-bfe3-05fd42a8b9e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10c82d22-3b7d-4da0-9d77-b41dd8768e77" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89b3e02d-db15-4824-a9ca-09ccee06217c" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9e16af64-9707-4313-bf8b-5d7a8a841056" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002149Z:9e16af64-9707-4313-bf8b-5d7a8a841056" ], + "x-ms-correlation-request-id": [ "6da25487-f87f-4c5b-82d7-85bf000606b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020818Z:6da25487-f87f-4c5b-82d7-85bf000606b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A5F954182324C339B9F849094E00153 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AB4405F64A514DE9B002839B44C8C162 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "293" ], - "x-ms-client-request-id": [ "ce20c0be-2f14-4768-8ceb-521dcea51dc2" ], + "x-ms-unique-id": [ "657" ], + "x-ms-client-request-id": [ "33ccb3e9-f96e-4834-8677-d7845d7c2b34" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5702,42 +6062,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6769128CB" ], + "ETag": [ "1DCBE57AB630DE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5d9e36e4-ab31-444e-9437-11371332ab3b" ], + "x-ms-request-id": [ "74ef444f-720a-4ea3-b9a4-c18d00406de8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2752645f-dc46-44c3-ab27-1b5e68120c9b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002149Z:2752645f-dc46-44c3-ab27-1b5e68120c9b" ], + "x-ms-correlation-request-id": [ "35f0dd2f-c787-46bb-a946-7442d1c235ad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020819Z:35f0dd2f-c787-46bb-a946-7442d1c235ad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95F7A38B02DD4F1BB192D3ABD25BB99F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 40341DB485B74D15808DBA825B02B43C Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8522" ], + "Content-Length": [ "8517" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:07:46.11\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a3285036-9ce7-4bec-bea7-faa0209cc797\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "294" ], - "x-ms-client-request-id": [ "112988c4-ef5e-46a1-9817-a1e5e3b619bd" ], + "x-ms-unique-id": [ "658" ], + "x-ms-client-request-id": [ "b6d7816d-7093-424c-92ac-2b4586198721" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5749,40 +6109,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "192a3681-29ec-4f6a-acdc-7b8e22bda42a" ], + "x-ms-request-id": [ "46ccccba-7b35-4d53-a6ab-c665aeaf4ad8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e55ff0fa-5ef7-481f-9f2f-579febcbb712" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/430fef30-2153-4192-a471-58bf3262e082" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a8df45cd-d2e8-46a4-bba2-64452119c3c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002149Z:a8df45cd-d2e8-46a4-bba2-64452119c3c7" ], + "x-ms-correlation-request-id": [ "8c7f1461-3d1f-4d6e-807f-301431f0e7b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020819Z:8c7f1461-3d1f-4d6e-807f-301431f0e7b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2B6C66FD3664A8DBC218BCA8114342D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7AD4F21DBDC34C9CAF60AA718D79E1D6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "295" ], - "x-ms-client-request-id": [ "99942a9f-e351-406c-a0f3-15816287b1e7" ], + "x-ms-unique-id": [ "659" ], + "x-ms-client-request-id": [ "969ef38f-31a7-458b-b81b-34f5225043da" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5794,41 +6154,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "edf235d7-87c2-4957-8cfc-c994a823e777" ], + "x-ms-request-id": [ "4884d29a-7193-454e-b4f8-a5f755c27f59" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed8263fb-343b-4a4a-9471-3246163e7a9e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de83aa6d-f76e-4c05-8666-c53178c9753c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6a7c1ebb-683c-446f-9751-5a83e078da60" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:6a7c1ebb-683c-446f-9751-5a83e078da60" ], + "x-ms-correlation-request-id": [ "2295490d-0bf7-47f9-89cb-8a6a96f19974" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020819Z:2295490d-0bf7-47f9-89cb-8a6a96f19974" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C35FE941C044BA2B2F5FB6FD1F49F18 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B4ECA7ABB247426396B51CC34F74B21B Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88192,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94758,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "296" ], - "x-ms-client-request-id": [ "6d6a1b0e-d645-4c73-b09a-cd7781803a6e" ], + "x-ms-unique-id": [ "660" ], + "x-ms-client-request-id": [ "c79c4003-c535-4034-9561-46f89ee121ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5839,42 +6199,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6769128CB" ], + "ETag": [ "1DCBE57AB630DE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81eed58b-ca92-4bcd-8b73-54f31d2d21eb" ], + "x-ms-request-id": [ "05013e5f-e527-4e2b-aabe-03d0ff2a8587" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "06fa381a-cc9c-4700-a3a2-aed48c07c8f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:06fa381a-cc9c-4700-a3a2-aed48c07c8f1" ], + "x-ms-correlation-request-id": [ "eb4ba351-dfb5-4cbb-8123-0102297931cd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020820Z:eb4ba351-dfb5-4cbb-8123-0102297931cd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11AE203150A54A5EBFA7FC3985D0BF0D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21A2CF028ABA4C9C8795B9251D8FCE60 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8522" ], + "Content-Length": [ "8517" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShellTest-d90zp8nj5h\",\"repositorySiteName\":\"Functions-PowerShellTest-d90zp8nj5h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-d90zp8nj5h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:21:17.3566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShellTest-d90zp8nj5h\\\\$Functions-PowerShellTest-d90zp8nj5h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershelltest-d90zp8nj5h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"79387cd7-507f-4645-9f30-2b239a74f246\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"state\":\"Running\",\"hostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShellTest-0yltam84vr\",\"repositorySiteName\":\"Functions-PowerShellTest-0yltam84vr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershelltest-0yltam84vr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:07:46.11\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShellTest-0yltam84vr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShellTest-0yltam84vr\\\\$Functions-PowerShellTest-0yltam84vr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershelltest-0yltam84vr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"a3285036-9ce7-4bec-bea7-faa0209cc797\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01+23": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "297" ], - "x-ms-client-request-id": [ "2601523e-5990-46d7-9e5a-699d434250f9" ], + "x-ms-unique-id": [ "661" ], + "x-ms-client-request-id": [ "c8620038-ce12-443e-a91f-56af1bbb8ebd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5886,40 +6246,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4638760d-b6c9-4342-8759-71cdec5ba4d1" ], + "x-ms-request-id": [ "b91349bd-e6c3-49e4-b04d-7ea14f0fc163" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f7967fcd-d189-418b-82ee-0c130ff2ba60" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff9d5068-c78c-4db3-8168-7eb938d8c074" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "46b6ff47-29b4-4733-9e60-d2865a6fab79" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:46b6ff47-29b4-4733-9e60-d2865a6fab79" ], + "x-ms-correlation-request-id": [ "36c2c958-90e4-4ed9-9430-5f68b7067f82" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020820Z:36c2c958-90e4-4ed9-9430-5f68b7067f82" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80E6537623DB4A3495C0315F6B320F67 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E9B6C9A11B73451C9E4A8FF7EBB646F4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1231" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-d90zp8nj5h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershelltest-0yltam84vr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"MyAppSetting2\":\"FooBar\",\"MyAppSetting1\":\"98765\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "298" ], - "x-ms-client-request-id": [ "67e43065-fe4d-4fd8-b802-4a16c8953d1c" ], + "x-ms-unique-id": [ "662" ], + "x-ms-client-request-id": [ "77a2a569-98d1-4365-979c-7c3ced04e3f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5931,41 +6291,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e25fb81a-a8e8-42ba-b16a-b303874b0519" ], + "x-ms-request-id": [ "33fff621-4fc8-4622-a43d-6df7a7a66af1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac111af8-2345-4cb8-b8e3-9ad4deb07bf0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ee8b9d3-2666-4fd0-a162-b3ec909cd35c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b35d2940-fb73-4ae1-9bd3-1fcc13ee7d41" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002150Z:b35d2940-fb73-4ae1-9bd3-1fcc13ee7d41" ], + "x-ms-correlation-request-id": [ "aee36c83-415e-4350-8d65-377e9977c9ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020821Z:aee36c83-415e-4350-8d65-377e9977c9ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0BDF98397CA54568B2D30548ABA0E1C2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 15A139EEAAA740AC955B2523B76D5113 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h/config/web\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88192,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr/config/web\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94758,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "299" ], - "x-ms-client-request-id": [ "23f903a1-6a7b-44f3-9ba4-39fe48538f16" ], + "x-ms-unique-id": [ "663" ], + "x-ms-client-request-id": [ "9492b5df-dd84-45a4-b394-2858df7646e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5977,40 +6337,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22699c4f-0c6d-4e08-b040-caeb45659c9f" ], + "x-ms-request-id": [ "0f8d4c69-8699-4baf-a805-3ab38523875d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "4be2d448-0682-4a77-b9f5-bda5672266bd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002151Z:4be2d448-0682-4a77-b9f5-bda5672266bd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2d6a4295-ca1a-467e-8b53-793047857dc6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020821Z:2d6a4295-ca1a-467e-8b53-793047857dc6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E2A325B2CD24FC4AD75FB9421003C96 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 468C998AE5784C6FA86D49E515825ABE Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create a function app with custom app settings and \u0027SystemAssigned\u0027 managed identity +$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShellTest-d90zp8nj5h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShellTest-0yltam84vr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "300" ], - "x-ms-client-request-id": [ "08f4f650-d557-43c9-aa6c-a54869c3eb97" ], + "x-ms-unique-id": [ "664" ], + "x-ms-client-request-id": [ "93da1ae6-11d8-4edc-8421-d2699c5cf9e0" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6021,40 +6381,130 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB6769128CB\"" ], + "ETag": [ "\"1DCBE57AB630DE0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed228713-7b98-4a0f-b940-a76a7bc903eb" ], + "x-ms-request-id": [ "45872383-7c32-40c0-9acf-63326b53c8fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/536975fc-070b-4e89-8e8b-8d8c8b2fd7d8" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "f149e80a-4a90-44da-bac0-3521ad0812e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002200Z:f149e80a-4a90-44da-bac0-3521ad0812e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3b211b8d-8d23-45e9-b75b-f2ced8a3cce6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "e27fd6b3-bfaf-4111-b15d-042374948be7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020829Z:e27fd6b3-bfaf-4111-b15d-042374948be7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F6A1EEFB5A8949D2AE717C417F311837 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:29 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "Request": { + "Method": "POST", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest6-38mwgoyzfn\",\r\n \"type\": \"Site\"\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "72" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b3c48c21-a516-4a1c-8881-18ed0e53b1d9" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/387b7f48-64e8-4dcb-bcaa-e51966be1ad6" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "70a23b10-6500-453b-a6ac-b08a92604b1f" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020830Z:70a23b10-6500-453b-a6ac-b08a92604b1f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 615E10DD37654737BDC8CB9108A2768D Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:29 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "47" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "666" ], + "x-ms-client-request-id": [ "d088e1f0-ee5f-43f9-97e4-a7a3d2f41a78" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "bd44e6f1-46b4-4893-bbe6-9659787804e1", "2f14bc66-1027-48a6-b828-fbd836a75191" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "7f55612d-2595-4d20-a1d1-c042fc3d2d2b" ], + "x-ms-correlation-request-id": [ "7f55612d-2595-4d20-a1d1-c042fc3d2d2b" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T020831Z:7f55612d-2595-4d20-a1d1-c042fc3d2d2b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2F671019A5244B7B9CD66C620CC09A3A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:21:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:21:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6ACBE75568A84E77AD25229F990CCD5B Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:30 GMT" ] }, "ContentHeaders": { - "Expires": [ "-1" ], - "Content-Length": [ "0" ] + "Content-Length": [ "12078" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] }, - "Content": null, + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01+1": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { - "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"type\": \"Site\"\r\n}", + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "Content": null, "isContentBase64": false, "Headers": { + "x-ms-unique-id": [ "667" ], + "x-ms-client-request-id": [ "e03ef87b-e9d4-4528-b264-d2a3976a84a4" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "72" ] } }, "Response": { @@ -6063,41 +6513,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b93eb58c-a7d9-49c7-b745-f0170c6686b5" ], + "x-ms-request-id": [ "3bd58b36-59a8-433c-83db-bc3a91a09d70" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/2ae9ecdd-32f0-417c-917a-baa1e5660579" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "09653cc4-98b8-40e9-ad96-4af9066000ed" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T002200Z:09653cc4-98b8-40e9-ad96-4af9066000ed" ], + "x-ms-correlation-request-id": [ "65a4b123-df1a-4146-9a3f-ac90d0f75c83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020831Z:65a4b123-df1a-4146-9a3f-ac90d0f75c83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42FA5FC2DE33400B8409C34A4D9B8A69 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BF75329CC9234367AF3AF891A795A942 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "47" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"nameAvailable\":true,\"reason\":\"\",\"message\":\"\"}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+2": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "302" ], - "x-ms-client-request-id": [ "c88c9326-8559-4da8-8859-a3d0856805b9" ], + "x-ms-unique-id": [ "668" ], + "x-ms-client-request-id": [ "c8f19c04-a7d2-426e-946c-077a28701b44" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], - "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6108,40 +6557,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0d67051a-3679-462e-bbe2-df888d86a418", "98ecedfd-05d6-4dd8-8d3a-e7922f53d0f5" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1335bc33-0ca7-445b-8ab0-37ea619752cb" ], - "x-ms-correlation-request-id": [ "1335bc33-0ca7-445b-8ab0-37ea619752cb" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T002202Z:1335bc33-0ca7-445b-8ab0-37ea619752cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "028fb2c6-64c4-45ea-bcec-4d21575efa26" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "173e1287-282c-4862-9b64-d52e56704c6c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020831Z:173e1287-282c-4862-9b64-d52e56704c6c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 983A4F0F20684F4BBD6CFE0E70ADF854 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 84292AD08965455FB43C1E612F0B3CBA Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8766" ], - "Content-Type": [ "application/json; charset=utf-8" ], + "Content-Length": [ "1784" ], + "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "303" ], - "x-ms-client-request-id": [ "9cff2ce2-6756-4757-8140-ea00c84b7fca" ], + "x-ms-unique-id": [ "669" ], + "x-ms-client-request-id": [ "81cf46c7-b698-46e3-baf6-709b6d31891f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6153,40 +6603,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a354a52c-5d96-475d-b679-d2654b6b0064" ], + "x-ms-request-id": [ "c653a28a-abe6-4b53-b1f5-8701f1eb11a1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7a5b989d-681c-4f2f-9cbc-3db4d5531fa6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002203Z:7a5b989d-681c-4f2f-9cbc-3db4d5531fa6" ], + "x-ms-correlation-request-id": [ "f134b8ee-48e8-4e7a-b55f-e276fc0a49b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020831Z:f134b8ee-48e8-4e7a-b55f-e276fc0a49b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7D8C8B0D9334B4EB3833EF5667C31F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8E51ABC4D9C84D639B13A14586057ABC Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "304" ], - "x-ms-client-request-id": [ "87804687-4c39-44ad-8220-a3cfbd52b2f4" ], + "x-ms-unique-id": [ "670" ], + "x-ms-client-request-id": [ "c2798ed1-133c-417d-adca-37ad1cef5522" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6198,40 +6648,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1855eb99-b99b-4be3-a573-118719898b7b" ], + "x-ms-request-id": [ "eb5634e7-b9b0-4121-b60e-7c95902338d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6ef7c5da-6761-4931-9563-f8270915a137" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002203Z:6ef7c5da-6761-4931-9563-f8270915a137" ], + "x-ms-correlation-request-id": [ "cd218728-bdd6-4674-bca0-dcc339184bdc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020831Z:cd218728-bdd6-4674-bca0-dcc339184bdc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4C4DB9E61804B74A52B6A3125C06CD7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CD4EA37D27B44F74BF212AD9A69E66AC Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "305" ], - "x-ms-client-request-id": [ "04f75d14-4eb9-4b7b-84ef-bac45e8707a1" ], + "x-ms-unique-id": [ "671" ], + "x-ms-client-request-id": [ "3d2b3122-9505-424e-b24d-d6fa4431a0cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6243,40 +6693,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fdbefdd4-0297-4ca1-8ff7-d31ec073b1c5" ], + "x-ms-request-id": [ "165d8c90-1f78-48c3-ad37-d6c5d81c966c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8eb24946-fe7d-42ff-a892-5c7b91390e7c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002204Z:8eb24946-fe7d-42ff-a892-5c7b91390e7c" ], + "x-ms-correlation-request-id": [ "33944858-0b4e-4a71-9dfd-4f98a1ff1972" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020832Z:33944858-0b4e-4a71-9dfd-4f98a1ff1972" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C007DDB8CE84612A84DE07A5FF127EB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0262230003E34AEAB755216D7F43481A Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "306" ], - "x-ms-client-request-id": [ "77e2913b-b7ed-49a0-b50e-109edb9e6342" ], + "x-ms-unique-id": [ "672" ], + "x-ms-client-request-id": [ "8adda3ad-f6cd-410b-a694-45bbe4f43ffd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6288,40 +6738,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "01c25d5e-6089-464d-823f-3d351abfabc0" ], + "x-ms-request-id": [ "2d06c98a-71ff-4944-ad64-1c8f10246233" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f9eb5cc8-c4e3-48e0-8d62-79cb501c4552" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002204Z:f9eb5cc8-c4e3-48e0-8d62-79cb501c4552" ], + "x-ms-correlation-request-id": [ "974379a9-f711-402c-ac05-da51a595e6fc" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020832Z:974379a9-f711-402c-ac05-da51a595e6fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 868365EF0C4547E594B9F46D1C13FFC7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A025D247A524F12819544F8A8B92E7D Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "307" ], - "x-ms-client-request-id": [ "6ee555af-6541-4006-9ad2-3430e0c483fb" ], + "x-ms-unique-id": [ "673" ], + "x-ms-client-request-id": [ "69acdd4a-a3d3-4173-88eb-f8aeafa635c8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6333,40 +6783,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e4ded364-15a3-4687-87f1-1e58f4e51481" ], + "x-ms-request-id": [ "6d8bba5f-f3e7-4c8c-9c6c-c054e9911e43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f3d20364-240f-4591-b236-f0a25d9b0001" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T002204Z:f3d20364-240f-4591-b236-f0a25d9b0001" ], + "x-ms-correlation-request-id": [ "a4aa0d90-d764-4550-84ad-d3d11d388b80" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T020832Z:a4aa0d90-d764-4550-84ad-d3d11d388b80" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5079C2EB27BF47DC876A0A72CABAE73E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BC7A01C73EB40A7A8FFD12322409780 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":11,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+8": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "308" ], - "x-ms-client-request-id": [ "3da64944-63f8-4ac3-b673-68e5442a91aa" ], + "x-ms-unique-id": [ "674" ], + "x-ms-client-request-id": [ "e7f6d7b2-a9e8-4148-81e7-968fa79a1f48" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6377,40 +6827,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "683a791c-65b2-4ec1-89dd-674c57377ac0", "b57924ed-1397-44b6-9ec3-a19f2a02470e", "b5145d22-9f95-4d2b-bc21-bd5db899f37d" ], + "x-ms-original-request-ids": [ "54eddf3b-0cb5-4039-b1d2-321b4dfa0869", "c1c61a3c-65d8-447d-85d3-e7e193001b45", "e7747e5d-b1c4-4390-83c4-c118bd26eed4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1524f0fb-5c91-4fcd-89ad-86af9fba2d73" ], - "x-ms-correlation-request-id": [ "1524f0fb-5c91-4fcd-89ad-86af9fba2d73" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002205Z:1524f0fb-5c91-4fcd-89ad-86af9fba2d73" ], + "x-ms-request-id": [ "1abdf502-4d79-4804-9075-4d95e1e7633a" ], + "x-ms-correlation-request-id": [ "1abdf502-4d79-4804-9075-4d95e1e7633a" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T020833Z:1abdf502-4d79-4804-9075-4d95e1e7633a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D412EB65062B411E945134607DC6E294 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D2F252A594BA4184BC2D8BBB3E17ED5B Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "309" ], - "x-ms-client-request-id": [ "c9c3d5d2-e74c-4a38-b795-2f1615d3ccc8" ], + "x-ms-unique-id": [ "675" ], + "x-ms-client-request-id": [ "1720ea6c-3bc9-4e9a-9c35-1329829de5e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6421,16 +6871,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "c78c357b-5b96-4ca0-98ae-6c11e5cf98bb" ], + "x-ms-request-id": [ "374f70cf-a1f3-4b36-a410-aa54733732aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ac758ff-650a-4fd4-8379-0052b594c956" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b746a6d-977b-4a06-9562-aba110c2940b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "29e39a33-063e-4aec-a7da-e5d39bd00246" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002205Z:29e39a33-063e-4aec-a7da-e5d39bd00246" ], + "x-ms-correlation-request-id": [ "fffa777a-91f7-4268-bdf7-b57a36b2a381" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020833Z:fffa777a-91f7-4268-bdf7-b57a36b2a381" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7FAAAB353F6E4BC59CABBA6F0A4A3600 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C1B129FA7FE4CA2BDC7F1FB2FBEBD05 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -6441,10 +6891,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2015-05-01+10": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2015-05-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -6464,30 +6914,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6bdc9af6-e1d0-4f3e-8d66-7798de3c896d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/581c6b72-bd36-48c0-87ae-77263999fc83" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "3c8eb8d5-4322-4cf8-bff6-dfce4c57dd72" ], - "x-ms-correlation-request-id": [ "3c8eb8d5-4322-4cf8-bff6-dfce4c57dd72" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002211Z:3c8eb8d5-4322-4cf8-bff6-dfce4c57dd72" ], + "x-ms-request-id": [ "841dd892-4d63-4fe7-a6d9-041ad0be902c" ], + "x-ms-correlation-request-id": [ "841dd892-4d63-4fe7-a6d9-041ad0be902c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020840Z:841dd892-4d63-4fe7-a6d9-041ad0be902c" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC3D9E260B9249BF9B4691300AEA96EE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D4E1BBCB94B41A99C6E6D10FD467356 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:08:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c2026774-0000-0300-0000-69c47c330000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"name\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"AppId\": \"c430c8fd-e25f-4b8d-a2a6-8d516500b729\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"95095884-cb83-4553-9e6b-47a8fea3dbb1\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest6-xpt80akrzv\",\r\n \"CreationDate\": \"2026-03-26T00:22:06.0522072+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest6-xpt80akrzv_c430c8fd-e25f-4b8d-a2a6-8d516500b729_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest6-xpt80akrzv-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d03f9a4-0000-0300-0000-69c738280000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest6-38mwgoyzfn\",\r\n \"name\": \"Func-PowerShell-NewTest6-38mwgoyzfn\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest6-38mwgoyzfn\",\r\n \"AppId\": \"7ec78998-9857-4727-9abd-0318cd7e7603\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"a3d28244-487e-48bd-95c1-3e58dd8078f0\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest6-38mwgoyzfn\",\r\n \"CreationDate\": \"2026-03-28T02:08:34.8916476+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest6-38mwgoyzfn_7ec78998-9857-4727-9abd-0318cd7e7603_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest6-38mwgoyzfn-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01+13": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest6-xpt80akrzv\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest6-38mwgoyzfn\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6501,43 +6951,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB698FF2500\"" ], + "ETag": [ "\"1DCBE57CDE2552B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bcb1299d-faae-4909-8501-bbc58a70d12b" ], + "x-ms-request-id": [ "85f13baf-3391-4423-857f-07d0e7864126" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08c12872-bc96-4604-aaf4-93d736517a7a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a552890e-d9ae-4a6a-accd-de4fd57abdd0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "e753df90-467e-4276-a23f-4d40d09b9ad5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002254Z:e753df90-467e-4276-a23f-4d40d09b9ad5" ], + "x-ms-correlation-request-id": [ "73edc95b-b4a6-40b5-864d-024733a70ca0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020923Z:73edc95b-b4a6-40b5-864d-024733a70ca0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B0B1B37FFA6448999BFDC570E03701A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:22:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:22:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF43AAC865C7481885B485C427F41875 Ref B: MWH011020809062 Ref C: 2026-03-28T02:08:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9042" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:14.4833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:08:42.8433333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest6-38mwgoyzfn\\\\$Func-PowerShell-NewTest6-38mwgoyzfn\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"393b59a3-a7fe-4daa-80cb-021c7deea03c\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "312" ], - "x-ms-client-request-id": [ "d7957b1a-4a1e-4ec8-b8db-a49b980402ee" ], + "x-ms-unique-id": [ "678" ], + "x-ms-client-request-id": [ "1fadaa73-b77c-4d20-88d0-cec8d99c673e" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -6547,42 +6997,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6B03F9920" ], + "ETag": [ "1DCBE57E5181AEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "731d5905-65ee-40e3-b76a-aff6bc1f9e76" ], + "x-ms-request-id": [ "ff169194-a311-4296-8e87-623170f55bf8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e1d910dd-c366-48ce-a392-2c9acfbffec9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:e1d910dd-c366-48ce-a392-2c9acfbffec9" ], + "x-ms-correlation-request-id": [ "335c6a37-ce2a-49f0-8f38-fd4ac97e37ff" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020954Z:335c6a37-ce2a-49f0-8f38-fd4ac97e37ff" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 210835B58E8949218C61857C42D6BF5D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3F47AA019354346B4D73227C24375CC Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8833" ], + "Content-Length": [ "8838" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:09:22.9266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest6-38mwgoyzfn\\\\$Func-PowerShell-NewTest6-38mwgoyzfn\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"393b59a3-a7fe-4daa-80cb-021c7deea03c\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "313" ], - "x-ms-client-request-id": [ "7bd80d9d-32ef-4ad2-9a84-c91bc94f9a9f" ], + "x-ms-unique-id": [ "679" ], + "x-ms-client-request-id": [ "84f6362a-e33e-4acf-ae72-fb2be024adcf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6593,42 +7043,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6B03F9920" ], + "ETag": [ "1DCBE57E5181AEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "231be386-8bf7-4ec9-b583-9cd1feed45b4" ], + "x-ms-request-id": [ "3eb78b37-dfe0-4980-82bc-eebcac513d09" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b0750913-cc2e-40c7-8e06-713c4d14896c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:b0750913-cc2e-40c7-8e06-713c4d14896c" ], + "x-ms-correlation-request-id": [ "cc635597-5d81-4447-afbe-02c2ad27f694" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020954Z:cc635597-5d81-4447-afbe-02c2ad27f694" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C9539EE3E534AAE9D63D4CD79C8A70F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70F033FF9D634CC6942D589B945D938E Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8833" ], + "Content-Length": [ "8838" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:09:22.9266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest6-38mwgoyzfn\\\\$Func-PowerShell-NewTest6-38mwgoyzfn\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"393b59a3-a7fe-4daa-80cb-021c7deea03c\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "314" ], - "x-ms-client-request-id": [ "8fa99392-bf66-40a3-bb4d-b72b1fda3f3e" ], + "x-ms-unique-id": [ "680" ], + "x-ms-client-request-id": [ "bbf11956-419a-404e-9310-14aaef04bd2b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6640,40 +7090,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db90fb06-af14-48be-a054-f30b9d3f0404" ], + "x-ms-request-id": [ "38025c76-6d8a-4639-94e4-6b10f3ca9453" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/526d6b34-9524-4eb8-a4eb-6385dbe4a152" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8ebaf514-aa68-46f2-9b74-257a993326b9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "716ad87c-f9ff-4273-9f80-c4d3c9170197" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:716ad87c-f9ff-4273-9f80-c4d3c9170197" ], + "x-ms-correlation-request-id": [ "bad7bc53-a116-4b9f-bb23-5555616b2129" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020954Z:bad7bc53-a116-4b9f-bb23-5555616b2129" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 656BF18EB042434B9C02D6515F473460 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E1EA7A36C0DD4DEFBA5093FD5B9DBD35 Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-xpt80akrzv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-38mwgoyzfn\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "315" ], - "x-ms-client-request-id": [ "d6afd96a-6fbe-4ebd-82a4-85fb7544a900" ], + "x-ms-unique-id": [ "681" ], + "x-ms-client-request-id": [ "3da60a58-88cd-40ab-8dd0-bb84dba45085" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6685,41 +7135,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "db5952cb-18c7-4d71-9626-38dba31ba23b" ], + "x-ms-request-id": [ "2d2a5587-e67a-4186-b7a4-10ef89481ba2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/de9bd95d-451f-4a08-b8ad-1c0116370b94" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/551a381b-acda-4e39-88cc-e609e6a87433" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "846244a2-72a7-4292-ba18-9cfdb3a2d63f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002325Z:846244a2-72a7-4292-ba18-9cfdb3a2d63f" ], + "x-ms-correlation-request-id": [ "7b7a7101-b2d8-44a4-a36f-9016917c0b91" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020955Z:7b7a7101-b2d8-44a4-a36f-9016917c0b91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31C4F53C265E4AEA8DDF5D61E71BACAF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C78CEF05CB0F4860954E95D8A8EFA77B Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:54 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88193,\"xManagedServiceIdentityId\":88194,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94759,\"xManagedServiceIdentityId\":94760,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "316" ], - "x-ms-client-request-id": [ "9e8cac28-69cb-4010-8e6a-c8c34f32438d" ], + "x-ms-unique-id": [ "682" ], + "x-ms-client-request-id": [ "3754979b-3bf6-45df-abde-9d5df9fa6164" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6730,42 +7180,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6B03F9920" ], + "ETag": [ "1DCBE57E5181AEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "600b86e5-73c1-4428-8484-54c6372337f6" ], + "x-ms-request-id": [ "523d01cc-5392-4203-9460-c769cc81cd01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "6d7fff9f-d21a-4ea1-9ff9-a1d7efd43f31" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002326Z:6d7fff9f-d21a-4ea1-9ff9-a1d7efd43f31" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0ce5d8c0-afb5-4dc6-9b16-63ffc2cac221" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020955Z:0ce5d8c0-afb5-4dc6-9b16-63ffc2cac221" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D27ECE6A8F3D437C804E49278DEDFA0C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48DE55E57E6F4B9EB80C23AD2A44315F Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8833" ], + "Content-Length": [ "8838" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:09:22.9266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest6-38mwgoyzfn\\\\$Func-PowerShell-NewTest6-38mwgoyzfn\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"393b59a3-a7fe-4daa-80cb-021c7deea03c\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "317" ], - "x-ms-client-request-id": [ "49fcffa7-e7ae-4add-8e0c-37535a2cdeaa" ], + "x-ms-unique-id": [ "683" ], + "x-ms-client-request-id": [ "d96f9ac3-c5b8-4c63-8935-1a66785f418e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6777,40 +7227,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b9c7f728-b15f-4975-8a68-49241492f8ba" ], + "x-ms-request-id": [ "49020c6e-b1c5-48ee-8ae3-724152f0c1e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a66cd93-7893-4549-b5f3-291402f3a131" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1d4dacd4-bbd5-49e4-a7f6-59aab0aed4a1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f6237a8c-9a1e-4ed2-84a3-05566ce4724c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002326Z:f6237a8c-9a1e-4ed2-84a3-05566ce4724c" ], + "x-ms-correlation-request-id": [ "bdc84717-692c-415c-90d8-9b1cffeb073d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020955Z:bdc84717-692c-415c-90d8-9b1cffeb073d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3610A08B2C6245439B75EDCD31C43E8F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72E166B4CC7647C6B55D09579EE38A2E Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-xpt80akrzv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-38mwgoyzfn\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "318" ], - "x-ms-client-request-id": [ "f1dc74bf-b4d4-4b8e-89e5-e8e8ee4d4568" ], + "x-ms-unique-id": [ "684" ], + "x-ms-client-request-id": [ "bd88659d-6b23-4e4f-8e6c-3a22571570d1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6822,41 +7272,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eaf7ec06-67b1-4fff-814d-84a075d5e32a" ], + "x-ms-request-id": [ "878a156a-7d1b-4f31-819a-028651bb6c10" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26aedbad-5fd7-45af-b4a3-87d0310b5b07" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "7dbc7721-e046-4595-b25d-d2a5c25d52e5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002326Z:7dbc7721-e046-4595-b25d-d2a5c25d52e5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5634f569-678e-4a97-bba6-a3e97d94059a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e980bdda-651e-40a3-960e-705a19467d97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020956Z:e980bdda-651e-40a3-960e-705a19467d97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCF2DD89CD7C418EAD8F889461319224 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C06A7DA5698445BA87AC6BD5F293C28 Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88193,\"xManagedServiceIdentityId\":88194,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94759,\"xManagedServiceIdentityId\":94760,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "319" ], - "x-ms-client-request-id": [ "a47a21de-7ec8-40a8-b44a-065223229da5" ], + "x-ms-unique-id": [ "685" ], + "x-ms-client-request-id": [ "ab9ce7dd-0ef9-4ca0-8576-756f08fede54" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6867,42 +7317,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6B03F9920" ], + "ETag": [ "1DCBE57E5181AEB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a1cd107-ce5d-4251-92be-f56f6f129684" ], + "x-ms-request-id": [ "20961e95-fab4-433e-bfce-2c40355e53f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ce3b995c-f6fe-45c4-b966-4784a0c88313" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002327Z:ce3b995c-f6fe-45c4-b966-4784a0c88313" ], + "x-ms-correlation-request-id": [ "ef91a4ff-3e89-4555-8f2f-1b5f1ab7f09f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020956Z:ef91a4ff-3e89-4555-8f2f-1b5f1ab7f09f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80330D7A9CCF46F6ADDD42374C2CC6B5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B962166EBA0D40E59690F7AF811DB1A1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8833" ], + "Content-Length": [ "8838" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest6-xpt80akrzv\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-xpt80akrzv.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:22:54.13\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest6-xpt80akrzv\\\\$Func-PowerShell-NewTest6-xpt80akrzv\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest6-xpt80akrzv.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0dabb554-744b-4cf2-bb6b-e6f1a97ad3dc\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest6-38mwgoyzfn\",\"repositorySiteName\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest6-38mwgoyzfn.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:09:22.9266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest6-38mwgoyzfn\\\\$Func-PowerShell-NewTest6-38mwgoyzfn\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest6-38mwgoyzfn.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"393b59a3-a7fe-4daa-80cb-021c7deea03c\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "320" ], - "x-ms-client-request-id": [ "9b1fd5c8-b453-49cf-95e0-a8f1af75758a" ], + "x-ms-unique-id": [ "686" ], + "x-ms-client-request-id": [ "6bf7b098-4f61-40ad-85c6-8beda426d3a7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6914,40 +7364,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9ca6007c-cfd7-4171-a52f-50907af72dda" ], + "x-ms-request-id": [ "bacaaa7e-2ce0-493f-9854-3aebf4b3eccb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b24cdbb-eecb-4918-9482-f513c260d214" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/99667435-93f1-4221-916b-ba431c3d11fd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2797dcf2-a9f1-403b-b2c5-12f6fc5d1039" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002327Z:2797dcf2-a9f1-403b-b2c5-12f6fc5d1039" ], + "x-ms-correlation-request-id": [ "52dee59d-076e-48e2-bc5e-36d868c2ba58" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020956Z:52dee59d-076e-48e2-bc5e-36d868c2ba58" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7D53DD2DA0D64CE29E086A3E562203F9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFCFDAEC782F42779EA822ABE657AF35 Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-xpt80akrzv\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest6-38mwgoyzfn\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "321" ], - "x-ms-client-request-id": [ "7d31352d-3680-456b-874e-6ea7cdd849be" ], + "x-ms-unique-id": [ "687" ], + "x-ms-client-request-id": [ "6e4ba307-7390-4393-b164-01e6437ba04d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6959,41 +7409,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72c98258-8517-4866-a6f8-4cf8765eec34" ], + "x-ms-request-id": [ "85c8f511-b4bb-4185-a932-5782e5398260" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b4f880b-a883-4628-9f1a-57cbf07d14b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b381728-811f-4697-9bfc-517dd2d3822e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f04eb76-c954-43c8-b10b-e91023305133" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002328Z:6f04eb76-c954-43c8-b10b-e91023305133" ], + "x-ms-correlation-request-id": [ "4e311b50-d59c-4346-966f-2dc660337817" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020957Z:4e311b50-d59c-4346-966f-2dc660337817" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A360FE270BB495DB38052B5FF63E663 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14E256CF9BDD4413B1A258E062A42055 Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv/config/web\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88193,\"xManagedServiceIdentityId\":88194,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn/config/web\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94759,\"xManagedServiceIdentityId\":94760,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "322" ], - "x-ms-client-request-id": [ "83fb7244-4722-423d-a28b-aa5807721847" ], + "x-ms-unique-id": [ "688" ], + "x-ms-client-request-id": [ "7922c7da-3a1f-49a8-a398-0598b2edbb83" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7005,40 +7455,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "34026cde-c569-4e10-b772-7e5386888649" ], + "x-ms-request-id": [ "30028a24-3baf-41bf-a65e-ee41174faee2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "244dba57-919e-430b-a3b4-9fbd2e56c85e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002328Z:244dba57-919e-430b-a3b4-9fbd2e56c85e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "350540ec-5bfc-48df-aa70-2395ceaa9e5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T020957Z:350540ec-5bfc-48df-aa70-2395ceaa9e5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B66BBC71CD5147AAB4DC111718D8BB8E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99704E759EB148C0A6F496FD017AF6D5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:09:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create a function app with both \u0027SystemAssigned\u0027 and \u0027UserAssigned\u0027 managed identities+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-xpt80akrzv?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest6-38mwgoyzfn?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "323" ], - "x-ms-client-request-id": [ "4356a848-26cb-4011-806b-6cd119091e38" ], + "x-ms-unique-id": [ "689" ], + "x-ms-client-request-id": [ "6280f2ea-f657-498a-9ec5-085e82f8d00a" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7049,20 +7499,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB6B03F9920\"" ], + "ETag": [ "\"1DCBE57E5181AEB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84dffc7f-58dc-4a9d-854f-69ad38180cce" ], + "x-ms-request-id": [ "8b82fe05-562a-4066-890b-e9dc791a681b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80c41b27-0aab-4de3-9d48-35ba4b301622" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3a635235-4462-4e16-bfc1-9a3ead70abbb" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "995c0675-3c84-45c2-acee-13a3c655d6f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002340Z:995c0675-3c84-45c2-acee-13a3c655d6f8" ], + "x-ms-correlation-request-id": [ "3fb53fc4-decb-4242-98de-b31c581f02d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021006Z:3fb53fc4-decb-4242-98de-b31c581f02d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EB7994CA2589410FB96794B8032D616D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB42F3494B484BA8AF9621E22BC794F0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:09:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:06 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7076,7 +7526,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-PowerShellTest-d90zp8nj5h\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-PowerShellTest-0yltam84vr\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7091,18 +7541,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4676c064-a706-4ea9-ab96-360a74fbd02f" ], + "x-ms-request-id": [ "7b1ee22a-8c89-4b00-93f9-edf99d1f0e4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/eddb3d23-1941-454d-a6ba-dc385cf629dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/a081d1a0-c652-46b1-96f0-528eb9755b25" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6ec8cb1e-c363-42ed-bdea-af13eee28d78" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002341Z:6ec8cb1e-c363-42ed-bdea-af13eee28d78" ], + "x-ms-correlation-request-id": [ "2c668b0b-ba0c-4d5e-9c80-6d47c6765cc9" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021007Z:2c668b0b-ba0c-4d5e-9c80-6d47c6765cc9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 342353BAB698417C9F66A0BDE31BC66A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23064DD728644C52A8EBC7B876DF9A6E Ref B: MWH011020809062 Ref C: 2026-03-28T02:10:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7117,7 +7567,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-DotNet-27pudsgrfk\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-srcxwfh7tk\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7132,18 +7582,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a15e27e-3d6a-4c99-b2e6-ab7a29743d7c" ], + "x-ms-request-id": [ "e567d1f9-a290-4b1e-82c5-e2107f3f6d5e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5249abff-18f0-4df7-a92f-54948b03a53d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9d3d3258-4c94-4918-91d2-10e93c7d96d3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "32d9c892-3b68-4d90-ad5f-b9490d64ae23" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002341Z:32d9c892-3b68-4d90-ad5f-b9490d64ae23" ], + "x-ms-correlation-request-id": [ "e1920e48-670a-478d-b2fb-f111d0ec5e66" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021007Z:e1920e48-670a-478d-b2fb-f111d0ec5e66" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92074E59B666425E823AFC740583A798 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C5C662C2498421B9438C8CF118189A4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:10:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7161,12 +7611,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "326" ], - "x-ms-client-request-id": [ "5621303e-713a-4ecd-b811-10f3efb9898a" ], + "x-ms-unique-id": [ "692" ], + "x-ms-client-request-id": [ "def2d6b1-adf2-4e7b-904d-f1ca5fa84e80" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7178,18 +7628,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "98e7eadc-6846-4848-8b19-cb97f03c8b03" ], + "x-ms-request-id": [ "23883fa3-d760-4cbd-b999-8597aceb6f1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/328f63e2-4f7d-45cf-9d71-e5bd36b99446" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5c2274ac-1097-4252-b96c-f1219c285703" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e4501ecd-753d-4116-b6f4-27defc2a9513" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002342Z:e4501ecd-753d-4116-b6f4-27defc2a9513" ], + "x-ms-correlation-request-id": [ "2902ffba-d003-4827-b5b6-4251315b7ea0" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021007Z:2902ffba-d003-4827-b5b6-4251315b7ea0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6683554AAB974A4082D03BAD8E715540 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A66EF0C860049F3ACE9679E24E0CC1A Ref B: MWH011020809062 Ref C: 2026-03-28T02:10:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38561" ], @@ -7207,12 +7657,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "327" ], - "x-ms-client-request-id": [ "9eb45557-e0ae-4eb5-9d52-14301973abfb" ], + "x-ms-unique-id": [ "693" ], + "x-ms-client-request-id": [ "75290b89-de5a-492d-bfab-76955405528b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7223,40 +7673,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "acdd7e83-6b47-44d2-af33-f8a221dd7e53", "d185cbc2-e8c9-45c5-ad5a-b08db8c01d86", "a76134ae-6ba5-4437-958e-c4c5593a948f" ], + "x-ms-original-request-ids": [ "3036427f-d4d0-4817-b53a-9f559ac0179f", "51649dfc-23f9-4e2f-bd55-ae38c4d10926", "b93b9468-7274-4702-8c68-e720f54df71a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "9500a1a4-d033-45b9-ac6b-17d4efad9283" ], - "x-ms-correlation-request-id": [ "9500a1a4-d033-45b9-ac6b-17d4efad9283" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002343Z:9500a1a4-d033-45b9-ac6b-17d4efad9283" ], + "x-ms-request-id": [ "27e2d05d-89bd-4a90-8e59-50e3a24c32ef" ], + "x-ms-correlation-request-id": [ "27e2d05d-89bd-4a90-8e59-50e3a24c32ef" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021008Z:27e2d05d-89bd-4a90-8e59-50e3a24c32ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4507E905C0914EA684CA88AEF7433B5C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 800414870F5D4616A74FFFA3BAC3FCFE Ref B: MWH011020809062 Ref C: 2026-03-28T02:10:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "328" ], - "x-ms-client-request-id": [ "f3d3c171-cb5e-4b31-ad1d-3a46a90d3a13" ], + "x-ms-unique-id": [ "694" ], + "x-ms-client-request-id": [ "2db353f2-be85-4036-b476-bfb2267cd0c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7267,16 +7717,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "b252c4ac-390c-46f3-a701-b4bb9bde42ab" ], + "x-ms-request-id": [ "45585383-c5a1-48c0-8ae0-4d37cd452849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ecb99ff-2186-4a06-9156-92e84ae3444c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4afcf157-1acd-42ca-ba8b-1e23543e42d8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "51dadb0f-5166-4b96-b433-059d5ae0de24" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002343Z:51dadb0f-5166-4b96-b433-059d5ae0de24" ], + "x-ms-correlation-request-id": [ "aa0b6ea3-6813-4047-bb3d-e0d4bacb48f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021009Z:aa0b6ea3-6813-4047-bb3d-e0d4bacb48f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3488B7EE441843ABB8506FC1F74473FD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 237FABD85EF44E10B43E62E4C4885658 Ref B: MWH011020809062 Ref C: 2026-03-28T02:10:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -7287,10 +7737,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-DotNet-27pudsgrfk?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Insights/components/Functions-DotNet-srcxwfh7tk?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-DotNet-27pudsgrfk?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Insights/components/Functions-DotNet-srcxwfh7tk?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -7310,30 +7760,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bf094034-b1be-40ac-9dd5-9d88136b957a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23bb2a64-41d0-451b-b8cd-69010429169d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "29d9369d-e79a-4dc3-bf03-4a2ae472f201" ], - "x-ms-correlation-request-id": [ "29d9369d-e79a-4dc3-bf03-4a2ae472f201" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002348Z:29d9369d-e79a-4dc3-bf03-4a2ae472f201" ], + "x-ms-request-id": [ "8c88fa23-a449-4058-b3a7-8f25e0e60141" ], + "x-ms-correlation-request-id": [ "8c88fa23-a449-4058-b3a7-8f25e0e60141" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021014Z:8c88fa23-a449-4058-b3a7-8f25e0e60141" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 14E3B4C631C34EAAAC2EE79F669878D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:23:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3477B9AB7F5A4094BF1B2CA355D37BAE Ref B: MWH011020809062 Ref C: 2026-03-28T02:10:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c2027480-0000-0300-0000-69c47c940000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-DotNet-27pudsgrfk\",\r\n \"name\": \"Functions-DotNet-27pudsgrfk\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-27pudsgrfk\",\r\n \"AppId\": \"d83ad2cf-84f9-46f5-8927-48a571699a1a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"40de7d95-8f37-43cc-ac8f-176fff0c5701\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-27pudsgrfk\",\r\n \"CreationDate\": \"2026-03-26T00:23:43.9914139+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-27pudsgrfk_d83ad2cf-84f9-46f5-8927-48a571699a1a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-27pudsgrfk-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d03b8b8-0000-0300-0000-69c738860000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-DotNet-srcxwfh7tk\",\r\n \"name\": \"Functions-DotNet-srcxwfh7tk\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-srcxwfh7tk\",\r\n \"AppId\": \"7df2b914-c6b7-4223-8e69-0358e16ab208\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"30f1fdcb-1483-4b2e-a464-e3d334401226\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-srcxwfh7tk\",\r\n \"CreationDate\": \"2026-03-28T02:10:09.7107307+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-srcxwfh7tk_7df2b914-c6b7-4223-8e69-0358e16ab208_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-srcxwfh7tk-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-27pudsgrfk\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"DOTNET|8.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_INPROC_NET8_ENABLED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-srcxwfh7tk\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7347,43 +7797,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB6D204B82B\"" ], + "ETag": [ "\"1DCBE58050FE700\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f57f2305-88c8-4299-a8b1-5b1adaa89650" ], + "x-ms-request-id": [ "c8606c1a-f8e9-4268-96cb-37f805964535" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c60d6fa-2949-45a2-b7dc-b387dc83fc88" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50d4a0ca-fc1b-4efa-bf99-ac2057c32d16" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "7fcf4ff3-1d74-4b31-b594-ff70cea7543c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002409Z:7fcf4ff3-1d74-4b31-b594-ff70cea7543c" ], + "x-ms-correlation-request-id": [ "2ac1df82-bfe7-4520-a991-f0a6eb7cf2ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021035Z:2ac1df82-bfe7-4520-a991-f0a6eb7cf2ac" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 76A06B293F174CA5BE959CCC5D4D9298 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:23:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C11BA60BD4F43188AEC13CF90E8D3C6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:10:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:10:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8418" ], + "Content-Length": [ "8367" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:23:50.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-DotNet-srcxwfh7tk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-DotNet-srcxwfh7tk\",\"repositorySiteName\":\"Functions-DotNet-srcxwfh7tk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:10:16.03\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-srcxwfh7tk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-srcxwfh7tk\\\\$Functions-DotNet-srcxwfh7tk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "331" ], - "x-ms-client-request-id": [ "f4998062-eeda-4118-8d75-bdcd13fa954a" ], + "x-ms-unique-id": [ "697" ], + "x-ms-client-request-id": [ "6e2d3ca1-2969-4138-834d-d0621909b29e" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -7393,42 +7843,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6DD2A9F20" ], + "ETag": [ "1DCBE5810620E15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f244b0c-0128-4458-b7ba-1c534ac80a51" ], + "x-ms-request-id": [ "e383ff70-afed-461f-a490-684219ebec0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "804728db-5169-4c3c-bcd8-538f6fddd9a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002440Z:804728db-5169-4c3c-bcd8-538f6fddd9a6" ], + "x-ms-correlation-request-id": [ "c98338a1-d674-49cd-bf03-faf92e7708f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021106Z:c98338a1-d674-49cd-bf03-faf92e7708f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E14855C4736B46C5AD1B1E95BA57B442 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 66F5F5F7F3064C2C8AB6BA87E9151414 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8221" ], + "Content-Length": [ "8180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-srcxwfh7tk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-DotNet-srcxwfh7tk\",\"repositorySiteName\":\"Functions-DotNet-srcxwfh7tk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:10:35.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-srcxwfh7tk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-srcxwfh7tk\\\\$Functions-DotNet-srcxwfh7tk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "332" ], - "x-ms-client-request-id": [ "d87c3ef9-d608-46b3-8f11-a83e6c41e97c" ], + "x-ms-unique-id": [ "698" ], + "x-ms-client-request-id": [ "ac4e3aa0-6ccf-4003-93f7-5611fae2ebd4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7439,42 +7889,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6DD2A9F20" ], + "ETag": [ "1DCBE5810620E15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1eb75bbb-6ce7-40d8-b0ad-342701f8cd32" ], + "x-ms-request-id": [ "8f05b21b-ecef-481b-8bd3-de49e0bf175d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a1849f26-131e-41f0-bee4-e6a010d7a79c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002440Z:a1849f26-131e-41f0-bee4-e6a010d7a79c" ], + "x-ms-correlation-request-id": [ "2ba3f0b6-a6c0-4777-9413-be45dab10b59" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021106Z:2ba3f0b6-a6c0-4777-9413-be45dab10b59" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09E897B932BC4EFAB211061611087B90 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 440C469A5FC94766B4FFA7E7363182A0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8221" ], + "Content-Length": [ "8180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-srcxwfh7tk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-DotNet-srcxwfh7tk\",\"repositorySiteName\":\"Functions-DotNet-srcxwfh7tk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:10:35.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-srcxwfh7tk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-srcxwfh7tk\\\\$Functions-DotNet-srcxwfh7tk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "333" ], - "x-ms-client-request-id": [ "66d3b649-3221-4c58-ab17-ae61852dcccf" ], + "x-ms-unique-id": [ "699" ], + "x-ms-client-request-id": [ "e56720f1-beaf-4270-9226-eac666dc5b32" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7486,40 +7936,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4de66934-b55e-4aff-b9a0-69c2771ee9e4" ], + "x-ms-request-id": [ "f8254181-965f-4c55-8d36-5dbaa9105099" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ae59b4c-755b-4d96-8efc-023dfeceed0a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb84d7fa-1721-488a-a05d-70056f7f73e1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7b159bd8-6e1c-4214-9d84-4f5173863093" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002440Z:7b159bd8-6e1c-4214-9d84-4f5173863093" ], + "x-ms-correlation-request-id": [ "1844c1cd-408b-478e-8038-9e28dfe340e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021107Z:1844c1cd-408b-478e-8038-9e28dfe340e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 122FCDE6EA7C4F02BDE9AFF5C14E2DA8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D31BC078E1764732AFD021CE781CAEE0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-27pudsgrfk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-srcxwfh7tk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "334" ], - "x-ms-client-request-id": [ "216ef410-6d00-46fa-accf-63f6a7ff4f5a" ], + "x-ms-unique-id": [ "700" ], + "x-ms-client-request-id": [ "26759d46-2abb-4182-a986-19517a3fbf09" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7531,41 +7981,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe18bdd2-c1a8-47de-b5cb-e25a5a30f07f" ], + "x-ms-request-id": [ "59ea6d29-f7b5-4e06-9c85-8e644eeeaea8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be039e14-5e6f-4738-90e4-fd211617cfcb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3230008-f24a-4ee6-9163-3ce9ecc3d4c9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ee79ebc-0bfe-496b-a7a5-8fe0e7c27339" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002441Z:3ee79ebc-0bfe-496b-a7a5-8fe0e7c27339" ], + "x-ms-correlation-request-id": [ "0c6acc79-1b25-4870-8030-bf5d998fe6a1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021107Z:0c6acc79-1b25-4870-8030-bf5d998fe6a1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89808FE06B674CE39F242074114F3418 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A9568CC808FA47E68EED3B6AD73655F5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "335" ], - "x-ms-client-request-id": [ "55ff97bf-b7d9-4100-be50-f51ee48fd711" ], + "x-ms-unique-id": [ "701" ], + "x-ms-client-request-id": [ "2d8f0c81-9df2-48f8-b9bd-024df34250fd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7576,42 +8026,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6DD2A9F20" ], + "ETag": [ "1DCBE5810620E15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c956e8c-3512-4833-9c05-bccb44d61a47" ], + "x-ms-request-id": [ "07f9582b-c36b-4be3-ae81-0e33aa4771f5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0fa6e7be-927a-4a60-81fe-46a62652b719" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002441Z:0fa6e7be-927a-4a60-81fe-46a62652b719" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d1c90ef5-8e78-48d9-918b-c3c26246f85f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021107Z:d1c90ef5-8e78-48d9-918b-c3c26246f85f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A7D63ECB0DD40D981B69908E1206261 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA5881EF095948A48DC13E6C3C0034A9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8221" ], + "Content-Length": [ "8180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-srcxwfh7tk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-DotNet-srcxwfh7tk\",\"repositorySiteName\":\"Functions-DotNet-srcxwfh7tk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:10:35.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-srcxwfh7tk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-srcxwfh7tk\\\\$Functions-DotNet-srcxwfh7tk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings/list?api-version=2023-12-01+12": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "336" ], - "x-ms-client-request-id": [ "f50299b9-b4b1-45ee-8b6a-bd8dda06bc76" ], + "x-ms-unique-id": [ "702" ], + "x-ms-client-request-id": [ "f18f8c03-2dae-4c24-a45e-ec0f852c2cfe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7623,40 +8073,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee4c34e2-b1c7-4ec9-b195-8df470e27bea" ], + "x-ms-request-id": [ "a2432498-140f-451d-a336-64719f0ef84c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a3d8826c-3091-4f88-9325-76afda5fc053" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/600e94b3-9700-48ea-a0cc-351185e7ef01" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1f63722f-3bf6-4a3b-a3cf-d4d3bfdc2504" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002442Z:1f63722f-3bf6-4a3b-a3cf-d4d3bfdc2504" ], + "x-ms-correlation-request-id": [ "5f5fc26d-8ee7-4f28-8197-925f0045c1d7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021107Z:5f5fc26d-8ee7-4f28-8197-925f0045c1d7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 642178A7C6D5418991EF9F84BE9E2595 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42736B1F50E249B5894E2B7E75E20184 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-27pudsgrfk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-srcxwfh7tk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "337" ], - "x-ms-client-request-id": [ "73564ad6-1817-4176-a9a9-8dc1a171ae41" ], + "x-ms-unique-id": [ "703" ], + "x-ms-client-request-id": [ "ff22c1e6-c937-4935-93ab-2513c4069ccf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7668,41 +8118,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41a8f0e4-137d-41bf-9802-c3f73da0cacf" ], + "x-ms-request-id": [ "8b02c980-cbc7-4966-a0d6-7fbda373c288" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee8e1ee1-b2af-41f1-841e-3b14a069d877" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/57dbb026-ebb8-4c75-817b-d778455b29da" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e0e57e47-8e0e-4208-a36b-500a9c44d345" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002442Z:e0e57e47-8e0e-4208-a36b-500a9c44d345" ], + "x-ms-correlation-request-id": [ "5d834f03-3daf-4820-80d8-99d91d6f8abe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021108Z:5d834f03-3daf-4820-80d8-99d91d6f8abe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B790271B914343E69FDEBFE234B49BE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EFD1EA43797C48718E7793713F233A59 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "338" ], - "x-ms-client-request-id": [ "7d59efc6-23d5-47fc-9aa2-9c857307e067" ], + "x-ms-unique-id": [ "704" ], + "x-ms-client-request-id": [ "843a993e-b5bb-4f43-b064-15e0bac5231e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7713,42 +8163,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB6DD2A9F20" ], + "ETag": [ "1DCBE5810620E15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c252549-1df2-4d90-b4fb-e742437c9203" ], + "x-ms-request-id": [ "c8ac4777-71b9-4800-b12c-54a935cb102f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "bcff18a0-5ce2-444a-bcf3-7a6e52356279" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002443Z:bcff18a0-5ce2-444a-bcf3-7a6e52356279" ], + "x-ms-correlation-request-id": [ "d0e164f1-a7d5-403f-8e0f-6bca4931fae9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021108Z:d0e164f1-a7d5-403f-8e0f-6bca4931fae9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 771FAF7C79324586902B302B64302B88 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D1EFD93BE5243F2AFE133B669D12FBA Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8221" ], + "Content-Length": [ "8180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-27pudsgrfk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-DotNet-27pudsgrfk\",\"repositorySiteName\":\"Functions-DotNet-27pudsgrfk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-27pudsgrfk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:09.49\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-27pudsgrfk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-DotNet-27pudsgrfk\\\\$Functions-DotNet-27pudsgrfk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-dotnet-27pudsgrfk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-srcxwfh7tk\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-DotNet-srcxwfh7tk\",\"repositorySiteName\":\"Functions-DotNet-srcxwfh7tk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"DOTNET|8.0\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-srcxwfh7tk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:10:35.5533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-srcxwfh7tk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-DotNet-srcxwfh7tk\\\\$Functions-DotNet-srcxwfh7tk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-dotnet-srcxwfh7tk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings/list?api-version=2023-12-01+15": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "339" ], - "x-ms-client-request-id": [ "22c77254-3984-4e8f-8a26-b3c9b8d18562" ], + "x-ms-unique-id": [ "705" ], + "x-ms-client-request-id": [ "ab8ce313-45bf-4770-b284-e840352a90aa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7760,40 +8210,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74066263-cc75-4cd6-9c58-b391a5dc9c11" ], + "x-ms-request-id": [ "bd2d616a-5910-491e-a507-7f0418ab6119" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/34388f6b-0292-4c41-8c29-16db1e27047b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e794ae28-b8b3-4cf4-9040-5ee410ef1066" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "838a0d03-0688-4dc4-ab6e-e368b99d1537" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002443Z:838a0d03-0688-4dc4-ab6e-e368b99d1537" ], + "x-ms-correlation-request-id": [ "12170c97-779b-4679-84f1-72833d849482" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021108Z:12170c97-779b-4679-84f1-72833d849482" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FE633FD1F4045898C223013A9FBB134 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7EDDD9E208E740F185FAE8D51412B69B Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-27pudsgrfk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-srcxwfh7tk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "340" ], - "x-ms-client-request-id": [ "be32f76f-b670-4036-9f48-cf70adf76eaf" ], + "x-ms-unique-id": [ "706" ], + "x-ms-client-request-id": [ "e2ae844d-06eb-4314-8982-e3518318b711" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7805,41 +8255,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b2a3b8c-1084-443f-b048-a2987ec06020" ], + "x-ms-request-id": [ "8cada711-acd2-4ca6-9f02-00f8aae4d7e6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d547c7e6-ae5c-430f-820d-92556dc74324" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ca3c22fe-7c36-439e-a31e-6794260a8bc4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e60c5571-f447-4806-a7de-2b6cc016d235" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002444Z:e60c5571-f447-4806-a7de-2b6cc016d235" ], + "x-ms-correlation-request-id": [ "d3c940cf-5567-46ef-9146-5b0f0b73cb17" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021109Z:d3c940cf-5567-46ef-9146-5b0f0b73cb17" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62BADCD7C0E3473D97B2958A11E55D4A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C9EA5863EB10486A8A5452AC096E8D2D Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4187" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk/config/web\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk/config/web\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"DOTNET|8.0\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "341" ], - "x-ms-client-request-id": [ "fd9c1808-cb24-474b-9266-2f5f196aeb20" ], + "x-ms-unique-id": [ "707" ], + "x-ms-client-request-id": [ "abdcbc48-f22a-44b7-ac66-bd12236b6dcd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7851,40 +8301,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b24a4786-b710-4564-8eaa-d628ed6702df" ], + "x-ms-request-id": [ "b094e0f9-997e-451c-bbe8-d5ea81c747b9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e2fa73a7-3a42-423f-8f53-5e3a82992cbf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002444Z:e2fa73a7-3a42-423f-8f53-5e3a82992cbf" ], + "x-ms-correlation-request-id": [ "61a38b8c-7192-43c0-938f-a7fdf5b1fb87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021109Z:61a38b8c-7192-43c0-938f-a7fdf5b1fb87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19E3BF32B6F7471DADB5B10283559021 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A0165131D60441CC933672566CB0B85C Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Validate that creating a DotNet function app in consumption for Linux sets the LinuxFxVersion property+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+18": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-DotNet-27pudsgrfk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-DotNet-srcxwfh7tk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "342" ], - "x-ms-client-request-id": [ "f3e1b568-ffc4-43c0-813b-34abc4f76f55" ], + "x-ms-unique-id": [ "708" ], + "x-ms-client-request-id": [ "1232722e-1362-4043-a8bb-99462a7c91ee" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7895,20 +8345,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB6DD2A9F20\"" ], + "ETag": [ "\"1DCBE5810620E15\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "638e09c5-6a93-485e-b26a-399b35d9247a" ], + "x-ms-request-id": [ "3627f057-1977-41b3-8781-640c67966f78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/06bb9df3-05d7-49c1-bb88-05009984c90a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75fe2f76-2cad-4c5e-9ac8-b80f84cda757" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "85d9795e-008d-452f-84f6-5830bacffc65" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002451Z:85d9795e-008d-452f-84f6-5830bacffc65" ], + "x-ms-correlation-request-id": [ "0af351c5-f031-4faf-a194-5e4efa584a5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021115Z:0af351c5-f031-4faf-a194-5e4efa584a5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26ADAF32E8574DE692F53A617B8B488B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B837E7EF5BA4A698391192BC990208B Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:15 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -7922,7 +8372,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest8-w6t25049gs\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest8-glhw0cek4j\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -7937,18 +8387,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b15db05-3bef-4460-a37d-f37ba803b8ff" ], + "x-ms-request-id": [ "4c92e7b0-6e2c-4e16-8134-39c5ab3c2515" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f3c2a179-e28d-445c-8846-71aabafff215" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/821514b4-2a6a-4de8-adda-dec204217aa5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "93c694e1-bac4-43d7-8c03-9ae1ce5fa7f7" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002451Z:93c694e1-bac4-43d7-8c03-9ae1ce5fa7f7" ], + "x-ms-correlation-request-id": [ "12f70c51-20bf-4063-9af5-147347a6caab" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021116Z:12f70c51-20bf-4063-9af5-147347a6caab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D8FD9CB472A34C1285C611683C72B76C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B892184DCAB341A794557389AB791E18 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -7966,12 +8416,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "344" ], - "x-ms-client-request-id": [ "90b224fc-a211-489b-8d5f-78b195514933" ], + "x-ms-unique-id": [ "710" ], + "x-ms-client-request-id": [ "d3eca314-dddd-42d4-a13f-8a3781eb1dbb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7982,40 +8432,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "fb5198cf-634d-450c-8a79-b175d37fcd44", "22399ead-024a-4440-bbc3-7020ce098329" ], + "x-ms-original-request-ids": [ "cf140cbb-c18d-4977-9095-422531681b7c", "a2a60656-720a-450e-b0f3-8ef32d047882" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "7dfa7f8b-2ecf-4208-9621-1a6d8947ec0e" ], - "x-ms-correlation-request-id": [ "7dfa7f8b-2ecf-4208-9621-1a6d8947ec0e" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002452Z:7dfa7f8b-2ecf-4208-9621-1a6d8947ec0e" ], + "x-ms-request-id": [ "c086d627-2f8a-4267-85e0-fee1b0d8cdd7" ], + "x-ms-correlation-request-id": [ "c086d627-2f8a-4267-85e0-fee1b0d8cdd7" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021118Z:c086d627-2f8a-4267-85e0-fee1b0d8cdd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 19C672EC7D9C4D91A0BF248CB0131635 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B05F08E0A005442A94B48DEC258F5895 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "10446" ], + "Content-Length": [ "12078" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "345" ], - "x-ms-client-request-id": [ "644567aa-d0c6-40fa-89cb-2590712b589a" ], + "x-ms-unique-id": [ "711" ], + "x-ms-client-request-id": [ "68116dfd-e540-4548-be0f-9345caf190da" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8027,40 +8477,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1a93ae49-c849-4d21-bb51-3427e5c7c49f" ], + "x-ms-request-id": [ "fc56e415-45a8-42df-92bb-c7245a3fd089" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "01b96d8f-fd13-4bcb-a13c-770ce43faa67" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:01b96d8f-fd13-4bcb-a13c-770ce43faa67" ], + "x-ms-correlation-request-id": [ "ba10841a-8a8a-43a4-bce9-2af9b1c805c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021118Z:ba10841a-8a8a-43a4-bce9-2af9b1c805c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78C04F6C421246C69FB8803774FC0200 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3FEFD9342867481DA1C676197BAA6B2F Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "346" ], - "x-ms-client-request-id": [ "f20444b4-bc85-4d15-a753-378cedd6da1b" ], + "x-ms-unique-id": [ "712" ], + "x-ms-client-request-id": [ "7a1bb9d1-a65d-40d7-a23b-18967f446335" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8072,40 +8522,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "79338220-1a29-42bf-91c5-f15a0c4b9d9c" ], + "x-ms-request-id": [ "25b9d5da-d037-4157-8352-160694d6892a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fdbeef4c-2a2a-486c-a1be-c758a4d484aa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:fdbeef4c-2a2a-486c-a1be-c758a4d484aa" ], + "x-ms-correlation-request-id": [ "3933ebbd-894a-4c13-b2e8-892d92026973" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021118Z:3933ebbd-894a-4c13-b2e8-892d92026973" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 387013E62FB84270B53106E40225CC2E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5E1635DE3B14CBCB747B19777D2A5CD Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "347" ], - "x-ms-client-request-id": [ "fb532617-8927-4b8e-bac7-90141fd02bbc" ], + "x-ms-unique-id": [ "713" ], + "x-ms-client-request-id": [ "b02dcb85-50fa-46f5-b3ef-700a7f863695" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8117,40 +8567,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6b707a4-88e4-4f60-aaa9-540b59115c06" ], + "x-ms-request-id": [ "708ffc9a-a27c-42e1-b52f-4ddcf5ea4a6e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "e2e59abb-185d-4d75-8417-43f839006969" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:e2e59abb-185d-4d75-8417-43f839006969" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ce4ee85a-68a4-442f-a22c-0cc591536b1a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021118Z:ce4ee85a-68a4-442f-a22c-0cc591536b1a" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F096B294B4AB45C8B4F382C4BD9DF834 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:18 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1748" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "714" ], + "x-ms-client-request-id": [ "de60eb65-1890-4a7e-9b35-842c7ed5588d" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f348cdca-28d0-4aa7-a5e7-2542916fad0b" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "5f08d8e1-7922-4da1-9424-4bc012f6c0c4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021119Z:5f08d8e1-7922-4da1-9424-4bc012f6c0c4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9F86ECD43D2439687DFB8784D9FC58A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4D255F2AEB343FD96307EE3046A24D3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "348" ], - "x-ms-client-request-id": [ "f94e4c39-941f-41a1-b0f8-c953c96ee5dd" ], + "x-ms-unique-id": [ "715" ], + "x-ms-client-request-id": [ "3d05df7c-8006-4e2a-8d6d-4939131aa14b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8162,40 +8657,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f9a57e6-5651-44d0-ae80-186d4e07af24" ], + "x-ms-request-id": [ "0c483d0d-2b9a-4e03-b19b-665095204789" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a5d4155-8482-4b67-b012-fd86dfca3fd4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002453Z:8a5d4155-8482-4b67-b012-fd86dfca3fd4" ], + "x-ms-correlation-request-id": [ "aa2ee64e-1d1b-4be5-b08e-4332aa7eda36" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021119Z:aa2ee64e-1d1b-4be5-b08e-4332aa7eda36" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 929F5BDB247444DCB70C617D7A23ADDB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 28D7E5787E6349C6839BB1FB0AC1B20C Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "349" ], - "x-ms-client-request-id": [ "a7703d6d-c84b-4d21-9f82-f1640dfd5841" ], + "x-ms-unique-id": [ "716" ], + "x-ms-client-request-id": [ "823edfae-93fc-42be-9436-891f16915ce9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8207,40 +8702,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42f93b16-3503-480f-980b-0cf7ee42c702" ], + "x-ms-request-id": [ "a8874770-7928-4588-9c8f-efb7ea60eee6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa1f5c2f-af70-493e-8a33-612ad955b85c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002454Z:aa1f5c2f-af70-493e-8a33-612ad955b85c" ], + "x-ms-correlation-request-id": [ "98f71a1f-89ea-4cdb-9930-3c3c3a86f35d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021119Z:98f71a1f-89ea-4cdb-9930-3c3c3a86f35d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26FF59E7C3D443B58E89F8AED2F43CF5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B7D98DF21BA40B7A2DB7BDF129EF43D Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "350" ], - "x-ms-client-request-id": [ "5f368a52-7e8f-4d62-a44c-5c558abc7dcb" ], + "x-ms-unique-id": [ "717" ], + "x-ms-client-request-id": [ "496b0c85-da22-41c6-a088-28df28514cd9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8252,40 +8747,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "42b3bf80-f7b8-40d2-bb3b-d96d6c0db80a" ], + "x-ms-request-id": [ "b4303c87-0a41-4cd3-b111-35d1e82b6f19" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "63b377f1-499f-40ed-b249-10b598963ab8" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T002454Z:63b377f1-499f-40ed-b249-10b598963ab8" ], + "x-ms-correlation-request-id": [ "6b349f43-3a4a-4f0a-8c6d-c1e53181acb7" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021120Z:6b349f43-3a4a-4f0a-8c6d-c1e53181acb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15F24ECDF2294466A83619C9A56F8A71 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AC3EF811FDE648C280672A5554F0FE9B Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+9": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "351" ], - "x-ms-client-request-id": [ "694f078b-0b52-4f9d-8b16-7e13952756e7" ], + "x-ms-unique-id": [ "718" ], + "x-ms-client-request-id": [ "58e5acb2-d61f-4e69-a4bd-80ee676362fb" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8296,40 +8791,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "52dd4870-9063-4731-8a3a-0ac641e66758", "48153cd8-41f6-4763-9795-21d6969d27eb", "d198a7d3-457a-4f83-9741-29de68543602" ], + "x-ms-original-request-ids": [ "365dda81-692a-4039-9181-e8abc027d14c", "809afa8d-0590-4aa1-b8b9-b3a92a4e5fea", "0142091b-784d-478e-b1df-56aa74b583e8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "fcebf720-7677-4859-9998-d91faa20ca10" ], - "x-ms-correlation-request-id": [ "fcebf720-7677-4859-9998-d91faa20ca10" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002455Z:fcebf720-7677-4859-9998-d91faa20ca10" ], + "x-ms-request-id": [ "d8e58082-5cf6-4767-a772-38d8b0163690" ], + "x-ms-correlation-request-id": [ "d8e58082-5cf6-4767-a772-38d8b0163690" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021121Z:d8e58082-5cf6-4767-a772-38d8b0163690" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44E3830E7A5D437F97A784BB813AD62B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82EAD46C2C0B414FACF367D22315B07D Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "352" ], - "x-ms-client-request-id": [ "650b7a55-9b98-459e-9fa6-976596a5e98e" ], + "x-ms-unique-id": [ "719" ], + "x-ms-client-request-id": [ "2b174d7c-35e2-456e-a6e9-5628c2e57957" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8340,16 +8835,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "e604e92e-153d-4709-b76f-020bdea74677" ], + "x-ms-request-id": [ "30a85ff2-5230-43df-a537-d0f842c4373b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/056da3bb-c0f6-4cdc-a5bc-6ef6b0e8c192" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b66cca05-31ed-4993-8806-722ba89e0df3" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "de0fef24-e99b-4612-b909-1384868cb0e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002455Z:de0fef24-e99b-4612-b909-1384868cb0e4" ], + "x-ms-correlation-request-id": [ "89c78e79-531d-4705-8e52-2ea0c8091a60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021121Z:89c78e79-531d-4705-8e52-2ea0c8091a60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C54FC1342AC748578D11A13D1AD5D57F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:55Z" ], - "Date": [ "Thu, 26 Mar 2026 00:24:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F7A6C16EC3344D5A409BD11C22C1790 Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:11:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -8360,11 +8855,11 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01+12": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest8-w6t25049gs\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest8-glhw0cek4j\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsDashboard\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -8378,43 +8873,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB6F9D514F5\"" ], + "ETag": [ "\"1DCBE582D4B95C0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "056001cb-f0a0-4b96-b585-170e303efe6c" ], + "x-ms-request-id": [ "b6000c48-78be-4986-b2d6-0d77356d54b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14a42c76-895c-404b-ae69-899fed7ea9e9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6f1dd245-0859-4f3f-9ffd-dbfef6218c41" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "697104b4-6fa4-42e3-9831-0d4373d3866f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002537Z:697104b4-6fa4-42e3-9831-0d4373d3866f" ], + "x-ms-correlation-request-id": [ "9ef8744d-f43e-44a4-88a3-4e4b29063686" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021206Z:9ef8744d-f43e-44a4-88a3-4e4b29063686" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BD1C6C2D3D8C49BC85981A29C101E5F7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:24:55Z" ], - "Date": [ "Thu, 26 Mar 2026 00:25:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37D2A55159A8437D85CF617C1610EDCE Ref B: MWH011020809062 Ref C: 2026-03-28T02:11:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:06 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8581" ], + "Content-Length": [ "8586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:24:56.92\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:11:23.1633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest8-glhw0cek4j\\\\$Func-PowerShell-NewTest8-glhw0cek4j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "354" ], - "x-ms-client-request-id": [ "1825a1a9-2cc3-487b-8bb0-bba00719b32c" ], + "x-ms-unique-id": [ "721" ], + "x-ms-client-request-id": [ "3a749e2a-fe33-443d-9626-e31baca75951" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -8424,42 +8919,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB71182E3E0" ], + "ETag": [ "1DCBE58468F46EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2d30cb10-a926-4585-b289-4d3ce8bfa129" ], + "x-ms-request-id": [ "afbe70bc-c5b5-4ba7-8e6b-acfc5bb2e104" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b28b9ced-3c7c-4b0a-8176-d6d4b2be84d5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002608Z:b28b9ced-3c7c-4b0a-8176-d6d4b2be84d5" ], + "x-ms-correlation-request-id": [ "ea4aad04-d504-4230-8d78-761230417149" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021237Z:ea4aad04-d504-4230-8d78-761230417149" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 82E9DB04A6DF4388B8120060D1C17ED7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFB03947B6D74044B592379BD9DBB196 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:12:06.4466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest8-glhw0cek4j\\\\$Func-PowerShell-NewTest8-glhw0cek4j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "355" ], - "x-ms-client-request-id": [ "c4ac8dfb-1ffb-4241-bb5c-eba60b133616" ], + "x-ms-unique-id": [ "722" ], + "x-ms-client-request-id": [ "433ec19e-f1f9-44cb-9a65-fbb3a54ec837" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8470,42 +8965,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB71182E3E0" ], + "ETag": [ "1DCBE58468F46EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c1a3811c-648c-4311-838a-b42fb7470528" ], + "x-ms-request-id": [ "ba232c04-c9c7-4209-a811-e0ea0e3df31e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "09fdd903-96e1-4269-bd92-07c527c774af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002608Z:09fdd903-96e1-4269-bd92-07c527c774af" ], + "x-ms-correlation-request-id": [ "1a7f1293-d95d-4a14-a251-484ed7de940e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021237Z:1a7f1293-d95d-4a14-a251-484ed7de940e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F730BEBF4B349209AF7051C5F6D90E6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC886656B5B5456482C53450CB632B3B Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:12:06.4466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest8-glhw0cek4j\\\\$Func-PowerShell-NewTest8-glhw0cek4j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01+15": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "356" ], - "x-ms-client-request-id": [ "7a235054-c73f-485c-a795-00da862f2d09" ], + "x-ms-unique-id": [ "723" ], + "x-ms-client-request-id": [ "e90ff915-dc3a-4269-be75-f87aada0622d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8517,40 +9012,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba3370c9-9a6f-43ca-b721-97d52b0a9767" ], + "x-ms-request-id": [ "ff967043-5b7d-4e56-840d-6b1b14efa700" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ad5dea0-daa3-499f-afd7-afbea37e7bbf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eb2795f5-2e16-489a-b25c-053c9875a424" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "eec141e9-7beb-41d8-ab93-9ffd86a4c348" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002608Z:eec141e9-7beb-41d8-ab93-9ffd86a4c348" ], + "x-ms-correlation-request-id": [ "42b19dd9-9c2c-4502-8984-7a687a3fc8cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021238Z:42b19dd9-9c2c-4502-8984-7a687a3fc8cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 354B63F4A62C41D49CAE3C76E18F03A5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98DC7D7284574BC09CF1C8BCBABAF775 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-glhw0cek4j\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "357" ], - "x-ms-client-request-id": [ "7d17e4b5-fc2f-420f-8308-f596dcec7023" ], + "x-ms-unique-id": [ "724" ], + "x-ms-client-request-id": [ "32a7ca89-86d5-46b6-9f4b-c18afe1e1c42" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8562,41 +9057,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "327b4fa9-ced8-4f6e-9402-7f4bb51f5c60" ], + "x-ms-request-id": [ "a89e1ca3-d97f-4431-b5f6-c400608ec1d5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/21c7bd0f-986f-4714-ae4c-7e1e1de24f8b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e88fac04-0364-4cca-a5c3-ec172a36c48e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "51b45070-531a-4a47-9831-3e1dc4aea376" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:51b45070-531a-4a47-9831-3e1dc4aea376" ], + "x-ms-correlation-request-id": [ "c24fa49a-e5c0-4ceb-a060-2d319b2c0e99" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021238Z:c24fa49a-e5c0-4ceb-a060-2d319b2c0e99" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63715ABA9D9D4B8CBE84FAEC5F9EBC58 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2180E9E9738E4FB2976652B533580173 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01+17": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "358" ], - "x-ms-client-request-id": [ "23112e12-be5e-43eb-93bd-7f3422ae51c4" ], + "x-ms-unique-id": [ "725" ], + "x-ms-client-request-id": [ "abde67a1-ce96-4c5a-8290-c61ac0aedbbc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8608,40 +9103,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b255f051-7f7c-4c8c-961c-007fd436a524" ], + "x-ms-request-id": [ "afb196e1-b0dc-432c-89f4-721507d3c3f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/972c1f63-dc15-466c-bdb0-a05aa48593b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0a0a8a3-b0ef-4390-965e-19840dee9816" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e809a159-fbbd-4326-9f70-e6534cf746bc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:e809a159-fbbd-4326-9f70-e6534cf746bc" ], + "x-ms-correlation-request-id": [ "9f980710-0f48-43e0-a26d-baac282aa79d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021238Z:9f980710-0f48-43e0-a26d-baac282aa79d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E6CAF19601B24E8991ED2F0D9430D4D0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3D60956E8CA840ECB523C6BEF2B110BD Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-glhw0cek4j\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "359" ], - "x-ms-client-request-id": [ "0660aca6-4074-4320-9d04-eb36c4bb77bc" ], + "x-ms-unique-id": [ "726" ], + "x-ms-client-request-id": [ "7824c25c-23c4-4b23-8064-b882a1b4b1dc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8652,42 +9147,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB71182E3E0" ], + "ETag": [ "1DCBE58468F46EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d7c87bb-01f0-4e4d-89dc-7650c820c48c" ], + "x-ms-request-id": [ "edbbef07-d131-485a-83a1-ae520d329c03" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bb843fb2-def2-4d6e-a348-4e98fd57419f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:bb843fb2-def2-4d6e-a348-4e98fd57419f" ], + "x-ms-correlation-request-id": [ "ac93afdc-0b86-4e4e-849c-589a445a435e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021239Z:ac93afdc-0b86-4e4e-849c-589a445a435e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A7DA29D3DC046988D3CE300EE149AFD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1007230B7E7E4A30969DE866A30B84BC Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:12:06.4466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest8-glhw0cek4j\\\\$Func-PowerShell-NewTest8-glhw0cek4j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "360" ], - "x-ms-client-request-id": [ "6d2ed136-49f5-46f3-b5ec-0588429eb01a" ], + "x-ms-unique-id": [ "727" ], + "x-ms-client-request-id": [ "59e5cc11-8f8c-43f0-a296-23d78d01268e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8699,40 +9194,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a43f38f9-c94a-4e99-9342-092f2f68b26c" ], + "x-ms-request-id": [ "3a3aba89-7c82-47e3-8d01-6a5b3b0ce418" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9eaaaf66-e251-42e1-bc1c-6c8a56651e34" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ddbf328f-f4ec-461f-9582-698bdec5f68b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b8ae6610-46b3-4b6f-b46d-82a2490d15e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002609Z:b8ae6610-46b3-4b6f-b46d-82a2490d15e4" ], + "x-ms-correlation-request-id": [ "35b78c80-7574-49e0-8b43-41d262ae2618" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021239Z:35b78c80-7574-49e0-8b43-41d262ae2618" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 045CB2B0B17F4FE0A122F9E7D72D8A06 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 430FA2842A7B4D01B0C39A360D367B48 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-glhw0cek4j\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "361" ], - "x-ms-client-request-id": [ "1d33d78e-91a3-4c08-a85a-c4508194735d" ], + "x-ms-unique-id": [ "728" ], + "x-ms-client-request-id": [ "5d73ccb6-9f25-49f0-a68f-b27c78315b21" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8744,41 +9239,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3540db47-fcb0-4834-aa8f-3ac105ca0864" ], + "x-ms-request-id": [ "4f127096-513c-49db-80e0-6307774e3b28" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feffa73f-5e57-47da-be18-64ade95fe436" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c5f95b4-c3b0-41e3-aaf7-6669f80b8127" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b2d96015-0c59-4905-8511-2d57681f6bbf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002610Z:b2d96015-0c59-4905-8511-2d57681f6bbf" ], + "x-ms-correlation-request-id": [ "cc9321a2-5f8f-4f59-a9e3-39a8f7d41c20" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021239Z:cc9321a2-5f8f-4f59-a9e3-39a8f7d41c20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 82E1D5FF726845348D6A58FABF3DA330 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5ED91463DA6445BA8449E60743D0BC4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "362" ], - "x-ms-client-request-id": [ "77df2e31-be07-4115-9884-f6ad60dc8ab3" ], + "x-ms-unique-id": [ "729" ], + "x-ms-client-request-id": [ "929b1515-a3cb-4dd3-94e0-5a8b1860cf9b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8789,42 +9284,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB71182E3E0" ], + "ETag": [ "1DCBE58468F46EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7590dfd4-7cf7-4b15-8af2-775ab78fe485" ], + "x-ms-request-id": [ "ee720680-8282-45c5-8a72-e8016b28cb7b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8cabe901-ef71-4b50-8c6c-a8402d74136c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002610Z:8cabe901-ef71-4b50-8c6c-a8402d74136c" ], + "x-ms-correlation-request-id": [ "7b3f8113-df27-4da5-8c74-31feb64ffc4a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021240Z:7b3f8113-df27-4da5-8c74-31feb64ffc4a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 872DB7A717A84365B2CF495F3EE9BDAE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A721680A33F04FDCB2899409ABEBAC60 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest8-w6t25049gs\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-w6t25049gs.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:25:37.31\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest8-w6t25049gs\\\\$Func-PowerShell-NewTest8-w6t25049gs\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest8-w6t25049gs.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest8-glhw0cek4j\",\"repositorySiteName\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest8-glhw0cek4j.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:12:06.4466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest8-glhw0cek4j\\\\$Func-PowerShell-NewTest8-glhw0cek4j\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest8-glhw0cek4j.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "363" ], - "x-ms-client-request-id": [ "11e733c7-e6bd-42e3-a68a-94fda46d0418" ], + "x-ms-unique-id": [ "730" ], + "x-ms-client-request-id": [ "5c0fd9ed-aebc-4d57-b94d-f272b02bb9f7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8836,40 +9331,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3f9aca7-eed0-4bd2-8599-d53cdd4ead40" ], + "x-ms-request-id": [ "19083700-b4eb-47c6-adb3-c3cfb1ccc233" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c863ba19-47de-48d9-94d6-3e42dd90ea40" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/77fe405d-e3e0-4705-befe-ee78da84beef" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "537548b9-acff-4f5b-9253-92ffdc8ff044" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002610Z:537548b9-acff-4f5b-9253-92ffdc8ff044" ], + "x-ms-correlation-request-id": [ "2068619b-6483-4e99-9612-fe15790d8d3b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021240Z:2068619b-6483-4e99-9612-fe15790d8d3b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9D85111AA2EE4EFAAEFC3E49B02BE01F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 536C64CB9FE74C99B6DD42B781A0B980 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1119" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-w6t25049gs\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest8-glhw0cek4j\",\"AzureWebJobsDashboard\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "364" ], - "x-ms-client-request-id": [ "379e20d7-8619-4c44-9a18-1d21e7dd74bc" ], + "x-ms-unique-id": [ "731" ], + "x-ms-client-request-id": [ "e84c084e-d1d1-492c-9201-9a031243b23c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8881,41 +9376,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "79c57044-040a-402b-8fda-15acc32ea240" ], + "x-ms-request-id": [ "6025edfb-3889-4158-9376-7feff425eff9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6659c99f-b134-49cb-b59d-798e18af9dd1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce5d2cbf-4054-4d72-84d4-e34b49a3dba5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "26db7681-8d40-46a4-9474-cf10630f9383" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002611Z:26db7681-8d40-46a4-9474-cf10630f9383" ], + "x-ms-correlation-request-id": [ "f9e4d999-822b-4a32-bf47-1d1c5dc4f069" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021241Z:f9e4d999-822b-4a32-bf47-1d1c5dc4f069" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3EDB13B049CB496DAFB1412D3CE5A153 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 207295DEC3B84F8F8FF78E068B6C72E0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs/config/web\",\"name\":\"Func-PowerShell-NewTest8-w6t25049gs\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j/config/web\",\"name\":\"Func-PowerShell-NewTest8-glhw0cek4j\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "365" ], - "x-ms-client-request-id": [ "fe840195-29a5-4a9b-8c6c-6e4e1d722a51" ], + "x-ms-unique-id": [ "732" ], + "x-ms-client-request-id": [ "307f8271-577b-48cf-8306-cb542a31dc0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8927,40 +9422,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d3ef5ef-4b60-4387-b4d3-8b8f9b95077a" ], + "x-ms-request-id": [ "f6876324-3d8c-494c-8c9c-0047d2cb7a59" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6202607a-4975-4a65-9279-af10f8c434a3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002611Z:6202607a-4975-4a65-9279-af10f8c434a3" ], + "x-ms-correlation-request-id": [ "cbb8423c-5c65-4669-95fc-b82a9ea64b0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021241Z:cbb8423c-5c65-4669-95fc-b82a9ea64b0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F00BAB18406429B80B134B712A3B662 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 76C464DAC9A64963B580DDB4F26DC95F Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Validate that creating a function app with -DisableApplicationInsights does not create an Application Insights project.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+25": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-w6t25049gs?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest8-glhw0cek4j?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "366" ], - "x-ms-client-request-id": [ "d45d5eb1-17e3-4989-9103-708c4a7f62aa" ], + "x-ms-unique-id": [ "733" ], + "x-ms-client-request-id": [ "2266587b-5d0d-484d-aea9-6b1e26ebf211" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8971,20 +9466,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB71182E3E0\"" ], + "ETag": [ "\"1DCBE58468F46EB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2a1c6b5a-08c5-4feb-b0ce-f860abf8b407" ], + "x-ms-request-id": [ "083deb90-cf24-489c-80b4-7ed794622525" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0f5fe7c-429f-4fd9-933c-2a7ed3a564f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26476486-5da8-47a8-9a1d-5b17b1d8efaf" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "9d169686-ca57-457f-9b32-e4c490a41b6a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002621Z:9d169686-ca57-457f-9b32-e4c490a41b6a" ], + "x-ms-correlation-request-id": [ "e8777e47-b787-404d-9763-4faaa5d8ae7d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021249Z:e8777e47-b787-404d-9763-4faaa5d8ae7d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4B86C8CD9FF4B659F740A94E9DCCCE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F61F9C9F3A4B45349F94E283764C3CCB Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:48 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8998,7 +9493,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Java-0ehb98v3n4\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Java-x057hmvfzy\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9013,18 +9508,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a9cca4b1-6b7d-4216-8738-eccb415faa41" ], + "x-ms-request-id": [ "06286eaa-5fe2-4a47-8641-6e3cd6dc6364" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/c1b8ae13-733f-4388-9a64-cdeb66123226" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/a2f442d8-d865-4639-acb3-f744f8fae3b1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c036e9a3-6aa4-4d45-b3b2-329fe1816e0b" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T002622Z:c036e9a3-6aa4-4d45-b3b2-329fe1816e0b" ], + "x-ms-correlation-request-id": [ "01999a4b-3a21-4824-acbb-6fd7fab76dd6" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T021249Z:01999a4b-3a21-4824-acbb-6fd7fab76dd6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75872C7C4C434B6AA6DA7DF04EB2F12C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B218C74801DC4B8BB7DDCADB5A58CE94 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9042,12 +9537,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "368" ], - "x-ms-client-request-id": [ "042cf8c6-3ce8-4c2d-ac33-694d6aeb07ab" ], + "x-ms-unique-id": [ "735" ], + "x-ms-client-request-id": [ "efee067d-163d-42c1-8dd7-8b57c440a912" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9059,18 +9554,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7d061e8d-a381-44b7-8b6f-e01b85d25758" ], + "x-ms-request-id": [ "3794be99-5d3c-4e5f-9b36-ce720d774006" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/7ca8e52b-87a4-436f-b518-5b03c70d10da" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/02aac14b-bbc1-436c-a736-ce5fd7ee5929" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3baa7ec9-3048-442a-8f7e-5836436d1f70" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T002622Z:3baa7ec9-3048-442a-8f7e-5836436d1f70" ], + "x-ms-correlation-request-id": [ "fd71766c-fa0f-4f28-9fe0-c76f6e5c5f29" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021250Z:fd71766c-fa0f-4f28-9fe0-c76f6e5c5f29" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00E80F72ADAA4E83BF887D3F07E8EE57 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5D7ACB675434774A46B4E7AB7CAA02B Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38561" ], @@ -9088,12 +9583,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "369" ], - "x-ms-client-request-id": [ "c03ec5c3-29e0-454b-8062-96236ddf8378" ], + "x-ms-unique-id": [ "736" ], + "x-ms-client-request-id": [ "a5595451-3a73-4f83-8e0a-9720a397497e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9104,40 +9599,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "aa423480-6ec1-4b58-96d0-6b80448e4a4d", "655453c2-d9c0-40c1-a51d-97c03e6c44b9", "74eced49-7eca-45ef-8f2c-ae69c60017ee" ], + "x-ms-original-request-ids": [ "ca9be420-1279-46d7-80e9-254f08eb2a07", "096ff6d1-b2e0-40ef-944f-c7b07bafa9e9", "71f091f8-db7d-456e-8937-51ec369468d5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0bda0d75-4bb4-422d-9088-d735cc8e8804" ], - "x-ms-correlation-request-id": [ "0bda0d75-4bb4-422d-9088-d735cc8e8804" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002623Z:0bda0d75-4bb4-422d-9088-d735cc8e8804" ], + "x-ms-request-id": [ "04c5acf8-005f-42e7-8526-060be8e45d6e" ], + "x-ms-correlation-request-id": [ "04c5acf8-005f-42e7-8526-060be8e45d6e" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021250Z:04c5acf8-005f-42e7-8526-060be8e45d6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D499551147146A3910785BCC68951E4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DFAE7B6A9CE34E08A0E6772FDF93F48F Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "370" ], - "x-ms-client-request-id": [ "a0c2579f-d753-4276-8aad-7fbb0ce10f27" ], + "x-ms-unique-id": [ "737" ], + "x-ms-client-request-id": [ "b122e8a5-bf92-4e20-a677-8331c0c525b6" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9148,16 +9643,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "5db0c8bf-3787-4a37-b959-4dd0e0769dfa" ], + "x-ms-request-id": [ "acb76709-61fc-4be0-832b-294e62ad6393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/503ebcdc-cbac-4445-ad5d-c6b50fc7a87f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a2891441-cb09-4a2a-a544-8161b5b8c560" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "17e156c3-2b5d-4d00-b8f3-f30dcffddbd3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002623Z:17e156c3-2b5d-4d00-b8f3-f30dcffddbd3" ], + "x-ms-correlation-request-id": [ "9dbf732c-cf81-4b73-b786-6fbe6c69080b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021250Z:9dbf732c-cf81-4b73-b786-6fbe6c69080b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC7BDF7BC9AF442989AFE52E63CC69EA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5029DA117E1242B589E6D1E50884692B Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -9168,10 +9663,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Java-0ehb98v3n4?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Insights/components/Functions-Java-x057hmvfzy?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Java-0ehb98v3n4?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Insights/components/Functions-Java-x057hmvfzy?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -9191,30 +9686,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c14cb83d-86ba-4573-bfee-0f28fe9f5c43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0cf41547-4d6c-44b3-b7ad-a77fc93fee97" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "2d01294f-ca42-4745-9508-9ee01d686e7d" ], - "x-ms-correlation-request-id": [ "2d01294f-ca42-4745-9508-9ee01d686e7d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002628Z:2d01294f-ca42-4745-9508-9ee01d686e7d" ], + "x-ms-request-id": [ "31e28916-f0d5-4243-862d-096b4de82d94" ], + "x-ms-correlation-request-id": [ "31e28916-f0d5-4243-862d-096b4de82d94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021257Z:31e28916-f0d5-4243-862d-096b4de82d94" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2DFCEC11F50A433A950DC5EBF644ADD3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA39E1E741104EDC9BC7BC69062E7476 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:12:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1626" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c2025b94-0000-0300-0000-69c47d340000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Java-0ehb98v3n4\",\r\n \"name\": \"Functions-Java-0ehb98v3n4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-0ehb98v3n4\",\r\n \"AppId\": \"5e6a4135-3c4e-4226-8637-1225684a12ad\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"311d7fd0-0184-4a35-92aa-3a6c064497e9\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Java-0ehb98v3n4\",\r\n \"CreationDate\": \"2026-03-26T00:26:24.4752228+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-0ehb98v3n4_5e6a4135-3c4e-4226-8637-1225684a12ad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-0ehb98v3n4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d03d8dd-0000-0300-0000-69c739290000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-Java-x057hmvfzy\",\r\n \"name\": \"Functions-Java-x057hmvfzy\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Java-x057hmvfzy\",\r\n \"AppId\": \"bf3bb2bd-3c37-4dd8-bec0-320c50f01631\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3623fc5d-6d10-488e-a395-15958676474c\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Java-x057hmvfzy\",\r\n \"CreationDate\": \"2026-03-28T02:12:51.7748231+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-x057hmvfzy_bf3bb2bd-3c37-4dd8-bec0-320c50f01631_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-x057hmvfzy-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Java|21\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"java\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-0ehb98v3n4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Java|21\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"java\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-java-x057hmvfzy\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -9228,43 +9723,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB731A2DE6B\"" ], + "ETag": [ "\"1DCBE586671B640\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b544a2f0-d0dd-4726-8767-23448ad648b5" ], + "x-ms-request-id": [ "10089b25-270a-45d4-9bfe-19440e9d76d3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/45dfc217-ce93-43f8-a402-eaaefd86f22b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17d2b8a2-f9f4-477d-964f-157fd86a5220" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "083662ca-42e1-4824-96a6-f3d8d0dd3014" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002651Z:083662ca-42e1-4824-96a6-f3d8d0dd3014" ], + "x-ms-correlation-request-id": [ "60d2ca79-3309-4f95-bffd-1a1a03c27886" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021319Z:60d2ca79-3309-4f95-bffd-1a1a03c27886" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 49C7078F71DD4A3482442F9859AAD84D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:26:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:26:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 20E2C9449A424BA4ABB859ECE46A0008 Ref B: MWH011020809062 Ref C: 2026-03-28T02:12:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8387" ], + "Content-Length": [ "8341" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:30.3066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Java-x057hmvfzy\",\"state\":\"Running\",\"hostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Java-x057hmvfzy\",\"repositorySiteName\":\"Functions-Java-x057hmvfzy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\",\"functions-java-x057hmvfzy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-x057hmvfzy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:12:59.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-x057hmvfzy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-x057hmvfzy\\\\$Functions-Java-x057hmvfzy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "373" ], - "x-ms-client-request-id": [ "e5927813-6831-4695-834a-ff4a9c890110" ], + "x-ms-unique-id": [ "740" ], + "x-ms-client-request-id": [ "3b397f2f-4d10-45fb-8630-a050c202c253" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -9274,42 +9769,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB73D80E4CB" ], + "ETag": [ "1DCBE5871CAFC40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48f401ec-4846-405e-86a8-97be6899c11b" ], + "x-ms-request-id": [ "ef27d23c-5df0-491c-b08c-146fae05b172" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d631d971-359c-4f50-8960-fd7ad9715fbe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002722Z:d631d971-359c-4f50-8960-fd7ad9715fbe" ], + "x-ms-correlation-request-id": [ "55716bcf-2112-4bea-98b1-e9f3764063c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021349Z:55716bcf-2112-4bea-98b1-e9f3764063c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCBA82B3123C4B15AB93A7478CF885F4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5108A02CD6F4796B8075456048BE8D7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8192" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-x057hmvfzy\",\"state\":\"Running\",\"hostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Java-x057hmvfzy\",\"repositorySiteName\":\"Functions-Java-x057hmvfzy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\",\"functions-java-x057hmvfzy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-x057hmvfzy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:13:18.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-x057hmvfzy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-x057hmvfzy\\\\$Functions-Java-x057hmvfzy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "374" ], - "x-ms-client-request-id": [ "859ee378-1b48-42ee-9dfd-271c1a5c466d" ], + "x-ms-unique-id": [ "741" ], + "x-ms-client-request-id": [ "6ffa9113-4330-4fe9-bf76-db8e042821f1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9320,42 +9815,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB73D80E4CB" ], + "ETag": [ "1DCBE5871CAFC40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96a898f7-8137-4f92-b4fc-b275f1724baa" ], + "x-ms-request-id": [ "9044011f-a27d-4778-80ee-d4baac007ef4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c66a104d-fe84-4a17-a109-33571bcf9095" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002722Z:c66a104d-fe84-4a17-a109-33571bcf9095" ], + "x-ms-correlation-request-id": [ "0666fc42-e498-45d2-9e98-c2fb55c5dc2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021350Z:0666fc42-e498-45d2-9e98-c2fb55c5dc2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C9CFC927F07E4DC38152EC91906903A7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7439AECBEAF54D65A34FA89F4857CAE1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8192" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-x057hmvfzy\",\"state\":\"Running\",\"hostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Java-x057hmvfzy\",\"repositorySiteName\":\"Functions-Java-x057hmvfzy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\",\"functions-java-x057hmvfzy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-x057hmvfzy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:13:18.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-x057hmvfzy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-x057hmvfzy\\\\$Functions-Java-x057hmvfzy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "375" ], - "x-ms-client-request-id": [ "5fd4fc16-56a1-459d-93cd-0e273aba9b37" ], + "x-ms-unique-id": [ "742" ], + "x-ms-client-request-id": [ "ec05fb6c-e0bb-4a51-a95d-a16e596510be" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9367,40 +9862,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4248965a-15b0-4322-b1ff-9e4a46f5fba7" ], + "x-ms-request-id": [ "a35e248b-c9b8-4f17-899f-5e25e9311d51" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/20236da5-e26d-442a-856f-583b01dd6e30" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/413ccd22-31e3-43ef-af70-fb9d2e853768" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "56253ff8-1557-4e3b-8d94-17cf94bb9726" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002722Z:56253ff8-1557-4e3b-8d94-17cf94bb9726" ], + "x-ms-correlation-request-id": [ "a7be9bc1-e9a4-4166-9e95-74e0fb0bbf3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021350Z:a7be9bc1-e9a4-4166-9e95-74e0fb0bbf3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C335387B8334CB38AFC68923680C780 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B75967B623F4AABBCC4D71DBC48DE5A Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-x057hmvfzy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "376" ], - "x-ms-client-request-id": [ "40b03f90-9b69-411c-a600-c85afdc1f4ca" ], + "x-ms-unique-id": [ "743" ], + "x-ms-client-request-id": [ "ca1c5db1-b086-47f6-b3f7-d25af50ec8c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9412,41 +9907,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "918fb7a0-13d3-40f7-8372-2b473a287e00" ], + "x-ms-request-id": [ "7e299a4b-9e97-4afe-959a-c1d2f407c595" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/36f13ce9-e77a-4196-8558-eeabca665985" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c9f2d86e-e4b5-41ae-b803-266bbdd5cedb" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "72ded56a-4461-4f8c-a8ff-9b396b958afa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002723Z:72ded56a-4461-4f8c-a8ff-9b396b958afa" ], + "x-ms-correlation-request-id": [ "054832a7-ba67-4343-a8a2-0c5363ebd7d4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021350Z:054832a7-ba67-4343-a8a2-0c5363ebd7d4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 043B37659A48400D978C0A7AE5A2E2DE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A43A1DFE6E84F58B4F6DDE63F2FBF19 Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "377" ], - "x-ms-client-request-id": [ "a63e6e34-292d-400f-b833-b216b01cb4b8" ], + "x-ms-unique-id": [ "744" ], + "x-ms-client-request-id": [ "15a10e1d-a2a8-4fe5-a2f4-500cff5b6afa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9458,40 +9953,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2403426e-7dec-41f8-a2af-4f145c5d5698" ], + "x-ms-request-id": [ "9944e9b7-dfa2-4fd5-b10c-fbb31c6f34bc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7cdb6d52-5307-441c-84f9-b0506c20da43" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c63f4445-c553-4f77-88d9-830151697738" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8f7ad245-f951-4cb5-9b27-a28de4667ca4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002723Z:8f7ad245-f951-4cb5-9b27-a28de4667ca4" ], + "x-ms-correlation-request-id": [ "c525e4e4-bd4f-46aa-955e-46b12319705e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021351Z:c525e4e4-bd4f-46aa-955e-46b12319705e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45148B2E87A04C59A827D685D352E835 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C13E0BEC2DF42218805BAA742217C8B Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-x057hmvfzy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "378" ], - "x-ms-client-request-id": [ "4c095a37-edbb-43f1-bde3-f347dc69a615" ], + "x-ms-unique-id": [ "745" ], + "x-ms-client-request-id": [ "f464aa76-5725-4520-8847-e1aebf5d948c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9502,42 +9997,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB73D80E4CB" ], + "ETag": [ "1DCBE5871CAFC40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1ce9d1c-1d6c-488a-ad89-5fd00f22655c" ], + "x-ms-request-id": [ "b08a1829-8eb9-4c48-8825-6b357916a70c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f8d185a7-ac0d-4f55-a61f-58b448bf8a83" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002723Z:f8d185a7-ac0d-4f55-a61f-58b448bf8a83" ], + "x-ms-correlation-request-id": [ "ade6be9c-f00b-4d3e-b2b6-4a28f1733449" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021351Z:ade6be9c-f00b-4d3e-b2b6-4a28f1733449" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1BA6AEC2D3B94D1297468608D2303225 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CADFB172EDA04430868B9C27F31EDD2F Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8192" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-x057hmvfzy\",\"state\":\"Running\",\"hostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Java-x057hmvfzy\",\"repositorySiteName\":\"Functions-Java-x057hmvfzy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\",\"functions-java-x057hmvfzy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-x057hmvfzy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:13:18.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-x057hmvfzy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-x057hmvfzy\\\\$Functions-Java-x057hmvfzy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "379" ], - "x-ms-client-request-id": [ "330bfa37-79b9-49c7-9ec3-4055276fc3c2" ], + "x-ms-unique-id": [ "746" ], + "x-ms-client-request-id": [ "d9a4090c-535f-4dc3-839a-9c34a2af7c02" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9549,40 +10044,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0dd34791-929d-4ff4-a130-39e29e5b753c" ], + "x-ms-request-id": [ "d2bc0618-1592-4da6-a743-216a6cb35eab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3786551-0024-4a48-89ce-0d2dc5d31344" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c435dd9-d595-4a1f-89ad-81cc5d61df81" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ef6c3b9a-7fd6-497e-87ea-938bf7dd037f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002724Z:ef6c3b9a-7fd6-497e-87ea-938bf7dd037f" ], + "x-ms-correlation-request-id": [ "05c1f0c9-e369-4c37-97b1-53c1088233b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021351Z:05c1f0c9-e369-4c37-97b1-53c1088233b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 182DDB27567F46FB83244255F1AEFB1C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06590805FDC34FE5B61268DADB7A0478 Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-x057hmvfzy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "380" ], - "x-ms-client-request-id": [ "794e501c-51d8-459f-b96c-e965643f50ee" ], + "x-ms-unique-id": [ "747" ], + "x-ms-client-request-id": [ "0060cdb4-d362-4dce-b016-bf9a0784d103" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9594,41 +10089,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8ec79e40-242e-4788-8fb8-82515aca8020" ], + "x-ms-request-id": [ "35440735-88b5-44c6-b726-ab9b1c53ce93" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/66b27820-fa6f-4101-b68d-4df6a060eac8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f270510-0542-41c8-b9a4-51f8a6f6b146" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f6284b43-53fd-41b5-bdab-fdac7f5d4241" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002724Z:f6284b43-53fd-41b5-bdab-fdac7f5d4241" ], + "x-ms-correlation-request-id": [ "fecac988-3fb3-4f43-b081-bc01f7afe9b1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021352Z:fecac988-3fb3-4f43-b081-bc01f7afe9b1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6499B70AC5BA461DA6ECC48E881D3ED8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55825818B67245A68464BC0BD31245FE Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "381" ], - "x-ms-client-request-id": [ "f8ede7e7-a415-455f-9f1d-ff9d09fb3e9e" ], + "x-ms-unique-id": [ "748" ], + "x-ms-client-request-id": [ "98cf5ab4-8210-4c6d-947f-d928db06b5e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9639,42 +10134,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB73D80E4CB" ], + "ETag": [ "1DCBE5871CAFC40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1aaa2b4b-72d2-4525-8900-e8af38815f5e" ], + "x-ms-request-id": [ "46bb3333-2f51-4f3d-8cc0-2d3b0a5084d1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4025026f-a5e8-4909-b9e1-35a8bbfa5467" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002724Z:4025026f-a5e8-4909-b9e1-35a8bbfa5467" ], + "x-ms-correlation-request-id": [ "dfef608e-f17c-4121-bd2a-368885c1d388" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021352Z:dfef608e-f17c-4121-bd2a-368885c1d388" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D600B93F42544EB96D0173EF0287328 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37D380388A944C0D9C0DF945701BBC3D Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8192" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-0ehb98v3n4\",\"state\":\"Running\",\"hostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Java-0ehb98v3n4\",\"repositorySiteName\":\"Functions-Java-0ehb98v3n4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-0ehb98v3n4.azurewebsites.net\",\"functions-java-0ehb98v3n4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-0ehb98v3n4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:26:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-0ehb98v3n4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Java-0ehb98v3n4\\\\$Functions-Java-0ehb98v3n4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-java-0ehb98v3n4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Java-x057hmvfzy\",\"state\":\"Running\",\"hostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Java-x057hmvfzy\",\"repositorySiteName\":\"Functions-Java-x057hmvfzy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-java-x057hmvfzy.azurewebsites.net\",\"functions-java-x057hmvfzy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Java|21\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-java-x057hmvfzy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:13:18.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Java-x057hmvfzy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Java-x057hmvfzy\\\\$Functions-Java-x057hmvfzy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-java-x057hmvfzy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "382" ], - "x-ms-client-request-id": [ "de790e2f-c9cb-44ac-a02f-750c1e345fa0" ], + "x-ms-unique-id": [ "749" ], + "x-ms-client-request-id": [ "51de1f8c-62e6-4c3a-8439-7a6aef663144" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9686,40 +10181,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc631c09-0b01-47fa-9084-6e7c77d62935" ], + "x-ms-request-id": [ "9fefe204-06b4-4463-9a33-3f52f163130e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cb8fa594-68e0-4c4a-b4be-f7c08981acd3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22bdf0a7-75b7-4753-93f1-75239de461a6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c615d68c-4123-45b9-9040-bbff594af796" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002725Z:c615d68c-4123-45b9-9040-bbff594af796" ], + "x-ms-correlation-request-id": [ "b0733cf3-8c98-4c22-8353-dcc01855733f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021352Z:b0733cf3-8c98-4c22-8353-dcc01855733f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2443E0713ECC48E2A98942E52B2FA7F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D3C114FC82A8406F92E4D8F068250FBD Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-0ehb98v3n4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"java\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-java-x057hmvfzy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "383" ], - "x-ms-client-request-id": [ "acab7e42-b220-473a-b199-8166fa1bf113" ], + "x-ms-unique-id": [ "750" ], + "x-ms-client-request-id": [ "5c2681e9-a3a2-4993-8da6-920f90caf253" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9731,41 +10226,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a6845851-9e3e-40b8-af91-e1e2ca18678a" ], + "x-ms-request-id": [ "9925f4a4-c1ad-4eff-8b93-8e34f1812c33" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dd41a3b9-d325-48b9-a426-6b553da2f375" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24de71ca-6e18-49ea-a458-70796de46b7c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84a15d83-48b1-4cd4-bb30-e3a17977fc4b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002725Z:84a15d83-48b1-4cd4-bb30-e3a17977fc4b" ], + "x-ms-correlation-request-id": [ "62bbc415-d251-402e-81df-25d763ac6b8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021353Z:62bbc415-d251-402e-81df-25d763ac6b8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 793E2D7C7780473D9287E071D2EEDFD6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B628D8E9239D483EB2B29DCB0E8FA09D Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4/config/web\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy/config/web\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Java|21\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "384" ], - "x-ms-client-request-id": [ "ff97a57c-b625-4122-82f1-2ae05363707c" ], + "x-ms-unique-id": [ "751" ], + "x-ms-client-request-id": [ "23f030f2-8264-4b5b-9d9c-e73aa01e4981" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9777,40 +10272,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "293f8bc7-7473-4774-880d-2c7dc2f6a775" ], + "x-ms-request-id": [ "9d284dc8-03c4-478c-b1a7-56ac2dbe84f5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "04d968cb-9c15-4a62-8093-cc4de91a9245" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002725Z:04d968cb-9c15-4a62-8093-cc4de91a9245" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b0c5f3f5-bbd9-4012-9ae5-e0741e93ea97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021353Z:b0c5f3f5-bbd9-4012-9ae5-e0741e93ea97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A506D91D2304FF38A12DC22FECEA031 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2579CC80E8AF416AB164A282BC5A4585 Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Java 21 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Java-0ehb98v3n4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Java-x057hmvfzy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "385" ], - "x-ms-client-request-id": [ "4a912f63-22dd-44d0-8b1c-27b1d37ce251" ], + "x-ms-unique-id": [ "752" ], + "x-ms-client-request-id": [ "86f37411-6d87-49fa-9d04-f299a4d14b5f" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9821,20 +10316,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB73D80E4CB\"" ], + "ETag": [ "\"1DCBE5871CAFC40\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f701681-fa0e-49c3-a5f6-a64615bf237f" ], + "x-ms-request-id": [ "717ef204-ff3d-4c5f-8819-36043e137068" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ee8c4b3-162d-467d-8db1-3ddd73399c1c" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "7afe7647-ea14-4f43-a39e-7a1e98eba3f0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002734Z:7afe7647-ea14-4f43-a39e-7a1e98eba3f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e3bb285-e60b-4607-9301-f31ef2808462" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "d0752236-0ce7-433b-90f4-93d666e1d68c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021400Z:d0752236-0ce7-433b-90f4-93d666e1d68c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF50315722BC4821921557E046731A24 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EDC158DF9BA240DE9F63AF782CBF329E Ref B: MWH011020809062 Ref C: 2026-03-28T02:13:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:13:59 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -9848,7 +10343,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-Node-ulmzgn9t6x\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-Node-0kzsvafpx4\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -9863,18 +10358,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "836ad2d6-fde3-467f-aafb-0047b2c08e56" ], + "x-ms-request-id": [ "63aeb72d-02f6-4e87-a873-476125a4c531" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/1b57afca-14a4-4135-9158-8f006f5009a3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/5d784024-5194-417f-86af-231c13463f0a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a04699b8-e752-45d2-b526-1afa9cdf4a8c" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T002734Z:a04699b8-e752-45d2-b526-1afa9cdf4a8c" ], + "x-ms-correlation-request-id": [ "6a76d947-9415-49ed-a44b-01c29d5b2cdb" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021400Z:6a76d947-9415-49ed-a44b-01c29d5b2cdb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C2304D1EB664891B9D8DA1B8EC96CE2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 92703CBAE03F45F49F1DB9322C6E9225 Ref B: MWH011020809062 Ref C: 2026-03-28T02:14:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -9892,12 +10387,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "387" ], - "x-ms-client-request-id": [ "6ef0b14a-c0dd-43ef-8752-41968cda51bb" ], + "x-ms-unique-id": [ "754" ], + "x-ms-client-request-id": [ "dacc9df6-b27f-4775-973b-3b68a130c9ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9909,25 +10404,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "890a05df-aa06-482b-94d0-e9d5388a3252" ], + "x-ms-request-id": [ "a75f0ff0-48c1-4e9c-bf6e-01e19082c306" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/35133b5a-39aa-4706-b522-c6b84666bc4a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/b32a70ca-c0cd-43db-8622-1d2936261fab" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1c7fa30b-54ed-4243-9b2e-e3a6b6d8391e" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T002735Z:1c7fa30b-54ed-4243-9b2e-e3a6b6d8391e" ], + "x-ms-correlation-request-id": [ "0b4938d4-30b2-40db-9455-8c0d43dbb01b" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T021401Z:0b4938d4-30b2-40db-9455-8c0d43dbb01b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4582AF8BB874945B67CB03776847E5B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBE698BAEEBD4A659B2602E3E8F4C58F Ref B: MWH011020809062 Ref C: 2026-03-28T02:14:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "38561" ], + "Content-Length": [ "38729" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"\"}}],\"nextLink\":null,\"id\":null}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada Central\",\"name\":\"Canada Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada Central\",\"description\":null,\"sortOrder\":0,\"displayName\":\"Canada Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;WINDOWSP0V3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"canadacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Europe\",\"name\":\"North Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Europe\",\"description\":null,\"sortOrder\":1,\"displayName\":\"North Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"northeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Europe\",\"name\":\"West Europe\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Europe\",\"description\":null,\"sortOrder\":2,\"displayName\":\"West Europe\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westeurope-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast Asia\",\"name\":\"Southeast Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast Asia\",\"description\":null,\"sortOrder\":3,\"displayName\":\"Southeast Asia\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"southeastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia\",\"name\":\"East Asia\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia\",\"description\":null,\"sortOrder\":4,\"displayName\":\"East Asia\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastasia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US\",\"name\":\"West US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US\",\"description\":null,\"sortOrder\":5,\"displayName\":\"West US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan West\",\"name\":\"Japan West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan West\",\"description\":null,\"sortOrder\":7,\"displayName\":\"Japan West\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;XENONV3;XENONMV3;ZONEREDUNDANCY;FLEXCONSUMPTION\",\"subDomains\":\"japanwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Japan East\",\"name\":\"Japan East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Japan East\",\"description\":null,\"sortOrder\":8,\"displayName\":\"Japan East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"japaneast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2\",\"name\":\"East US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2\",\"description\":null,\"sortOrder\":9,\"displayName\":\"East US 2\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US\",\"name\":\"North Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US\",\"description\":null,\"sortOrder\":10,\"displayName\":\"North Central US\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"northcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Central US\",\"name\":\"South Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Central US\",\"description\":\"South Central US\",\"sortOrder\":11,\"displayName\":\"South Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP\",\"subDomains\":\"southcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil South\",\"name\":\"Brazil South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil South\",\"description\":null,\"sortOrder\":12,\"displayName\":\"Brazil South\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"brazilsouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia East\",\"name\":\"Australia East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia East\",\"description\":null,\"sortOrder\":13,\"displayName\":\"Australia East\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"australiaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Southeast\",\"name\":\"Australia Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Southeast\",\"description\":null,\"sortOrder\":14,\"displayName\":\"Australia Southeast\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;LINUXP0V3;WINDOWSP0V3;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"australiasoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US\",\"name\":\"Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US\",\"description\":null,\"sortOrder\":15,\"displayName\":\"Central US\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"centralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US\",\"name\":\"East US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US\",\"orgDomain\":\"FCZONEREDUNDANCY;ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"eastus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East Asia (Stage)\",\"name\":\"East Asia (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East Asia (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East Asia (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/North Central US (Stage)\",\"name\":\"North Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"North Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"North Central US (Stage)\",\"orgDomain\":\"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;MANAGEDAPP;FLEXCONSUMPTION;ZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":null}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central India\",\"name\":\"Central India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central India\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;MAVICSERIES\",\"subDomains\":\"centralindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West India\",\"name\":\"West India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;LINUXFREE\",\"subDomains\":\"westindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South India\",\"name\":\"South India\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South India\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South India\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"southindia-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US (Stage)\",\"name\":\"Central US (Stage)\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US (Stage)\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US (Stage)\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;MSFTINT;\",\"subDomains\":\"msftintdm3-1.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Canada East\",\"name\":\"Canada East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Canada East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Canada East\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;WINDOWSV3;LINUXV3;XENONV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION\",\"subDomains\":\"canadaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West Central US\",\"name\":\"West Central US\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West Central US\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West Central US\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES\",\"subDomains\":\"westcentralus-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 2\",\"name\":\"West US 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 2\",\"orgDomain\":\"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;ZONEREDUNDANCY;FLEXCONSUMPTION;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FCZONEREDUNDANCY\",\"subDomains\":\"westus2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK West\",\"name\":\"UK West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK West\",\"orgDomain\":\"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;LINUXFREE;MANAGEDAPP;XENONMV3;FLEXCONSUMPTION\",\"subDomains\":\"ukwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UK South\",\"name\":\"UK South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UK South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UK South\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;PV4SERIES;MV4SERIES\",\"subDomains\":\"uksouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/East US 2 EUAP\",\"name\":\"East US 2 EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"East US 2 EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"East US 2 EUAP\",\"orgDomain\":\"EUAP;XENON;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;XENONMV3;LINUXDYNAMIC;DSERIES;ZONEREDUNDANCY;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;MAVICSERIES;FCZONEREDUNDANCY\",\"subDomains\":\"eastus2euap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Central US EUAP\",\"name\":\"Central US EUAP\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Central US EUAP\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Central US EUAP\",\"orgDomain\":\"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;DYNAMIC;WINDOWSV3;WINDOWSP0V3;MANAGEDAPP;ELASTICLINUX\",\"subDomains\":\"centraluseuap-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea South\",\"name\":\"Korea South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXP0V3;LINUXFREE;WINDOWSP0V3;LINUXDYNAMIC\",\"subDomains\":\"koreasouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Korea Central\",\"name\":\"Korea Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Korea Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Korea Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES;XENONMV3\",\"subDomains\":\"koreacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France South\",\"name\":\"France South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France South\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;MSFTPUBLIC;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENONV3;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXV3;LINUXMV3;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"francesouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/France Central\",\"name\":\"France Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"France Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"France Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;WINDOWSMV3;LINUXMV3;LINUXP0V3;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"francecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central 2\",\"name\":\"Australia Central 2\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central 2\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central 2\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;ELASTICLINUX;LINUXP0V3;LINUXFREE\",\"subDomains\":\"australiacentral2-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Australia Central\",\"name\":\"Australia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Australia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Australia Central\",\"orgDomain\":\"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSV3;LINUXV3;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSP0V3\",\"subDomains\":\"australiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa North\",\"name\":\"South Africa North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"southafricanorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/South Africa West\",\"name\":\"South Africa West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"South Africa West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"South Africa West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;WINDOWSP0V3;LINUXDYNAMIC;WINDOWSV3;LINUXV3;LINUXP0V3\",\"subDomains\":\"southafricawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland North\",\"name\":\"Switzerland North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSP0V3;LINUXP0V3;WINDOWSMV3;LINUXMV3;XENONMV3;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany West Central\",\"name\":\"Germany West Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany West Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany West Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;LINUXMV3;MANAGEDAPP;XENONMV3;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"germanywestcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Germany North\",\"name\":\"Germany North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Germany North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Germany North\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;LINUXDYNAMIC;WINDOWSV3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE\",\"subDomains\":\"germanynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Switzerland West\",\"name\":\"Switzerland West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Switzerland West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Switzerland West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX;MSFTPUBLIC;WINDOWSP0V3;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;MANAGEDAPP;LINUXP0V3;FLEXCONSUMPTION\",\"subDomains\":\"switzerlandwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE Central\",\"name\":\"UAE Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;MSFTPUBLIC;ELASTICPREMIUM;ELASTICLINUX;DYNAMIC;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3\",\"subDomains\":\"uaecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/UAE North\",\"name\":\"UAE North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"UAE North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"UAE North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;MANAGEDAPP;FCZONEREDUNDANCY;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"uaenorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway West\",\"name\":\"Norway West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway West\",\"orgDomain\":\"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES;FUNCTIONS;DYNAMIC;LINUXMV3;LINUXDYNAMIC;WINDOWSV3;WINDOWSP0V3;LINUXFREE;ELASTICLINUX;XENONMV3;WINDOWSMV3;ELASTICPREMIUM\",\"subDomains\":\"norwaywest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Norway East\",\"name\":\"Norway East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Norway East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Norway East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXMV3;WINDOWSMV3;LINUXFREE;XENONMV3;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"norwayeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Brazil Southeast\",\"name\":\"Brazil Southeast\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Brazil Southeast\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Brazil Southeast\",\"orgDomain\":\"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXV3;LINUXP0V3\",\"subDomains\":\"brazilsoutheast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/West US 3\",\"name\":\"West US 3\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"West US 3\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"West US 3\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXMV3;LINUXP0V3;WINDOWSMV3;WINDOWSP0V3;LINUXFREE;XENONMV3;FLEXCONSUMPTION;MANAGEDAPP;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES\",\"subDomains\":\"westus3-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India West\",\"name\":\"Jio India West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India West\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;MSFTPUBLIC;LINUXFREE;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Jio India Central\",\"name\":\"Jio India Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Jio India Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Jio India Central\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;MSFTPUBLIC;DYNAMIC;FUNCTIONS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;WINDOWSV3;LINUXV3;WINDOWSP0V3;LINUXP0V3;XENONV3\",\"subDomains\":\"jioindiacentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden Central\",\"name\":\"Sweden Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden Central\",\"orgDomain\":\"ZONEREDUNDANCY;FCZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;MANAGEDAPP;XENONMV3;PV4SERIES;MV4SERIES\",\"subDomains\":\"swedencentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Qatar Central\",\"name\":\"Qatar Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Qatar Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Qatar Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSP0V3;LINUXP0V3;LINUXFREE;DSERIES\",\"subDomains\":\"qatarcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Sweden South\",\"name\":\"Sweden South\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Sweden South\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Sweden South\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXDYNAMIC;LINUXFREE\",\"subDomains\":\"swedensouth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Poland Central\",\"name\":\"Poland Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Poland Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Poland Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;PV4SERIES;MV4SERIES;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"polandcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Italy North\",\"name\":\"Italy North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Italy North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Italy North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;WINDOWSMV3;LINUXMV3;LINUXDYNAMIC;XENONMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;MANAGEDAPP;FLEXCONSUMPTION;FCZONEREDUNDANCY;PV4SERIES;MV4SERIES;DREAMSPARK\",\"subDomains\":\"italynorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Central\",\"name\":\"Israel Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;FCZONEREDUNDANCY\",\"subDomains\":\"israelcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Spain Central\",\"name\":\"Spain Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Spain Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Spain Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"spaincentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Mexico Central\",\"name\":\"Mexico Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Mexico Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Mexico Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION;PV4SERIES;MV4SERIES\",\"subDomains\":\"mexicocentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan North\",\"name\":\"Taiwan North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"taiwannorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Taiwan Northwest\",\"name\":\"Taiwan Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Taiwan Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Taiwan Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/New Zealand North\",\"name\":\"New Zealand North\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"New Zealand North\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"New Zealand North\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"newzealandnorth-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Indonesia Central\",\"name\":\"Indonesia Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Indonesia Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Indonesia Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;PV4SERIES;MV4SERIES;FLEXCONSUMPTION\",\"subDomains\":\"\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Malaysia West\",\"name\":\"Malaysia West\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Malaysia West\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Malaysia West\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;FLEXCONSUMPTION\",\"subDomains\":\"malaysiawest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Chile Central\",\"name\":\"Chile Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Chile Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Chile Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"chilecentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Austria East\",\"name\":\"Austria East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Austria East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Austria East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"austriaeast-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Belgium Central\",\"name\":\"Belgium Central\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Belgium Central\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Belgium Central\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"belgiumcentral-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Israel Northwest\",\"name\":\"Israel Northwest\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Israel Northwest\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Israel Northwest\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE;XENONMV3\",\"subDomains\":\"israelnorthwest-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Southeast US 5\",\"name\":\"Southeast US 5\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Southeast US 5\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Southeast US 5\",\"orgDomain\":\"PUBLIC;DSERIES;LINUX;LINUXFREE;ELASTICPREMIUM\",\"subDomains\":\"southeastus5-01.azurewebsites.net\"}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions/Denmark East\",\"name\":\"Denmark East\",\"type\":\"Microsoft.Web/geoRegions\",\"properties\":{\"name\":\"Denmark East\",\"description\":null,\"sortOrder\":2147483647,\"displayName\":\"Denmark East\",\"orgDomain\":\"ZONEREDUNDANCY;PUBLIC;DSERIES;LINUX;LINUXDSERIES;XENON;XENONV3;WINDOWSV3;LINUXV3;ELASTICPREMIUM;ELASTICLINUX;FUNCTIONS;DYNAMIC;MSFTPUBLIC;LINUXDYNAMIC;XENONMV3;WINDOWSMV3;LINUXMV3;WINDOWSP0V3;LINUXP0V3;LINUXFREE\",\"subDomains\":\"denmarkeast-01.azurewebsites.net\"}}],\"nextLink\":null,\"id\":null}", "isContentBase64": false } }, @@ -9938,12 +10433,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "388" ], - "x-ms-client-request-id": [ "8bc3fdf3-6274-4369-907f-554d9abd6f9d" ], + "x-ms-unique-id": [ "755" ], + "x-ms-client-request-id": [ "950dd3f9-dec1-4b98-ab9f-5ccf6f0a5c3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9954,40 +10449,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "67dab7b9-5f0e-46d3-9e00-0e12ba89b1e9", "b4ce4a61-fe80-45ab-b71c-088ab32eb86f", "502e33b7-ee1c-452d-ac61-a2f6207dfe35" ], + "x-ms-original-request-ids": [ "377af0ac-81d4-441a-8f16-d5182c2f545c", "657ce026-fd3d-4e33-9d5e-fd2f343cd78a", "54e0e12b-d86c-4979-85d9-7cac0d30db33" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0a09019c-41e8-486d-a3af-1ca838edb84a" ], - "x-ms-correlation-request-id": [ "0a09019c-41e8-486d-a3af-1ca838edb84a" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002735Z:0a09019c-41e8-486d-a3af-1ca838edb84a" ], + "x-ms-request-id": [ "78f5eddf-ff55-4c82-81e2-486d8972cead" ], + "x-ms-correlation-request-id": [ "78f5eddf-ff55-4c82-81e2-486d8972cead" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T021401Z:78f5eddf-ff55-4c82-81e2-486d8972cead" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EA5AE4FA7EA460D8DAB84F96EE4817F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 307D0510C403462CA245A84E7FEE9640 Ref B: MWH011020809062 Ref C: 2026-03-28T02:14:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "389" ], - "x-ms-client-request-id": [ "bbf67406-f442-4abd-a293-111d98e0ad3d" ], + "x-ms-unique-id": [ "756" ], + "x-ms-client-request-id": [ "94d2fc67-9713-4c87-8e1f-58a5eda79be0" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -9998,16 +10493,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "a82bb1a2-187c-40e9-bf65-6dbc7781e7fc" ], + "x-ms-request-id": [ "24885c44-47cf-476f-9118-266e3d78dde0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/112c2c91-f0e1-4a41-a46a-c816da9be069" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5a9c69b5-337e-4e12-8c30-59cd8c5a9b7d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c9d9a71f-b56a-417e-b8ad-a5ce08aa62d5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002735Z:c9d9a71f-b56a-417e-b8ad-a5ce08aa62d5" ], + "x-ms-correlation-request-id": [ "c4640504-ce58-4002-83eb-0eb83be9b22e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021402Z:c4640504-ce58-4002-83eb-0eb83be9b22e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3542C509339B4A5F864452AF8C0ADC73 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9449969F40D49238D2DF26F2C337EAC Ref B: MWH011020809062 Ref C: 2026-03-28T02:14:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -10018,10 +10513,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Node-ulmzgn9t6x?api-version=2015-05-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Insights/components/Functions-Node-0kzsvafpx4?api-version=2015-05-01+5": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Insights/components/Functions-Node-ulmzgn9t6x?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Insights/components/Functions-Node-0kzsvafpx4?api-version=2015-05-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -10041,30 +10536,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a78f54d8-29f9-4319-85ae-a48ff4aac8f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c17d1e3f-9914-400a-bd8a-b70f63b07534" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "7aa0cd4b-3288-4f6c-b7bf-0e41a287f507" ], - "x-ms-correlation-request-id": [ "7aa0cd4b-3288-4f6c-b7bf-0e41a287f507" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002740Z:7aa0cd4b-3288-4f6c-b7bf-0e41a287f507" ], + "x-ms-request-id": [ "99b71803-b812-4087-824f-6cfbe3d794fe" ], + "x-ms-correlation-request-id": [ "99b71803-b812-4087-824f-6cfbe3d794fe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021407Z:99b71803-b812-4087-824f-6cfbe3d794fe" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC15383EA7D74C088CFDD851B4590E9F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:27:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFBC7F202B434A25AB5B398D78A4A58A Ref B: MWH011020809062 Ref C: 2026-03-28T02:14:02Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1625" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202879c-0000-0300-0000-69c47d7c0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Node-ulmzgn9t6x\",\r\n \"name\": \"Functions-Node-ulmzgn9t6x\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-ulmzgn9t6x\",\r\n \"AppId\": \"bd1bdd37-258b-403c-a3bc-b5c76b3ef239\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"c8eaf0a1-f9dd-4e62-b1ce-11225f20dd09\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-ulmzgn9t6x\",\r\n \"CreationDate\": \"2026-03-26T00:27:36.505767+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-ulmzgn9t6x_bd1bdd37-258b-403c-a3bc-b5c76b3ef239_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-ulmzgn9t6x-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6d031fed-0000-0300-0000-69c7396f0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-Node-0kzsvafpx4\",\r\n \"name\": \"Functions-Node-0kzsvafpx4\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-Node-0kzsvafpx4\",\r\n \"AppId\": \"28413c28-af00-4d82-9c70-e7bc53457461\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"4064e3ff-e612-4fe3-9042-b888a8a9ad3b\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-Node-0kzsvafpx4\",\r\n \"CreationDate\": \"2026-03-28T02:14:02.800256+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-0kzsvafpx4_28413c28-af00-4d82-9c70-e7bc53457461_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-0kzsvafpx4-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Node|22\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"node\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-ulmzgn9t6x\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp,linux\",\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"reserved\": true,\r\n \"siteConfig\": {\r\n \"linuxFxVersion\": \"Node|22\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"node\"\r\n },\r\n {\r\n \"name\": \"WEBSITES_ENABLE_APP_SERVICE_STORAGE\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-node-0kzsvafpx4\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -10078,43 +10573,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB75C1DCECB\"" ], + "ETag": [ "\"1DCBE5890379475\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c30dddd1-207d-4d68-9abc-5ca840a0b3bd" ], + "x-ms-request-id": [ "344fcf21-87c7-4093-b89d-826135f956d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3c2599b-719f-40f3-96e2-3f00fa86f071" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/811a4acc-d448-44be-922f-178b92f9e056" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "6c0674c1-0977-47ca-a693-669ce8cbf96f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002804Z:6c0674c1-0977-47ca-a693-669ce8cbf96f" ], + "x-ms-correlation-request-id": [ "6748407b-163f-471d-bacc-7e290acfa04d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021429Z:6748407b-163f-471d-bacc-7e290acfa04d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A580DE34AA94229913450FDA11C56AA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:27:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B7A610D00FBC47C5AC84DC31C0008821 Ref B: MWH011020809062 Ref C: 2026-03-28T02:14:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8336" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:27:41.93\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"central us\",\"properties\":{\"name\":\"Functions-Node-0kzsvafpx4\",\"state\":\"Running\",\"hostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Node-0kzsvafpx4\",\"repositorySiteName\":\"Functions-Node-0kzsvafpx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\",\"functions-node-0kzsvafpx4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-0kzsvafpx4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:14:09.42\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-0kzsvafpx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-0kzsvafpx4\\\\$Functions-Node-0kzsvafpx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "392" ], - "x-ms-client-request-id": [ "ed8d602d-52e4-4889-b718-f0fc8811760f" ], + "x-ms-unique-id": [ "759" ], + "x-ms-client-request-id": [ "8595d6be-0931-4040-b609-7d86b80a82aa" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -10124,42 +10619,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB768D81160" ], + "ETag": [ "1DCBE589B829CA0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48024925-a70e-47f4-aad5-a91259eb82e9" ], + "x-ms-request-id": [ "2f632233-2c2c-43cf-bc7e-c8d985036afc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "160b4336-72e2-45f3-a793-169863828497" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002834Z:160b4336-72e2-45f3-a793-169863828497" ], + "x-ms-correlation-request-id": [ "59f33d25-22f5-4e6b-b5ab-149de257f77d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021459Z:59f33d25-22f5-4e6b-b5ab-149de257f77d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 699444BB02384F34A8083EF40C81CCEE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 206037348D234315A3B9ED02B9FCC031 Ref B: MWH011020809062 Ref C: 2026-03-28T02:14:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8187" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-0kzsvafpx4\",\"state\":\"Running\",\"hostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Node-0kzsvafpx4\",\"repositorySiteName\":\"Functions-Node-0kzsvafpx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\",\"functions-node-0kzsvafpx4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-0kzsvafpx4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:14:28.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-0kzsvafpx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-0kzsvafpx4\\\\$Functions-Node-0kzsvafpx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "393" ], - "x-ms-client-request-id": [ "79b417ef-a926-439c-8073-1fcaf9188e2c" ], + "x-ms-unique-id": [ "760" ], + "x-ms-client-request-id": [ "ce86f26e-4ba8-4688-9d3c-305a297e1aef" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10170,42 +10665,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB768D81160" ], + "ETag": [ "1DCBE589B829CA0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d71f326d-d808-45a6-a524-abea576bf320" ], + "x-ms-request-id": [ "5666cf7f-223b-4b0d-882f-825153e950f5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8100c5ba-56c2-4405-895e-90e1cfea3530" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002835Z:8100c5ba-56c2-4405-895e-90e1cfea3530" ], + "x-ms-correlation-request-id": [ "1a184349-6399-411d-9e1c-c41052c88a76" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021500Z:1a184349-6399-411d-9e1c-c41052c88a76" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF849DCD09FB46E9892E0B187920925B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C5B3F13F14D4C1BBA000984BE4F36A3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:14:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8187" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-0kzsvafpx4\",\"state\":\"Running\",\"hostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Node-0kzsvafpx4\",\"repositorySiteName\":\"Functions-Node-0kzsvafpx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\",\"functions-node-0kzsvafpx4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-0kzsvafpx4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:14:28.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-0kzsvafpx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-0kzsvafpx4\\\\$Functions-Node-0kzsvafpx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "394" ], - "x-ms-client-request-id": [ "03920cee-617a-46f1-b0e2-66ca6312d067" ], + "x-ms-unique-id": [ "761" ], + "x-ms-client-request-id": [ "0c04662c-9a31-4dd7-ae29-4c88c07cc37d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10217,40 +10712,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c35daf97-8d73-41f1-bbae-ef71ed2cc8ea" ], + "x-ms-request-id": [ "f9fbd621-7351-4302-b352-3fc4b63d84a9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2c3493e-779e-404f-9c41-aea0a0c4883a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df26d208-a5d9-46f1-88cd-fc33281ff400" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8e13f745-587d-4357-aa10-593271dc5958" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002835Z:8e13f745-587d-4357-aa10-593271dc5958" ], + "x-ms-correlation-request-id": [ "416d82d6-6e70-412e-9175-511d8814f2df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021500Z:416d82d6-6e70-412e-9175-511d8814f2df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA5822C4491B4A2F860CDFBF26C0DA40 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E33FD1CC7D746F1A5453671BE5BE82C Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-0kzsvafpx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "395" ], - "x-ms-client-request-id": [ "1bd8e56f-e116-450f-b4cb-3f1cc9f44916" ], + "x-ms-unique-id": [ "762" ], + "x-ms-client-request-id": [ "7cf14e3f-32f0-4bca-bd29-8ce953a34ec3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10262,41 +10757,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f862fad5-a70d-4cd8-b40f-28c58964bb5d" ], + "x-ms-request-id": [ "fe106bd5-0cb0-40d3-bf01-4c2d1b152c56" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16691b2e-9d0f-4c3b-b907-40a741e21a0e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0318089e-bfdf-41cf-9220-6f4e285f079d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0c46e115-772b-4a86-b7d0-5d9f390458f4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002835Z:0c46e115-772b-4a86-b7d0-5d9f390458f4" ], + "x-ms-correlation-request-id": [ "aa227774-9955-4845-b0b7-57cd1d60cc86" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021504Z:aa227774-9955-4845-b0b7-57cd1d60cc86" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D89A2A411231425688F625686B5F82A3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 213BE8E5CD7A484E978A1C4DE2C5ED21 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "396" ], - "x-ms-client-request-id": [ "ba894d6d-b261-471f-b763-2ba8d932c82a" ], + "x-ms-unique-id": [ "763" ], + "x-ms-client-request-id": [ "7649d532-224b-48ec-b7ce-c50a6cc61b4b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10308,40 +10803,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5604b7ca-0aa8-4eb2-ab24-12127499f6bc" ], + "x-ms-request-id": [ "ff9a081a-c714-4cf0-9003-aed741b42176" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/038168b3-eabe-4ff6-a993-9b269b5e91ba" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4e0658a8-0d29-42f8-9218-ed959f835ab1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7fd7a21b-fec4-49d5-9317-52f39cd532d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002836Z:7fd7a21b-fec4-49d5-9317-52f39cd532d1" ], + "x-ms-correlation-request-id": [ "83b6b239-02f7-4482-b821-ad728447a0d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021509Z:83b6b239-02f7-4482-b821-ad728447a0d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FB3BABE5A5144B2BE24D866202783E4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0528F40B1C66407CB1D5F77857D46DD8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:04Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-0kzsvafpx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "397" ], - "x-ms-client-request-id": [ "36c109ce-09ea-42b7-b0a9-aa6aa3f16c62" ], + "x-ms-unique-id": [ "764" ], + "x-ms-client-request-id": [ "89326c24-3ba4-4448-9306-2605375a9057" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10352,42 +10847,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB768D81160" ], + "ETag": [ "1DCBE589B829CA0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6d948416-1369-405a-a813-348ed80ecee9" ], + "x-ms-request-id": [ "fe84f4f6-1fa6-4545-936c-ff719a091c1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "80c5e3b1-fd19-4836-a38b-a897f750e834" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002836Z:80c5e3b1-fd19-4836-a38b-a897f750e834" ], + "x-ms-correlation-request-id": [ "8d7dfda7-ac79-4d28-b031-fffd04ee1501" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021513Z:8d7dfda7-ac79-4d28-b031-fffd04ee1501" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3078F9610474436EBA81BCB0AFF9924C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4A9E67A5181B4D6F8F67082D2C3A2ABB Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8187" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-0kzsvafpx4\",\"state\":\"Running\",\"hostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Node-0kzsvafpx4\",\"repositorySiteName\":\"Functions-Node-0kzsvafpx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\",\"functions-node-0kzsvafpx4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-0kzsvafpx4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:14:28.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-0kzsvafpx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-0kzsvafpx4\\\\$Functions-Node-0kzsvafpx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "398" ], - "x-ms-client-request-id": [ "fe9d7347-a0cc-40e1-8b55-52f132a6ea8f" ], + "x-ms-unique-id": [ "765" ], + "x-ms-client-request-id": [ "0b16b754-77d2-4fb3-8b1f-15d0f9504abe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10399,40 +10894,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41d9223a-026f-4076-b9ac-07328a134aa2" ], + "x-ms-request-id": [ "efb7df69-7743-4de2-af1b-7c26166b4a60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0af06aaa-875a-479e-a266-32a97e9d003b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a2ceba0-12f2-40cb-b457-30010672fb75" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2095b6d4-ba73-4560-843e-98dfcde9a2f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002836Z:2095b6d4-ba73-4560-843e-98dfcde9a2f2" ], + "x-ms-correlation-request-id": [ "82de06f5-50ba-41c2-b335-f1e8b6727644" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021515Z:82de06f5-50ba-41c2-b335-f1e8b6727644" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6A717AA4E4634AF2B3EABBC92F82F4DC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EB1B825857254DD3BC4FA8DF93277630 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-0kzsvafpx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "399" ], - "x-ms-client-request-id": [ "b8fd2901-8c05-4aff-864f-cf9a994924ed" ], + "x-ms-unique-id": [ "766" ], + "x-ms-client-request-id": [ "e570de88-b48d-4ee5-a355-2b66be3e97a9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10444,41 +10939,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8312523-dcac-49d6-af35-e3658f55df0d" ], + "x-ms-request-id": [ "930d5ebb-35df-4017-bcf5-98fbaa429ca2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/47b736e7-51be-4813-a760-4b655d4ecd02" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ddd394e9-b822-4977-b35d-3e38daa7fa71" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "534979a4-46f0-42fc-aa11-804bc6bfb573" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002837Z:534979a4-46f0-42fc-aa11-804bc6bfb573" ], + "x-ms-correlation-request-id": [ "0893b16f-839c-4038-aaba-4c0a24165eb5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021516Z:0893b16f-839c-4038-aaba-4c0a24165eb5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B449D5BA68DE4FEA8991D4A0C551FB07 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDFADB0D58E54E5FA240BE3187A718C0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:15Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:15 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "400" ], - "x-ms-client-request-id": [ "6d6f3967-e795-4130-b692-8880b676636f" ], + "x-ms-unique-id": [ "767" ], + "x-ms-client-request-id": [ "963db566-4e22-49bb-8a9c-eb0c966bf17f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10489,42 +10984,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB768D81160" ], + "ETag": [ "1DCBE589B829CA0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b75742e2-7237-4567-80d5-4f028e109f7f" ], + "x-ms-request-id": [ "982894f1-383d-4093-a6e8-1921e6e75789" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aaac38f1-cf48-4a31-a988-a5ebc15e6e1b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002837Z:aaac38f1-cf48-4a31-a988-a5ebc15e6e1b" ], + "x-ms-correlation-request-id": [ "2d429ef0-3a04-465c-aef9-6ff791e9598f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021519Z:2d429ef0-3a04-465c-aef9-6ff791e9598f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D21AF8F4BB2247778B17ABE627E2E843 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C60EEED144741D18E54DE32AC3300F4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8187" ], + "Content-Length": [ "8141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-ulmzgn9t6x\",\"state\":\"Running\",\"hostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Node-ulmzgn9t6x\",\"repositorySiteName\":\"Functions-Node-ulmzgn9t6x\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-ulmzgn9t6x.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:03.83\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-ulmzgn9t6x\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Node-ulmzgn9t6x\\\\$Functions-Node-ulmzgn9t6x\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-node-ulmzgn9t6x.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-0kzsvafpx4\",\"state\":\"Running\",\"hostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Node-0kzsvafpx4\",\"repositorySiteName\":\"Functions-Node-0kzsvafpx4\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-0kzsvafpx4.azurewebsites.net\",\"functions-node-0kzsvafpx4.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-0kzsvafpx4.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:14:28.97\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-0kzsvafpx4\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Node-0kzsvafpx4\\\\$Functions-Node-0kzsvafpx4\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-node-0kzsvafpx4.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "401" ], - "x-ms-client-request-id": [ "0f2a654e-2942-4d9e-87f1-f5e4ee323c6c" ], + "x-ms-unique-id": [ "768" ], + "x-ms-client-request-id": [ "ff1a4537-f752-4e93-b434-fd90e6341147" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10536,40 +11031,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "996963ee-6bf9-4f66-8296-f22e527e2550" ], + "x-ms-request-id": [ "c450f8d6-28ab-4679-a433-5fdced528d89" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f6992786-a82d-4de2-8e7d-431e2e3e7421" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8ec5b587-8d14-4f64-ae30-5c8c6bb37513" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d7393454-b72e-4f6c-b9d2-948da4286937" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002837Z:d7393454-b72e-4f6c-b9d2-948da4286937" ], + "x-ms-correlation-request-id": [ "654eec18-9526-494c-b6fb-c18701e0e097" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021523Z:654eec18-9526-494c-b6fb-c18701e0e097" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6AB119EB86245068AC06F94B02AE87C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A35121BE2E3940868912046426D0B4D7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1207" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-ulmzgn9t6x\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-0kzsvafpx4\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "402" ], - "x-ms-client-request-id": [ "876c2faf-e804-4c77-93f5-ca34b73cf384" ], + "x-ms-unique-id": [ "769" ], + "x-ms-client-request-id": [ "9595a7ae-eb6d-4bc3-bda9-22637000df5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10581,41 +11076,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8638a46-75d5-424f-804d-93196277fdc8" ], + "x-ms-request-id": [ "5b7d53d4-67fc-4490-9efd-ed709fe13843" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1327b70a-346f-4067-8d19-d4f2e567b4e5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/31ed57e6-f696-444f-871e-0f3a2400d548" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "539db2cd-5875-4cc6-98db-2ca6972f5c3a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002838Z:539db2cd-5875-4cc6-98db-2ca6972f5c3a" ], + "x-ms-correlation-request-id": [ "0821cd2b-c376-47f4-9d6e-0bb4437d37bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021523Z:0821cd2b-c376-47f4-9d6e-0bb4437d37bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 793FB8DFF88E473AB9E66E5008345EB1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3ADD1D7310E84F93A6FF3B85BB0D21B5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4180" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x/config/web\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4/config/web\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "403" ], - "x-ms-client-request-id": [ "c41da042-4419-4d80-bef9-58a8edf52fb7" ], + "x-ms-unique-id": [ "770" ], + "x-ms-client-request-id": [ "60e607ef-fce0-43fd-92e7-acb83738be7f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10627,40 +11122,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "55978cc8-fcc9-4da9-bba9-702da68ddea2" ], + "x-ms-request-id": [ "d78b4f41-9861-4fc8-8225-bae1877a83cc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "8bc23b0a-d2b1-4630-bc78-345bc671a52e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002838Z:8bc23b0a-d2b1-4630-bc78-345bc671a52e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e5945e0e-c8f5-42f2-b68a-fa5c86d2656d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021524Z:e5945e0e-c8f5-42f2-b68a-fa5c86d2656d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF911D2B89C94C59A03EB0FEF51F313D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2DE17D8628794EACBB10DCF4C5D0E5AE Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Linux Node 22 Function App hosted in a Consumption plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+19": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Node-ulmzgn9t6x?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Node-0kzsvafpx4?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "404" ], - "x-ms-client-request-id": [ "65530b7c-6ab1-4bf0-9475-1fcdf16f321c" ], + "x-ms-unique-id": [ "771" ], + "x-ms-client-request-id": [ "f1282221-8cc7-4807-98a2-0c26f84da45f" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10671,20 +11166,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB768D81160\"" ], + "ETag": [ "\"1DCBE589B829CA0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8194fe7c-0254-4a73-ada5-e7fbb431b772" ], + "x-ms-request-id": [ "77258e0f-da24-4f70-b9e8-d7439f79c806" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/84e5439e-47a3-4774-a1c9-e0f7709f29c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/32776979-e87b-4c02-8477-c291688ce3fe" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "ff8601aa-32f9-4ee2-96e9-dccbe84c2a9b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002846Z:ff8601aa-32f9-4ee2-96e9-dccbe84c2a9b" ], + "x-ms-correlation-request-id": [ "d7234e81-1d33-471d-98d3-70963ce194da" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021531Z:d7234e81-1d33-471d-98d3-70963ce194da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A0D2A5454BD40F2934D08BB3EC3E31E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 287D44A5AA134E2CA2C39069E894546F Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:24Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -10698,7 +11193,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-DotNet-Isolatedtwxrs35fho\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -10713,18 +11208,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af8e2f98-df3c-47b3-b5aa-64ab0e3623cb" ], + "x-ms-request-id": [ "1c550a67-e771-4501-83bd-5f37bd34395e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/50a8898a-b7f5-460c-b1d1-979802320fdb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/90d03a18-5a57-43ea-a9d2-31fc16d71502" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d8e7fcc0-5669-465a-ad63-675445d1db93" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002846Z:d8e7fcc0-5669-465a-ad63-675445d1db93" ], + "x-ms-correlation-request-id": [ "8274b5ce-07b2-41e9-999a-e61729e63d26" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021531Z:8274b5ce-07b2-41e9-999a-e61729e63d26" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17E8BBEF32BF44E68AAA3705434621A4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C31D9992B29D483D8442F2EF62B13808 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -10742,12 +11237,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "406" ], - "x-ms-client-request-id": [ "85197891-dd66-4a52-9782-db585ad1e551" ], + "x-ms-unique-id": [ "773" ], + "x-ms-client-request-id": [ "47694068-45e0-4e40-a840-552be2deca2b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10758,40 +11253,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ad27ee26-3381-4d97-907c-9d4e7a0b55ca", "6163a6c2-a651-464e-95ef-db342994c8e1" ], + "x-ms-original-request-ids": [ "4ebead89-3771-4c0a-9a3e-7a294dba0c7b", "0bb0b8bf-ac35-49d3-abf5-df0f07dfc856" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "02592833-67be-4906-97a0-abc9dc117bc0" ], - "x-ms-correlation-request-id": [ "02592833-67be-4906-97a0-abc9dc117bc0" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T002847Z:02592833-67be-4906-97a0-abc9dc117bc0" ], + "x-ms-request-id": [ "d66bf545-5abc-401c-93f2-b622a8b982c0" ], + "x-ms-correlation-request-id": [ "d66bf545-5abc-401c-93f2-b622a8b982c0" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T021533Z:d66bf545-5abc-401c-93f2-b622a8b982c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 176D01EF48314742B68530332A46406F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 125CC6C528ED464FB4B65B6A07311590 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "12120" ], + "Content-Length": [ "15444" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "407" ], - "x-ms-client-request-id": [ "3b0b563c-f982-4a8b-ae3f-e72c56039acf" ], + "x-ms-unique-id": [ "774" ], + "x-ms-client-request-id": [ "6446205d-0f1c-4430-a918-489b73238b07" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10803,40 +11298,130 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2379633e-d21f-4333-8f22-73439df1110f" ], + "x-ms-request-id": [ "8a62ac99-e942-4d6c-947d-5e67cf387f82" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f8cb6a1b-d6a1-4d72-8fd8-3d1a20bf3edb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002848Z:f8cb6a1b-d6a1-4d72-8fd8-3d1a20bf3edb" ], + "x-ms-correlation-request-id": [ "e7b07ce0-bd5f-4dc9-89a6-90d951fba482" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021533Z:e7b07ce0-bd5f-4dc9-89a6-90d951fba482" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 81B5845721DE49AAA67B672C78C74A82 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0052679AD30F4460BF2665FA52E2341D Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "775" ], + "x-ms-client-request-id": [ "ae573ca1-4df7-429c-8ab7-d572ea1ad5b8" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "dfc30c8f-f3cb-4bef-81b6-bde6a4e4d802" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "06419707-b15c-447a-a6ef-3f089787659f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021533Z:06419707-b15c-447a-a6ef-3f089787659f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E9EE5E2F23874C85AE98099E554799DD Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1784" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "776" ], + "x-ms-client-request-id": [ "ba5fa4ab-6bba-4d57-a1af-8fabb80f6773" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "39432ed0-3f47-4214-8b7d-1f5ea8e79426" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "93f97111-a8ab-4271-bacf-5f498f72a813" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021534Z:93f97111-a8ab-4271-bacf-5f498f72a813" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 50F4FEF2E9C04269B647B63B41FA6152 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "408" ], - "x-ms-client-request-id": [ "cd443a22-15d2-4bbd-836a-2499ccc89649" ], + "x-ms-unique-id": [ "777" ], + "x-ms-client-request-id": [ "41f184a5-13a5-4747-a7d5-c46453603552" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10848,40 +11433,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6d6ade8-d9c2-476d-a6d0-435337db7acb" ], + "x-ms-request-id": [ "a57955d1-88cb-4755-b2b4-302a72c79881" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "333551d2-f6fe-400e-9d41-9e1883d94483" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002848Z:333551d2-f6fe-400e-9d41-9e1883d94483" ], + "x-ms-correlation-request-id": [ "c4d0c95f-6ef2-4590-8fa7-6bf956891d15" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021534Z:c4d0c95f-6ef2-4590-8fa7-6bf956891d15" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CF16967833964371B5E4B22A42AD18A9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0ED3C78EA7E545D6A65907DD84358560 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "409" ], - "x-ms-client-request-id": [ "b6621f37-e137-4b60-a382-166795101e60" ], + "x-ms-unique-id": [ "778" ], + "x-ms-client-request-id": [ "63988e7f-3f47-47aa-b31a-642ce6477acc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10893,40 +11478,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f5d96467-1ed0-4819-9b1f-1a0d4754522c" ], + "x-ms-request-id": [ "19d8fd08-e175-46fc-bee7-a018b3cbaa87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bccf69e3-00a6-4a1a-bd63-f216b36eb410" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:bccf69e3-00a6-4a1a-bd63-f216b36eb410" ], + "x-ms-correlation-request-id": [ "950aec42-eeb2-4eb2-abcf-2ad5a01649d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021534Z:950aec42-eeb2-4eb2-abcf-2ad5a01649d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 98B64589FF8241F3BDF822D619F34B8A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA10A2C8106B4CD9A4D36EF995940BD5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1742" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "410" ], - "x-ms-client-request-id": [ "5620e28d-49ed-4bdc-9ea6-f21ceae37eac" ], + "x-ms-unique-id": [ "779" ], + "x-ms-client-request-id": [ "ac93fde2-f612-45c2-aff7-9bc80d94bb26" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10938,40 +11523,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d610abf-9083-408a-8cfb-d5233df2bc04" ], + "x-ms-request-id": [ "4336082b-31e2-458b-878d-9164f6223018" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc4cea57-08a0-46d3-bfd1-22ea35a8e197" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:dc4cea57-08a0-46d3-bfd1-22ea35a8e197" ], + "x-ms-correlation-request-id": [ "64ba4040-1115-4403-8e76-8c236d3b34c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021535Z:64ba4040-1115-4403-8e76-8c236d3b34c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3C58CA04DF04D77994112E57E75662A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CA1952CDE4C34DA683517013F347EB37 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "411" ], - "x-ms-client-request-id": [ "a67d5dec-9e6b-487c-a2d1-6595b700a044" ], + "x-ms-unique-id": [ "780" ], + "x-ms-client-request-id": [ "f8583bd7-a9c9-4fd3-ae95-01bb6ad5653e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -10983,40 +11568,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0fdd656-f6ea-4fbb-b562-f578619455e1" ], + "x-ms-request-id": [ "fabfe0be-c1bf-4a66-b6d2-7187593d5ee9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f6e04a3c-4bc2-45e7-a512-379ded15b294" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:f6e04a3c-4bc2-45e7-a512-379ded15b294" ], + "x-ms-correlation-request-id": [ "880841bc-7be0-4f1a-b063-7daf439afe4b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021535Z:880841bc-7be0-4f1a-b063-7daf439afe4b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1FC29C3EF61D49E4BC5A5AFE215D99DC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CCDEB52D316F4C56A190661A7924504D Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "412" ], - "x-ms-client-request-id": [ "fab9b95a-f4a0-4db5-9a7b-90b09596deb3" ], + "x-ms-unique-id": [ "781" ], + "x-ms-client-request-id": [ "dfe8c66d-9477-4aaf-bd7b-f3c9458a8156" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11028,40 +11613,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68c6310b-2d31-4270-8fcd-8a60374f7cac" ], + "x-ms-request-id": [ "0c3ef929-6a2d-4a1a-8fb4-81c609f0b58d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ac39c6e5-00dc-445b-9dd0-63880e744ff9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002849Z:ac39c6e5-00dc-445b-9dd0-63880e744ff9" ], + "x-ms-correlation-request-id": [ "9700a5e0-1f80-49b2-868c-531ae2a33b04" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021535Z:9700a5e0-1f80-49b2-868c-531ae2a33b04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7034657DC00B4016BD5F4F42FCC5232E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3C1C1125975F41F89B683201DCB892E0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "413" ], - "x-ms-client-request-id": [ "b3605815-6b81-4090-b81e-063c34b5ca57" ], + "x-ms-unique-id": [ "782" ], + "x-ms-client-request-id": [ "51727c6b-06b0-4540-bced-3457512592da" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11073,40 +11658,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "426def17-1f9d-43c6-a296-35cfba85a6c8" ], + "x-ms-request-id": [ "4e119fdb-f7d6-41b6-bc8f-0c12e967c347" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eafbec69-6b22-4353-8dc7-be7bc3f56ce3" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T002850Z:eafbec69-6b22-4353-8dc7-be7bc3f56ce3" ], + "x-ms-correlation-request-id": [ "66508b61-144f-4a28-ab54-2c40df6bfb7d" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021536Z:66508b61-144f-4a28-ab54-2c40df6bfb7d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 261E7967B100440493FF74BB89A754A3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C660CED064A1441AAD4322A128BDCA53 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "414" ], - "x-ms-client-request-id": [ "8d7a02f8-3f35-4f07-a09b-f6081a59c81a" ], + "x-ms-unique-id": [ "783" ], + "x-ms-client-request-id": [ "115f0f18-82d5-419e-8993-435596446dcf" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11117,40 +11702,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8a37999b-9a04-4168-9e83-d4faa2ab26b0", "e34fa219-4ead-442f-b05f-e7d0cb3b0113", "007f92bc-41dd-4260-a052-5205ac3b01c6" ], + "x-ms-original-request-ids": [ "e576d921-e9b8-432e-baaf-2bfa017c36a7", "ad765eed-b4e3-4f7c-ae9f-414b27ccf6fa", "27ab3200-35f7-45c1-9fc4-0c80403fddbd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b25a19f8-f469-4ac5-970a-8881a68284b7" ], - "x-ms-correlation-request-id": [ "b25a19f8-f469-4ac5-970a-8881a68284b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002851Z:b25a19f8-f469-4ac5-970a-8881a68284b7" ], + "x-ms-request-id": [ "f4845c82-4ef6-4b4c-89a8-c78ea20a38a9" ], + "x-ms-correlation-request-id": [ "f4845c82-4ef6-4b4c-89a8-c78ea20a38a9" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021537Z:f4845c82-4ef6-4b4c-89a8-c78ea20a38a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 24C296B0F8294BD0943C914FEEAA2189 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6C89E03DB72D4046A989711A66CE4AE5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "415" ], - "x-ms-client-request-id": [ "016e2a4c-d63d-4d4b-a43a-95ae71ad82da" ], + "x-ms-unique-id": [ "784" ], + "x-ms-client-request-id": [ "3fae1a12-a377-4391-89d5-346d42f3a37c" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11161,16 +11746,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "38c6013b-c59f-47b8-b25e-4bd49d6bfa5a" ], + "x-ms-request-id": [ "05eea814-a2ab-4aa3-9d7e-b8e190aeccd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a4bb8cb0-24b5-40f2-beb9-50c748a76c60" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/152d807d-8c4b-4b2a-9b27-bf62bc95d3bb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "09bc4cbf-fb9d-4985-82f2-0613e94119b6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002851Z:09bc4cbf-fb9d-4985-82f2-0613e94119b6" ], + "x-ms-correlation-request-id": [ "ea51944d-eeb2-4d51-8eda-d72a535ecd1e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021537Z:ea51944d-eeb2-4d51-8eda-d72a535ecd1e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A5BCA541EC6642D185A3351902CD359F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C83EC8788D2345AA87E72445B75EC032 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -11181,10 +11766,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-DotNet-Isolated0f543v96sw?api-version=2015-05-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-DotNet-Isolatedtwxrs35fho?api-version=2015-05-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-DotNet-Isolated0f543v96sw?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-DotNet-Isolatedtwxrs35fho?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -11204,30 +11789,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ed1762c6-783c-46bd-a625-a6e874dddb99" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "94d06c49-0eef-49cb-9c5f-d0208bd345f8" ], - "x-ms-correlation-request-id": [ "94d06c49-0eef-49cb-9c5f-d0208bd345f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002857Z:94d06c49-0eef-49cb-9c5f-d0208bd345f8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eaf8f669-21cd-4832-aecc-940b22909cc4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "ee6b5ee9-a82b-45be-b6f9-3f1a2f19cd71" ], + "x-ms-correlation-request-id": [ "ee6b5ee9-a82b-45be-b6f9-3f1a2f19cd71" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021543Z:ee6b5ee9-a82b-45be-b6f9-3f1a2f19cd71" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D03AE3B11C7F4507A269D08700A721F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:28:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5C5721CB0C234EFBAECC43BE1AAAA1E6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:15:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c202baa5-0000-0300-0000-69c47dc90000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-DotNet-Isolated0f543v96sw\",\r\n \"name\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"AppId\": \"88160b62-e69f-434b-aa4d-52159dc48477\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"98042a34-f79f-4fea-8e95-cec96b18f814\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-Isolated0f543v96sw\",\r\n \"CreationDate\": \"2026-03-26T00:28:52.3573559+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolated0f543v96sw_88160b62-e69f-434b-aa4d-52159dc48477_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated0f543v96sw-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6e038b00-0000-0300-0000-69c739cf0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-DotNet-Isolatedtwxrs35fho\",\r\n \"name\": \"Functions-DotNet-Isolatedtwxrs35fho\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-DotNet-Isolatedtwxrs35fho\",\r\n \"AppId\": \"9681c3d3-07b0-4349-a94c-a16ccfcffe8e\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"124fd90f-1988-4487-84e2-a1679d609f64\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-DotNet-Isolatedtwxrs35fho\",\r\n \"CreationDate\": \"2026-03-28T02:15:37.9759089+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolatedtwxrs35fho_9681c3d3-07b0-4349-a94c-a16ccfcffe8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedtwxrs35fho-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolated0f543v96sw\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v9.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"dotnet-isolated\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-dotnet-isolatedtwxrs35fho\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": false\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -11241,43 +11826,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB78A5F2300\"" ], + "ETag": [ "\"1DCBE58C9DCDD0B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72332905-4c04-4dbf-a811-7d84f64ff4ff" ], + "x-ms-request-id": [ "f5f58726-2e5b-4067-b151-8b307cfef67d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0be55408-2a71-4591-9997-5f5f6711c7d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/935754d7-9889-4274-ad73-58788b2c0d3d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "afeb6170-b2eb-4b14-8444-818a617d8b88" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T002939Z:afeb6170-b2eb-4b14-8444-818a617d8b88" ], + "x-ms-correlation-request-id": [ "ff974ee1-9367-498a-bab3-1a3c24c4e1bd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021626Z:ff974ee1-9367-498a-bab3-1a3c24c4e1bd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FA5CCFA0E634E78883A637B6D5BF171 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:28:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:29:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1156B8D36CD4844B7816E9E2BA4B9B9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:15:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:25 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:28:59.2633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"repositorySiteName\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:15:45.6333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-DotNet-Isolatedtwxrs35fho\\\\$Functions-DotNet-Isolatedtwxrs35fho\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "418" ], - "x-ms-client-request-id": [ "2a7214a6-acf6-4fea-8775-2d6cd8b3a8a0" ], + "x-ms-unique-id": [ "787" ], + "x-ms-client-request-id": [ "096ca64e-1529-4017-9fc5-c23e1fb71617" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -11287,42 +11872,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7A1F17AAB" ], + "ETag": [ "1DCBE58E11AC620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e935f615-6259-4c2b-bea2-6a08a9f62b25" ], + "x-ms-request-id": [ "c43b0dac-7326-4c6b-b129-3b47c7c55468" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6f1a5ac8-d978-4200-8157-74c7b037071e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003015Z:6f1a5ac8-d978-4200-8157-74c7b037071e" ], + "x-ms-correlation-request-id": [ "20deb85e-6502-4ca7-9279-ba97154f10ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021656Z:20deb85e-6502-4ca7-9279-ba97154f10ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6377F5589F1439595ECDA99DB3D2A60 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 641CC040979F4397AAEC86F4D750790A Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"repositorySiteName\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:16:25.73\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-DotNet-Isolatedtwxrs35fho\\\\$Functions-DotNet-Isolatedtwxrs35fho\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "419" ], - "x-ms-client-request-id": [ "d2aa912c-49a1-4fcc-8afe-e2deda0cdc71" ], + "x-ms-unique-id": [ "788" ], + "x-ms-client-request-id": [ "e7c19122-7a67-4972-9d20-8f50142cac35" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11333,42 +11918,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7A1F17AAB" ], + "ETag": [ "1DCBE58E11AC620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b7878992-3a32-4ffd-bf19-37b23d60bd59" ], + "x-ms-request-id": [ "c7b8a68d-bf6c-413c-8384-1dd56b772467" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b428527d-f3f7-445c-8913-5e84e41f6cfb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003017Z:b428527d-f3f7-445c-8913-5e84e41f6cfb" ], + "x-ms-correlation-request-id": [ "bbb9c8dd-bf41-4fe2-ab8f-9f20d24e49e5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021657Z:bbb9c8dd-bf41-4fe2-ab8f-9f20d24e49e5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 587A2F13FE61459BB11B60C0DDD40A0E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B4A4976128E42BABDA733749462A0FF Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"repositorySiteName\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:16:25.73\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-DotNet-Isolatedtwxrs35fho\\\\$Functions-DotNet-Isolatedtwxrs35fho\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "420" ], - "x-ms-client-request-id": [ "2d93ed4f-590e-4836-ae60-b5f1b9995eb5" ], + "x-ms-unique-id": [ "789" ], + "x-ms-client-request-id": [ "0f68e36a-487b-43f8-814b-5224b04b52f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11380,40 +11965,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "10461b7f-84dd-4d8f-b836-09944b38d2e1" ], + "x-ms-request-id": [ "b9c1a928-14bd-44ea-b45f-94b5734c8068" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d5c492ac-09ed-4f3c-a98d-ae05b3885e64" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/05884bca-c54f-4f87-a827-d9f5b2c47341" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "04660226-20af-4807-8950-5b74322f5f61" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003018Z:04660226-20af-4807-8950-5b74322f5f61" ], + "x-ms-correlation-request-id": [ "d85257df-8a49-4a8f-aac4-758f5d2c1e94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021657Z:d85257df-8a49-4a8f-aac4-758f5d2c1e94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72CC305565D84D0C80D1643D7EA2E288 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE325B1D8CA14799AD429FF434BE7EFA Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedtwxrs35fho\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "421" ], - "x-ms-client-request-id": [ "b94dd73e-13d1-453a-980f-e3698a9006f6" ], + "x-ms-unique-id": [ "790" ], + "x-ms-client-request-id": [ "650aa4c8-0f86-453c-a08e-8d945ce05d8d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11425,41 +12010,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4dda715a-693c-4e55-9a6d-b3038c57ce6d" ], + "x-ms-request-id": [ "10ff224b-c086-4ffa-91f5-4567a4042310" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2d77b1f-b325-45bc-bbf4-26294ef5f788" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7ddd3508-a04d-4681-a686-c5964756a434" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9a7604c0-4e8e-47f4-957d-8b06a51f57e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003020Z:9a7604c0-4e8e-47f4-957d-8b06a51f57e4" ], + "x-ms-correlation-request-id": [ "ba329fda-deed-4ad3-a854-37b1c6413b0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021657Z:ba329fda-deed-4ad3-a854-37b1c6413b0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 922DA60A91EA433C803AA3E26CFA18CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 73C6D451901A43B69B66D5E014EB87B5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "422" ], - "x-ms-client-request-id": [ "1c773a9e-4fff-4688-9698-27f4d1652c06" ], + "x-ms-unique-id": [ "791" ], + "x-ms-client-request-id": [ "f5cb2440-7a6c-4fdd-a4b6-590f74856c2a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11471,40 +12056,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e34cc5de-e4d7-4244-a2a6-b82b27b4f72d" ], + "x-ms-request-id": [ "9ba0299b-53bd-4489-a320-cf51077c83ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17062511-9faa-4c35-a59b-d8621c4ad369" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd50d19b-3e9b-4508-aab2-d2d3e3ba75e8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2b7ce260-af87-4b5c-98d8-459f241563c5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003022Z:2b7ce260-af87-4b5c-98d8-459f241563c5" ], + "x-ms-correlation-request-id": [ "f75b79bc-a256-4e48-addf-9014610ad929" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021658Z:f75b79bc-a256-4e48-addf-9014610ad929" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32DD2A13199843DB923C5BF66CF79373 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2464B8209ED8416BAB204B15C53FB661 Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedtwxrs35fho\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "423" ], - "x-ms-client-request-id": [ "d2cda7e6-9819-42df-82af-bf95954799ad" ], + "x-ms-unique-id": [ "792" ], + "x-ms-client-request-id": [ "59bee115-fd81-41c9-95ae-476d1d34b1de" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11515,42 +12100,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7A1F17AAB" ], + "ETag": [ "1DCBE58E11AC620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69a7028d-7c35-42b4-8cf3-3469fd5b674b" ], + "x-ms-request-id": [ "0dbaa209-b7a8-41e7-805a-85aba660578b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8e97dd0b-6aec-4d63-8505-4aeeac2b0e36" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003023Z:8e97dd0b-6aec-4d63-8505-4aeeac2b0e36" ], + "x-ms-correlation-request-id": [ "cc400730-21e2-4eba-86c9-09e76ff3ae4f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021658Z:cc400730-21e2-4eba-86c9-09e76ff3ae4f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 999437B9B930479A8336892187A12D30 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 46950ED399C24C7DA28C730AC49C5694 Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"repositorySiteName\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:16:25.73\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-DotNet-Isolatedtwxrs35fho\\\\$Functions-DotNet-Isolatedtwxrs35fho\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "424" ], - "x-ms-client-request-id": [ "95ff1dd4-7fb7-4148-80da-4724f1fa9da2" ], + "x-ms-unique-id": [ "793" ], + "x-ms-client-request-id": [ "a70de740-5835-4d47-a87d-bdae7c26b10d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11562,40 +12147,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8efc3593-e0b0-41c6-8a03-d2561ad2d79d" ], + "x-ms-request-id": [ "a49007ba-5805-4f1f-8951-f65ecaac4a8d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/493d2e22-5050-46c1-a794-c490ea7fe26e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0bffd601-7bcc-46fc-94a6-78eeb5b5bdca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4d1eff17-2e75-4bb7-923b-91c88982a814" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003023Z:4d1eff17-2e75-4bb7-923b-91c88982a814" ], + "x-ms-correlation-request-id": [ "c2bd460b-e921-465d-85ee-3c7b8754ef96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021658Z:c2bd460b-e921-465d-85ee-3c7b8754ef96" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF9EA965738F4A02AEA7A8D1787361A3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE6FB7D8FDC34A3EB1546584F85AD6CF Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedtwxrs35fho\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "425" ], - "x-ms-client-request-id": [ "01875c7c-e0f8-44b8-8453-67007caf2b84" ], + "x-ms-unique-id": [ "794" ], + "x-ms-client-request-id": [ "b45308cc-c51e-4f45-9826-c65677e4ca02" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11607,41 +12192,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3fbf20e4-1308-45f0-8e9c-891895652897" ], + "x-ms-request-id": [ "8a5eb4f4-d0d5-4e32-a9aa-42432c6f9159" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/00908202-69ab-4a97-b06b-341844105258" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a4e09ca1-5349-40c8-9768-d00825c16752" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003024Z:a4e09ca1-5349-40c8-9768-d00825c16752" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6f5c7409-fe7f-4a1d-8add-5200bf0f37ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "fdc9ee93-3474-4cdc-8fe3-0b5ddfd858b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021659Z:fdc9ee93-3474-4cdc-8fe3-0b5ddfd858b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 07888DAB0F394454B022A089971C3B9D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4DB3A93A4D4D41AD9EDF376BC8909A3C Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "426" ], - "x-ms-client-request-id": [ "8e284e85-337e-4619-819b-1061a64a888c" ], + "x-ms-unique-id": [ "795" ], + "x-ms-client-request-id": [ "253f856d-8e42-4305-9779-0700f9ade0ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11652,42 +12237,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7A1F17AAB" ], + "ETag": [ "1DCBE58E11AC620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "adaa5a40-d17b-46a8-ae89-ef45d6d6f623" ], + "x-ms-request-id": [ "29da737e-7f0a-4c56-acd8-948cc5f65249" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "694763b4-b679-44fa-ad3f-9f009b17a9f2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003024Z:694763b4-b679-44fa-ad3f-9f009b17a9f2" ], + "x-ms-correlation-request-id": [ "a1fe7916-e019-41d9-9572-f3d0af113583" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021659Z:a1fe7916-e019-41d9-9572-f3d0af113583" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 962D289BFDAA4580B4B2FCC8E32A82A2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DB802368387E4DEDACFC284687703A8F Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-DotNet-Isolated0f543v96sw\",\"repositorySiteName\":\"Functions-DotNet-Isolated0f543v96sw\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolated0f543v96sw.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:29:39.6266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolated0f543v96sw\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-DotNet-Isolated0f543v96sw\\\\$Functions-DotNet-Isolated0f543v96sw\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-dotnet-isolated0f543v96sw.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-DotNet-Isolatedtwxrs35fho\",\"repositorySiteName\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-isolatedtwxrs35fho.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:16:25.73\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-DotNet-Isolatedtwxrs35fho\\\\$Functions-DotNet-Isolatedtwxrs35fho\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-dotnet-isolatedtwxrs35fho.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01+25": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "427" ], - "x-ms-client-request-id": [ "0de661f1-fedb-4df7-aeae-030e163dabde" ], + "x-ms-unique-id": [ "796" ], + "x-ms-client-request-id": [ "d1bdb86c-cb9e-4668-8d77-003138992e53" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11699,40 +12284,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "49aa1d00-73fc-41d8-8edb-e95ea09214fc" ], + "x-ms-request-id": [ "68f9593f-04d5-4d8f-8d87-e83b2fc5295e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12a1bcf7-6edd-446c-968d-ddbce4bf5e26" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f831b9c8-11cb-4106-8888-1e636f270935" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0ce18c6a-022f-4077-a151-65812df12bb8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003024Z:0ce18c6a-022f-4077-a151-65812df12bb8" ], + "x-ms-correlation-request-id": [ "a80aa713-09d9-4f7e-abc1-49b2c10cc466" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021659Z:a80aa713-09d9-4f7e-abc1-49b2c10cc466" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C5C764BF07C5401EA84618C5B1935001 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8AD41D2C3F5842A1A0572FAA5BCEAFE8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:16:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1232" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolated0f543v96sw\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"WEBSITE_USE_PLACEHOLDER_DOTNETISOLATED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet-isolated\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-isolatedtwxrs35fho\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "428" ], - "x-ms-client-request-id": [ "a5636ea0-c021-4531-b53e-2281f0df5a1f" ], + "x-ms-unique-id": [ "797" ], + "x-ms-client-request-id": [ "2c096e43-90fa-4ac7-9528-84bb301d2052" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11744,41 +12329,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "edf77332-ea87-472e-93a7-144bf65406e1" ], + "x-ms-request-id": [ "83944259-5b33-4522-bff9-4a323997f7e7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/16760e15-a3d4-4c7f-8386-56797c0816ad" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "24606cb5-94dc-4d00-85ec-026c00122cfa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003025Z:24606cb5-94dc-4d00-85ec-026c00122cfa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0f42a64e-2ca5-432a-a41e-a3d97b9aa385" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "516b2e4a-e1ec-46eb-8251-d154e38721e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021700Z:516b2e4a-e1ec-46eb-8251-d154e38721e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 391007EDB89D4F6282C92FE6A0DDEA6F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5E5F72BBB2C7476691D06A8ACE0BF698 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4189" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw/config/web\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho/config/web\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v9.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "429" ], - "x-ms-client-request-id": [ "b626a354-5aa3-4a3f-a84a-8aed9b9a7615" ], + "x-ms-unique-id": [ "798" ], + "x-ms-client-request-id": [ "9e67a576-5a3e-49eb-9515-5e50f20728b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11790,40 +12375,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "242869f1-7246-4b30-a158-3c9c6358161f" ], + "x-ms-request-id": [ "d650b3fa-a09d-4e71-97b6-24fb64b1bc87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "f962ed9d-ea28-42b9-a642-2caa9f7d3201" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003025Z:f962ed9d-ea28-42b9-a642-2caa9f7d3201" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c27fd246-3549-420a-94f6-34f99f81f9da" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021700Z:c27fd246-3549-420a-94f6-34f99f81f9da" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D62E22913B148B7B285E1D479973603 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E111B5EF69F4DFDB0C195241FC85BE3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:16:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+26": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows DotNet-Isolated 9 Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+28": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-DotNet-Isolated0f543v96sw?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-DotNet-Isolatedtwxrs35fho?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "430" ], - "x-ms-client-request-id": [ "ddb87b94-d8e4-48b1-a231-4c76e8a1a15f" ], + "x-ms-unique-id": [ "799" ], + "x-ms-client-request-id": [ "dec308ae-7eac-40ee-89ba-f25e362902ad" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11834,20 +12419,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB7A1F17AAB\"" ], + "ETag": [ "\"1DCBE58E11AC620\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d2482394-c54e-4dc6-b299-de799b39f02e" ], + "x-ms-request-id": [ "b486434c-a7b8-4cd4-9b43-109f92254eb5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a47db9c-e2d2-459c-a244-6b3a29f6c66c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2d619481-bbd1-4d0a-be80-a23b591bf973" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "aaab68e8-24f2-4de3-b351-4663d7b847b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003034Z:aaab68e8-24f2-4de3-b351-4663d7b847b1" ], + "x-ms-correlation-request-id": [ "5cb521fe-57ec-44ee-b473-78cf3b8b4bd2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021708Z:5cb521fe-57ec-44ee-b473-78cf3b8b4bd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D6481D415735430EA7AD75E7A5ECE54C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1249CFAF4ED9463D98ABCE71D18B108F Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:07 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -11861,7 +12446,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-CustomHandlermjvy1eso2u\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -11876,18 +12461,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e27c87a-63d1-4d88-bcd3-e742e6d34bd3" ], + "x-ms-request-id": [ "3e9eee77-d442-470c-9b29-631feb1252ec" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/80828a73-dd3f-4ab7-b1d7-c79a18aa5a93" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/f2b482ff-5d47-43d1-9d32-903627bc8aae" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d9b474da-4c9e-4250-9586-7f3464a94af2" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T003035Z:d9b474da-4c9e-4250-9586-7f3464a94af2" ], + "x-ms-correlation-request-id": [ "e38c6b84-85eb-4ed7-a1b8-c0caa9c48bc9" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T021709Z:e38c6b84-85eb-4ed7-a1b8-c0caa9c48bc9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6DD899B5F6A47F4B5B96021FAB0C20E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CAA44FA072F344C9B7D4CC14631A1BD8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:08 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -11905,12 +12490,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "432" ], - "x-ms-client-request-id": [ "5d261550-cbb2-4bed-8aac-63bc4bca5c98" ], + "x-ms-unique-id": [ "801" ], + "x-ms-client-request-id": [ "32520185-ef66-442e-8ed5-725bfd4d6a40" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11921,40 +12506,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "79caa75e-371b-4a56-9416-26cc24520d45", "f7284d49-e2a7-40d3-8973-4d06624e910f" ], + "x-ms-original-request-ids": [ "f6849f5e-7095-4247-accd-f26915b8b052", "b2f5d971-cd95-4a4e-8105-052900ed11f4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b278924d-891e-4099-82be-555f05e03a9b" ], - "x-ms-correlation-request-id": [ "b278924d-891e-4099-82be-555f05e03a9b" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T003036Z:b278924d-891e-4099-82be-555f05e03a9b" ], + "x-ms-request-id": [ "cfe5fa18-c68f-44df-9b21-3af8542d8183" ], + "x-ms-correlation-request-id": [ "cfe5fa18-c68f-44df-9b21-3af8542d8183" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021710Z:cfe5fa18-c68f-44df-9b21-3af8542d8183" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3B10364AACF344E896F9B699F24D2DED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 785042E20BEA459399B191C7F478D076 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13812" ], + "Content-Length": [ "15444" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "433" ], - "x-ms-client-request-id": [ "cf779ad5-d22c-492f-9372-2fc186f2aeb3" ], + "x-ms-unique-id": [ "802" ], + "x-ms-client-request-id": [ "11f21bb6-038f-4146-8c20-5b5ac6bd9f8c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -11966,40 +12551,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f1f0997-c226-4729-a401-bc7e51c7335d" ], + "x-ms-request-id": [ "604bdb8f-94f9-4a78-84c8-84001d46cb99" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e3f8e911-51a5-4836-9809-8c394da449c2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003036Z:e3f8e911-51a5-4836-9809-8c394da449c2" ], + "x-ms-correlation-request-id": [ "5087bbde-0386-4819-bc78-31fa925e4bc3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021710Z:5087bbde-0386-4819-bc78-31fa925e4bc3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D3630FF5AF645B4AE015C529C614057 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2ABB40104C4F488B8DA5E2ECC90C025D Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:09 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "803" ], + "x-ms-client-request-id": [ "79797199-0fac-4ca3-aa05-647b6aabd765" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f1aa5d38-5541-49a8-b854-c9662f328044" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "d155d587-b973-46de-b3bf-4865f5b57d7e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021710Z:d155d587-b973-46de-b3bf-4865f5b57d7e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2A7566E4EC064F189507FA8A7969D5DD Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:10 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "434" ], - "x-ms-client-request-id": [ "0b4f1be8-79d7-494a-948b-0813c9c5ddfd" ], + "x-ms-unique-id": [ "804" ], + "x-ms-client-request-id": [ "2a2ecb7e-a2c7-4493-bcb5-2eaf6fc0bd4a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12011,40 +12641,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "221eeb48-68ba-4760-b47a-cf7e3f59fd1b" ], + "x-ms-request-id": [ "941b927c-7111-458b-a577-92b2482689df" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "538440e4-3ce5-4ac4-a5f9-7720ecd3a866" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003036Z:538440e4-3ce5-4ac4-a5f9-7720ecd3a866" ], + "x-ms-correlation-request-id": [ "5da68fc3-4315-4249-bd69-1f279382ae1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021711Z:5da68fc3-4315-4249-bd69-1f279382ae1c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E349C26DED2C422D812E0BB404953A29 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:36 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 48E882AFFAD542EEAE60DE3B286306BD Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "435" ], - "x-ms-client-request-id": [ "b8bf3a86-1254-4460-928b-8e02814b605c" ], + "x-ms-unique-id": [ "805" ], + "x-ms-client-request-id": [ "86b81017-2938-4fa8-8f42-37e14ec1cd75" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12056,40 +12686,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "49a8c7bb-159c-4fb7-a57c-36660e38fd5b" ], + "x-ms-request-id": [ "dd32e746-f21f-4b56-83a5-ff04018a25a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "007fffb0-e418-4c7e-ac7e-f1b6c0698028" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003037Z:007fffb0-e418-4c7e-ac7e-f1b6c0698028" ], + "x-ms-correlation-request-id": [ "358d1756-d464-4f0f-b04d-5cbfb0f8488a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021711Z:358d1756-d464-4f0f-b04d-5cbfb0f8488a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 721CE7FC4D4E4C5DB9BE9E5E82DAA53B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EEB0FD0DA83045B7A31F55FA34CC5AF5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:10 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+6": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "436" ], - "x-ms-client-request-id": [ "520a2395-586a-4a24-89a5-de0cd75ad0fe" ], + "x-ms-unique-id": [ "806" ], + "x-ms-client-request-id": [ "11c53bb4-cabb-4de1-9403-75e1369227dc" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12101,40 +12731,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7f64d442-71d9-48c6-9849-cd6cf3ba228d" ], + "x-ms-request-id": [ "efb19533-aaa7-4717-971c-4ced9dd9e7fa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9a97b114-61a6-44fa-8e87-dc50b0dccd0a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003037Z:9a97b114-61a6-44fa-8e87-dc50b0dccd0a" ], + "x-ms-correlation-request-id": [ "238ad153-fb85-4cdf-9aea-29ba617ca5cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021711Z:238ad153-fb85-4cdf-9aea-29ba617ca5cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 02933B20680946118D0717B47FC5496B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C4F37EFD0FB4453891677EBFD99A1C7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1742" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+7": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "437" ], - "x-ms-client-request-id": [ "fd59759d-67ec-42e9-937e-04263d2f9ab5" ], + "x-ms-unique-id": [ "807" ], + "x-ms-client-request-id": [ "545fb166-fb17-44b1-bc94-c2ee0521de37" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12146,40 +12776,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "465c1bc1-ca96-4b22-ac98-edafc54e22e2" ], + "x-ms-request-id": [ "838d6607-c446-4ba9-b6f4-50d7fcb23e94" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8e5607fc-b7dc-4918-882c-e0a45518da51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003037Z:8e5607fc-b7dc-4918-882c-e0a45518da51" ], + "x-ms-correlation-request-id": [ "8c0dec86-16f7-4714-9e34-0e61b4f629e9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021712Z:8c0dec86-16f7-4714-9e34-0e61b4f629e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1BB901DFC734CC08FE063050A240103 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8C08FC5186E44BBD8D0995C7589CF2A6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+8": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "438" ], - "x-ms-client-request-id": [ "ac5910d2-c010-4c26-82fb-704b415beaf3" ], + "x-ms-unique-id": [ "808" ], + "x-ms-client-request-id": [ "6161347b-0e77-4c9c-b013-9401d8ce0e30" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12191,40 +12821,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4f4d1b2f-8824-4ba2-8051-464d6f26782e" ], + "x-ms-request-id": [ "5cea1196-2374-4a47-9687-07fdb5fa8787" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "79c61990-d676-446e-a66c-9ecb2d8fd567" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003038Z:79c61990-d676-446e-a66c-9ecb2d8fd567" ], + "x-ms-correlation-request-id": [ "445907fe-f97b-42d5-90e0-1982d1cd675c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021712Z:445907fe-f97b-42d5-90e0-1982d1cd675c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D0FC17BEAB8E46B4AFE88644CC64F5EF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:37Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BF771EA880E4E9CA407A3649069BC60 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+9": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "439" ], - "x-ms-client-request-id": [ "645590f9-2385-4124-a65e-6fc4886654ce" ], + "x-ms-unique-id": [ "809" ], + "x-ms-client-request-id": [ "104bb5f4-3f87-4822-8923-75731306d539" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12236,40 +12866,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9a3e4a6e-5dc2-4195-b99e-40105db4818b" ], + "x-ms-request-id": [ "c7b422b2-4116-43f8-94b4-be8e48142fb8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "028f6402-a3c8-4db2-a45f-318d0beff47c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003038Z:028f6402-a3c8-4db2-a45f-318d0beff47c" ], + "x-ms-correlation-request-id": [ "f3dc1e2e-aa79-4623-a2ae-1eaabf3e9860" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021712Z:f3dc1e2e-aa79-4623-a2ae-1eaabf3e9860" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3DA83FACC41444A887D27C841132604F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09BC977138ED4758BF96EC4D5789677B Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+10": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "440" ], - "x-ms-client-request-id": [ "edd9ef55-6a6c-43ba-9028-689f100ee017" ], + "x-ms-unique-id": [ "810" ], + "x-ms-client-request-id": [ "388a5820-f100-467f-8e93-349c3eddf077" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12281,40 +12911,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed6537dd-8156-4be9-a124-2cf9d7e1206f" ], + "x-ms-request-id": [ "d28e7893-0337-4c9f-accb-895647a2ac9c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af2cfa87-9b0e-45fd-868a-2f9273096c97" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T003038Z:af2cfa87-9b0e-45fd-868a-2f9273096c97" ], + "x-ms-correlation-request-id": [ "e8adb104-0b24-40fe-9b35-975d63bde33a" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021713Z:e8adb104-0b24-40fe-9b35-975d63bde33a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4A148599EC84A238D6112B585ACE4FD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 997AD0B37AA9453795BD7E52BBEFE965 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "441" ], - "x-ms-client-request-id": [ "aa0cac3a-a58a-4fc3-8061-7212da5b4b24" ], + "x-ms-unique-id": [ "811" ], + "x-ms-client-request-id": [ "bb3d7915-1906-4fc3-99a4-e437ea90a0d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12325,40 +12955,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "72df9f0b-108f-4f16-a2ab-059a87d13928", "1b33cb28-5f7f-4448-a80a-f1ea7d4cd659", "0fe61f94-8f38-481b-abe4-f188b86a6e5f" ], + "x-ms-original-request-ids": [ "8b82b98b-9601-4bad-b105-7fbefec16b91", "c442c26a-3411-467b-a97d-05b9d1954f75", "bb8aa929-e5d2-4fc8-8306-00d44c4d13c0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d4bd17fc-5280-4cfc-8ba3-1a6ea22068d9" ], - "x-ms-correlation-request-id": [ "d4bd17fc-5280-4cfc-8ba3-1a6ea22068d9" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T003039Z:d4bd17fc-5280-4cfc-8ba3-1a6ea22068d9" ], + "x-ms-request-id": [ "c0f1a54d-a28e-4fd2-8491-05b777fa6508" ], + "x-ms-correlation-request-id": [ "c0f1a54d-a28e-4fd2-8491-05b777fa6508" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021714Z:c0f1a54d-a28e-4fd2-8491-05b777fa6508" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 40983E9D71ED443DB74ED77051A658FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0A847B0C1644E5A907D6859EC84DBFD Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+12": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "442" ], - "x-ms-client-request-id": [ "ab841386-591a-41b2-84ab-247806c19b6c" ], + "x-ms-unique-id": [ "812" ], + "x-ms-client-request-id": [ "5f1e998a-6c7e-4bac-b6af-d6e5db856b25" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12369,16 +12999,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "8bc779df-60b3-436f-a488-a28d5c5d46d1" ], + "x-ms-request-id": [ "8baeaf46-1c5e-48d2-b035-526d1301cf4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7bfb1137-6284-4863-9d10-11cc576abd60" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70d06bc4-7ab4-4e3e-b9a3-5f48aaa07c50" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5c42283d-ff75-4009-81b2-b722494daabb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003040Z:5c42283d-ff75-4009-81b2-b722494daabb" ], + "x-ms-correlation-request-id": [ "e966e12b-a434-4c97-a83f-afbd687acb7c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021714Z:e966e12b-a434-4c97-a83f-afbd687acb7c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD4EAC5354EF435D8AAE67009B3E321D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 001AD3684ACC4FA7B11DC2D07202364B Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -12389,10 +13019,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-CustomHandlernb8m23gkpj?api-version=2015-05-01+13": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-CustomHandlermjvy1eso2u?api-version=2015-05-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Functions-CustomHandlernb8m23gkpj?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Functions-CustomHandlermjvy1eso2u?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -12412,30 +13042,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/453b7acd-5694-4dcc-99ba-da7520c6a97b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a05b8637-dd5c-4b75-9612-1a73832e818d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "54e2bc90-3930-4fa8-9c77-e901f7b3a0f5" ], - "x-ms-correlation-request-id": [ "54e2bc90-3930-4fa8-9c77-e901f7b3a0f5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003045Z:54e2bc90-3930-4fa8-9c77-e901f7b3a0f5" ], + "x-ms-request-id": [ "8baef351-e2a4-4b36-bdbd-cd3d720b4f6b" ], + "x-ms-correlation-request-id": [ "8baef351-e2a4-4b36-bdbd-cd3d720b4f6b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021720Z:8baef351-e2a4-4b36-bdbd-cd3d720b4f6b" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CA678E04AEE944739AE01EBEA357E073 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:30:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C94AD2D8F504F03B4EFABA367514E35 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:17:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1672" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20293b2-0000-0300-0000-69c47e350000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-CustomHandlernb8m23gkpj\",\r\n \"name\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"AppId\": \"2264a028-f396-4544-abff-dd4df0c16231\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"7cbb0c18-f337-42dd-8699-ae2bd9f70f55\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomHandlernb8m23gkpj\",\r\n \"CreationDate\": \"2026-03-26T00:30:40.8042322+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlernb8m23gkpj_2264a028-f396-4544-abff-dd4df0c16231_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlernb8m23gkpj-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6e038113-0000-0300-0000-69c73a300000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-CustomHandlermjvy1eso2u\",\r\n \"name\": \"Functions-CustomHandlermjvy1eso2u\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Functions-CustomHandlermjvy1eso2u\",\r\n \"AppId\": \"3d69b86b-a9c3-484d-9896-f0145cf68501\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"12dafc1c-bf80-4861-b660-f344df8f37bb\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Functions-CustomHandlermjvy1eso2u\",\r\n \"CreationDate\": \"2026-03-28T02:17:15.2619995+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlermjvy1eso2u_3d69b86b-a9c3-484d-9896-f0145cf68501_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlermjvy1eso2u-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+14": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"custom\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlernb8m23gkpj\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v6.0\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"custom\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"functions-customhandlermjvy1eso2u\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -12449,43 +13079,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB7CAA329C0\"" ], + "ETag": [ "\"1DCBE5903A53E00\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd7cb668-c871-4835-99f6-a7f916955805" ], + "x-ms-request-id": [ "d74660d1-3414-4129-85b6-9d0c6b65acd6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad42bad9-f5e8-4ce9-abf2-0840fe48a8a9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff560eea-dcb7-4fa1-91d5-f6086c03aff7" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "8f3b5e06-b04a-4740-a6bc-3d5bfbf083b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003127Z:8f3b5e06-b04a-4740-a6bc-3d5bfbf083b5" ], + "x-ms-correlation-request-id": [ "7f4279cb-cc13-480f-bdbb-417123a41a3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021803Z:7f4279cb-cc13-480f-bdbb-417123a41a3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 384D277321954E0A9A2CB75485CF4C58 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:30:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:31:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A1BD0619449A49AD85DF4E3C6E0A8BD0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:17:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8558" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:30:47.1966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-CustomHandlermjvy1eso2u\",\"repositorySiteName\":\"Functions-CustomHandlermjvy1eso2u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:17:22.7533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlermjvy1eso2u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-CustomHandlermjvy1eso2u\\\\$Functions-CustomHandlermjvy1eso2u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+15": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "445" ], - "x-ms-client-request-id": [ "6f3c7d5d-6315-43f5-b4fc-733aaafe876b" ], + "x-ms-unique-id": [ "815" ], + "x-ms-client-request-id": [ "ac4c2c6a-f5ae-40b6-a6ab-33f521092f61" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -12495,42 +13125,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7E2253AC0" ], + "ETag": [ "1DCBE591B3795AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2758de8-0b31-4511-9660-aeba0314be57" ], + "x-ms-request-id": [ "0659ccc2-5bff-4311-9d86-5b7e4e2d3194" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3eb71597-ced7-432c-b855-f4f7f0684665" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003158Z:3eb71597-ced7-432c-b855-f4f7f0684665" ], + "x-ms-correlation-request-id": [ "0d2ec457-8374-4333-bd1e-ad6ac4aa8575" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021834Z:0d2ec457-8374-4333-bd1e-ad6ac4aa8575" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EECD98665E444E47AB722BD535983AFC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:31:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 49FA25BBD0D14846BCECCB6C7A0C1C80 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8349" ], + "Content-Length": [ "8354" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-CustomHandlermjvy1eso2u\",\"repositorySiteName\":\"Functions-CustomHandlermjvy1eso2u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:18:03.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlermjvy1eso2u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-CustomHandlermjvy1eso2u\\\\$Functions-CustomHandlermjvy1eso2u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+16": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "446" ], - "x-ms-client-request-id": [ "f995e810-638d-4efe-95df-00d0ec1a32fc" ], + "x-ms-unique-id": [ "816" ], + "x-ms-client-request-id": [ "61280f5d-8e89-4349-b4bd-66c66b3abd32" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12541,42 +13171,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7E2253AC0" ], + "ETag": [ "1DCBE591B3795AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5db4e751-4e54-4050-a7e6-65dad3c49d2f" ], + "x-ms-request-id": [ "b941f70e-52ec-4b9a-a915-d183ece5da68" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "01bef579-1b29-4568-ae3e-184645fc7437" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003158Z:01bef579-1b29-4568-ae3e-184645fc7437" ], + "x-ms-correlation-request-id": [ "bf850eb2-aeff-4948-9a65-5e7dace1fcd2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021834Z:bf850eb2-aeff-4948-9a65-5e7dace1fcd2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B47B30EFB256420A81E675B9FA2AA7E0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:31:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8961824E78864F86906C5625D00C2A0C Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8349" ], + "Content-Length": [ "8354" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-CustomHandlermjvy1eso2u\",\"repositorySiteName\":\"Functions-CustomHandlermjvy1eso2u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:18:03.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlermjvy1eso2u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-CustomHandlermjvy1eso2u\\\\$Functions-CustomHandlermjvy1eso2u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "447" ], - "x-ms-client-request-id": [ "6937fa74-35b1-42fa-bae7-9eebcd76a244" ], + "x-ms-unique-id": [ "817" ], + "x-ms-client-request-id": [ "eb0663b8-5168-4146-97a9-713c536bb453" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12588,40 +13218,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a35d2bab-7b6b-4518-9cae-e18482d7a1f8" ], + "x-ms-request-id": [ "993fad6e-e0b2-4fe1-bec5-3ab0445d2642" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/29d6b924-1929-49e1-a217-fd1831a3bdd1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b9715ec2-c5da-430a-ac78-7c8c84da12a5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "62874e70-e4a3-4aad-acb0-5a0b2416f1a1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003158Z:62874e70-e4a3-4aad-acb0-5a0b2416f1a1" ], + "x-ms-correlation-request-id": [ "e7c99302-7c0d-4ce2-82d8-e3430219759d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021834Z:e7c99302-7c0d-4ce2-82d8-e3430219759d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46335A6A7E034817B6A427BDB4177104 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:31:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0238DD4D30E943D6923B3E303EE87BA9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlermjvy1eso2u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "448" ], - "x-ms-client-request-id": [ "9d3b987a-4884-468e-ad79-7ec4f94529b8" ], + "x-ms-unique-id": [ "818" ], + "x-ms-client-request-id": [ "734c5cc7-6eb0-42a4-8e9b-d4f492677261" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12633,41 +13263,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32eaf4b4-50a2-4658-845d-9f84de94ca75" ], + "x-ms-request-id": [ "e55283c0-3f35-4833-9f9c-9f6ed355304c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cea4d411-c310-4985-a6eb-27f50782e715" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7feefcf5-ee5b-4360-93b7-02ba4894c500" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e2a85663-b124-4e04-8784-9514f56c7c82" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003159Z:e2a85663-b124-4e04-8784-9514f56c7c82" ], + "x-ms-correlation-request-id": [ "839aa248-7fa1-487c-a2c8-a653feff1d82" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021835Z:839aa248-7fa1-487c-a2c8-a653feff1d82" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2BD8DA8784FC4D1C84B937ED83F3807B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:59Z" ], - "Date": [ "Thu, 26 Mar 2026 00:31:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FC12CC802C2488DB04745EF2499D19E Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+19": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "449" ], - "x-ms-client-request-id": [ "697c4acc-3d28-4139-adde-1187cb24ad04" ], + "x-ms-unique-id": [ "819" ], + "x-ms-client-request-id": [ "9f64633e-8837-4380-bcea-97d5925fa281" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12679,40 +13309,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e92c6708-ad18-45e5-aa85-90dd212e7ad7" ], + "x-ms-request-id": [ "9c76a2e0-4024-4b85-85f5-d8b79ddc0400" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/715c48d1-5932-4a60-ac13-580a4e084d76" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3c67982-d7e9-4613-8ea9-3ca03b7a2ac5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a3d2a6b7-5af2-41fd-a487-4e7254d9d658" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003159Z:a3d2a6b7-5af2-41fd-a487-4e7254d9d658" ], + "x-ms-correlation-request-id": [ "5a73c6f6-90be-4fd9-bdd4-cad71f00042a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021835Z:5a73c6f6-90be-4fd9-bdd4-cad71f00042a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8317CDAF693448D6B7FB315C017ECFEB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:59Z" ], - "Date": [ "Thu, 26 Mar 2026 00:31:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5B4750DC7F0146ECA439925DF28BCC19 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlermjvy1eso2u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+20": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "450" ], - "x-ms-client-request-id": [ "af1dc04f-bbf1-417a-9243-6bcabdc79fd2" ], + "x-ms-unique-id": [ "820" ], + "x-ms-client-request-id": [ "8446e908-f5cb-4f23-822d-a1991cd74aee" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12723,42 +13353,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7E2253AC0" ], + "ETag": [ "1DCBE591B3795AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "589844e4-5590-46a3-acba-b448200ef3e5" ], + "x-ms-request-id": [ "580b853b-1617-4338-a2fd-eb0edca7f2bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c58b96f5-c4ce-4258-b6e4-cf0daa625b98" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003200Z:c58b96f5-c4ce-4258-b6e4-cf0daa625b98" ], + "x-ms-correlation-request-id": [ "69da65e5-301f-46a1-93f5-8c317243bd92" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021835Z:69da65e5-301f-46a1-93f5-8c317243bd92" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AEF1076124B94D628A64F19D44F7B752 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:31:59Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4656B555BFBA4A699C5C2E564AEDF598 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8349" ], + "Content-Length": [ "8354" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-CustomHandlermjvy1eso2u\",\"repositorySiteName\":\"Functions-CustomHandlermjvy1eso2u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:18:03.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlermjvy1eso2u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-CustomHandlermjvy1eso2u\\\\$Functions-CustomHandlermjvy1eso2u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "451" ], - "x-ms-client-request-id": [ "21b1d147-759e-43af-9f03-3e55f8852972" ], + "x-ms-unique-id": [ "821" ], + "x-ms-client-request-id": [ "78f6d9c5-808e-4059-ba09-4ac2aaca13c9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12770,40 +13400,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "325f208e-6f9d-4d64-930d-0dd4a8b16d87" ], + "x-ms-request-id": [ "1b49d011-046b-4703-ad58-5af7d0b581f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b38cb3b3-f53c-4bfe-b65a-9ef51488e646" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4911ab19-459c-4974-bb9f-f8ddf47a82dc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4dcd1664-2906-43ae-b9a8-04e48ca33d0e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003200Z:4dcd1664-2906-43ae-b9a8-04e48ca33d0e" ], + "x-ms-correlation-request-id": [ "732b441b-3c83-4bcc-af3e-4973cf78a034" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021836Z:732b441b-3c83-4bcc-af3e-4973cf78a034" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8D3153BFBC640D4984BC2E0D23E8F24 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18600CED939A40F8B789B5EA5DD44648 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlermjvy1eso2u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "452" ], - "x-ms-client-request-id": [ "fd3c24aa-7abe-4cf2-9748-0fece8ca143e" ], + "x-ms-unique-id": [ "822" ], + "x-ms-client-request-id": [ "37919040-f54f-433a-a51b-7df45692ce72" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12815,41 +13445,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6e1d935b-d247-4df7-a622-9cf5f1ae8290" ], + "x-ms-request-id": [ "ca4bf032-666d-4b35-936d-3c00a07bc62d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3f504d0c-82cd-4251-901e-d8f513a40008" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61109b98-d99a-4a32-9341-e4a9940ad47e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c674f647-360d-4340-afe8-f5876759bc8a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003200Z:c674f647-360d-4340-afe8-f5876759bc8a" ], + "x-ms-correlation-request-id": [ "2aa51308-c64e-44a8-943d-2790747d07c9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021836Z:2aa51308-c64e-44a8-943d-2790747d07c9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 34FA6552456A49D991BD29863D119177 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 056BEC1C72304BABA4D7630C5C4806C4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01+23": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "453" ], - "x-ms-client-request-id": [ "77938835-1469-466e-b78b-a4924fa864bd" ], + "x-ms-unique-id": [ "823" ], + "x-ms-client-request-id": [ "67ca5da3-43d8-4abc-9d90-0871f6a7ae72" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12860,42 +13490,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7E2253AC0" ], + "ETag": [ "1DCBE591B3795AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e0e2ed3-a2c2-4da1-a657-9b62d6a255df" ], + "x-ms-request-id": [ "fc9354a9-378c-43ce-9e27-2a55ed349c96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "ca302a4a-c08b-438b-a281-309d66b67b83" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003201Z:ca302a4a-c08b-438b-a281-309d66b67b83" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c339405b-2d38-4e9c-8f40-2fa644230dbf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021837Z:c339405b-2d38-4e9c-8f40-2fa644230dbf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 28E12A28F60F42C2B0E1FD084D75D2F6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA8FDB4CC227449DA373AAD66CCA028D Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8349" ], + "Content-Length": [ "8354" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-CustomHandlernb8m23gkpj\",\"repositorySiteName\":\"Functions-CustomHandlernb8m23gkpj\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlernb8m23gkpj.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:31:27.34\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlernb8m23gkpj\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-CustomHandlernb8m23gkpj\\\\$Functions-CustomHandlernb8m23gkpj\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-customhandlernb8m23gkpj.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"state\":\"Running\",\"hostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-CustomHandlermjvy1eso2u\",\"repositorySiteName\":\"Functions-CustomHandlermjvy1eso2u\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-customhandlermjvy1eso2u.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:18:03.2266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-CustomHandlermjvy1eso2u\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-CustomHandlermjvy1eso2u\\\\$Functions-CustomHandlermjvy1eso2u\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-customhandlermjvy1eso2u.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01+25": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "454" ], - "x-ms-client-request-id": [ "c1f6a60f-8ee0-4551-b32b-5554c10f286a" ], + "x-ms-unique-id": [ "824" ], + "x-ms-client-request-id": [ "7d809f45-2090-44e2-a1d0-f64c988483c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12907,40 +13537,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac78d2f3-af2b-4698-8a3d-f12fcea9a842" ], + "x-ms-request-id": [ "7266eb1a-c7ba-4a27-8144-f147fcd1b24f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9bf2682c-0690-470d-9604-86c6faf05a9d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "189daede-a9e4-4291-8817-fa9df3282b83" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003201Z:189daede-a9e4-4291-8817-fa9df3282b83" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b7229f00-f8e9-4ab6-86e4-81c429c1e752" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "b7cb3cfe-5c51-47dd-b4db-f63b5aa4a891" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021837Z:b7cb3cfe-5c51-47dd-b4db-f63b5aa4a891" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AA2D9BB31794440A1E7EB507E39C8DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1842A0E674BE4BFD8E806A2F2F0D3603 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlernb8m23gkpj\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"custom\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-customhandlermjvy1eso2u\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01+25": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "455" ], - "x-ms-client-request-id": [ "2cf5ac6f-dbe1-4f19-a0ce-62865822219f" ], + "x-ms-unique-id": [ "825" ], + "x-ms-client-request-id": [ "610218cb-5d75-4089-be1a-4dbee7586cdb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12952,41 +13582,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23c67e2e-d4f1-4d58-9542-e3e5bee17e44" ], + "x-ms-request-id": [ "d6d14f70-ac0e-47d1-bc5d-f906341a20af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8c29a04b-c5b6-491d-84e9-640f582e45e2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ffe8412a-0055-4070-ab31-9363f48875a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003202Z:ffe8412a-0055-4070-ab31-9363f48875a8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/26d9e3b6-2e6a-4415-aa4b-4fdc3aab5586" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "86387c07-1dba-4f17-ac9d-e7a641f3713f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021837Z:86387c07-1dba-4f17-ac9d-e7a641f3713f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 400E1795E91D4EDEA565835F736B9F04 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A391A8FA40BE449AA3DFEA0F632DA89B Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4184" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj/config/web\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u/config/web\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v6.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+26": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "456" ], - "x-ms-client-request-id": [ "2e237539-550a-48d4-b255-5941de878024" ], + "x-ms-unique-id": [ "826" ], + "x-ms-client-request-id": [ "2d1c4c0c-d9e2-4d9d-b6a3-ea263a78f22e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -12998,40 +13628,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "789bc750-1b58-468d-9437-8da2a4d88ce0" ], + "x-ms-request-id": [ "a78221cd-d217-4f25-847e-1ad2926a530a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3be694ab-832e-48c3-a20c-3ead26b034e0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003202Z:3be694ab-832e-48c3-a20c-3ead26b034e0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "15fff802-5199-43ea-8e16-03523af52c08" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021838Z:15fff802-5199-43ea-8e16-03523af52c08" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 662EE3065FAA44A19D863DD2BE6B4854 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 68DBF9EA40094F73A9AA1F35092999BC Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+27": { + "New-AzFunctionApp+[NoContext]+Create v4 Windows Custom Function App hosted in a Premium plan.+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+28": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-CustomHandlernb8m23gkpj?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-CustomHandlermjvy1eso2u?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "457" ], - "x-ms-client-request-id": [ "11b064f9-c0cd-4b13-adee-aeddb703e7f2" ], + "x-ms-unique-id": [ "827" ], + "x-ms-client-request-id": [ "77d93d3f-cff3-42d9-882e-7ba7545a2841" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -13042,20 +13672,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB7E2253AC0\"" ], + "ETag": [ "\"1DCBE591B3795AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3a3b5510-59d5-4b03-b13c-178c1f50df46" ], + "x-ms-request-id": [ "4741ac39-31fb-4006-a5c5-4602afe908ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8a17313a-2023-4989-a02d-ce5d0b00c122" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bcac1d2d-dd28-4421-a900-c68c6a1705e5" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "07159248-96ee-4e80-8411-d575b89a4816" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003209Z:07159248-96ee-4e80-8411-d575b89a4816" ], + "x-ms-correlation-request-id": [ "0c3b5e3a-720e-43cb-a644-add88c722a57" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021847Z:0c3b5e3a-720e-43cb-a644-add88c722a57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 281D725E043B486A9E0E7A7FB697DA9E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ECABAAE42D1C4D5E92AD3226FC3A5F3A Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -13069,7 +13699,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13084,18 +13714,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20416347-cb93-4680-a158-d8c50e08fc72" ], + "x-ms-request-id": [ "1c50f4af-10ed-4d39-b2a2-6170acf48ce0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/51447855-af2f-4db3-b96d-ece35f8ae1e8" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/b5d0491d-870b-4a83-9827-62de2606d035" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a6cdabfd-43ab-40e1-a723-e74ab1d8c014" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T003210Z:a6cdabfd-43ab-40e1-a723-e74ab1d8c014" ], + "x-ms-correlation-request-id": [ "e2ba38ad-8be0-4e72-872a-a9d7e1472a14" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021847Z:e2ba38ad-8be0-4e72-872a-a9d7e1472a14" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7880CD07CB304C038AF4EB195EA7EE62 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57929953BFFA4D218E22049C92E2BA20 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -13110,7 +13740,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Functions-TestAppName-8qzi5nxbja\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Functions-TestAppName-xwultfe6zj\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -13125,18 +13755,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "27c3b6e9-4af4-4833-a160-ded40e593266" ], + "x-ms-request-id": [ "0dcbffc1-60b2-4dce-9497-48ed2afe6362" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c872acf4-2bbd-4911-ade2-e9a6816bef62" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ee5f1a5d-8927-4dcf-a9a0-3349efffb8d7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a243134d-0e11-4509-a3d5-e4f528fda3c9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003211Z:a243134d-0e11-4509-a3d5-e4f528fda3c9" ], + "x-ms-correlation-request-id": [ "9446d7d8-8f51-4481-8afc-37bdb63902f4" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021848Z:9446d7d8-8f51-4481-8afc-37bdb63902f4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABC913FD5A1A4B0EAA3983570B50F6C1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DD834B045554B4AA143852E54861030 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json b/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json index ca808460dcc0..801de986384c 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionAppPlan.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "460" ], - "x-ms-client-request-id": [ "9988e3b6-e650-46a7-95c0-98b2d3244f77" ], + "x-ms-unique-id": [ "830" ], + "x-ms-client-request-id": [ "d3202979-4529-413e-80e3-f01e81c4c2c5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9bc574f0-8101-4011-9e3d-dd548a044d56" ], + "x-ms-request-id": [ "e182ec2d-6d54-437a-94bf-23dffcb196ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/3182b603-9a59-4a16-8c58-7070ac558304" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/18e44c28-9640-49bd-a2cc-fe2284b15b33" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "899bc4dd-b4e6-43b5-aa5d-d60492cfc293" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T003212Z:899bc4dd-b4e6-43b5-aa5d-d60492cfc293" ], + "x-ms-correlation-request-id": [ "9dfe3d56-72b8-4036-967b-9588c16bbe97" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T021848Z:9dfe3d56-72b8-4036-967b-9588c16bbe97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7F56A3883BB47F79FB985E8B74E794C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 598625C5AB424538943D66F98E2090D9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -45,10 +45,10 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 10,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -63,44 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB7FE2CEDEB" ], + "ETag": [ "1DCBE593791AE95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "169ddbe0-8033-437d-a826-68bc858dabe2" ], + "x-ms-request-id": [ "6506a803-ba60-43e2-8b3c-bb7c5182fba7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8c52dda-ddd9-428a-80f5-3d71996e54e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1b0315aa-35b2-4768-9b12-92efbd62e06d" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "15fa424c-2cff-4832-ae67-b1a7fa22a76a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003215Z:15fa424c-2cff-4832-ae67-b1a7fa22a76a" ], + "x-ms-correlation-request-id": [ "10c3e834-374f-4bbd-a394-3f817c0d1573" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021851Z:10c3e834-374f-4bbd-a394-3f817c0d1573" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A81BF7A864474F39B4CE09ACB4548D0F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CF42868B5E6C4ED3B7F33D31DE58B396 Ref B: MWH011020809062 Ref C: 2026-03-28T02:18:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:18:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1902" ], + "Content-Length": [ "1897" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj\",\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":123843,\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123843\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T02:18:49.87\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "462" ], - "x-ms-client-request-id": [ "0749cd19-d3ac-4ccc-9aa9-be669dca2875" ], + "x-ms-unique-id": [ "832" ], + "x-ms-client-request-id": [ "ede0c4d1-a47d-4768-b1b7-056dcaa9f718" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0444b34d-201e-4228-8538-72a75abd37b1" ], + "x-ms-request-id": [ "fb6fe475-2076-4199-8aea-8ce41e31b2b1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f663d9e9-21b0-4fd9-85d9-c32d86ec5a3a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:f663d9e9-21b0-4fd9-85d9-c32d86ec5a3a" ], + "x-ms-correlation-request-id": [ "3f2c2588-bd3e-4afc-a4af-7f1ebd614fbe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021921Z:3f2c2588-bd3e-4afc-a4af-7f1ebd614fbe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9EAE9A388764FE187888EAC1E87B692 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 839B1C4D88C844869F18B7C771270FB6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1813" ], + "Content-Length": [ "1808" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj\",\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123843,\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123843\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:18:49.87\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "463" ], - "x-ms-client-request-id": [ "0749cd19-d3ac-4ccc-9aa9-be669dca2875" ], + "x-ms-unique-id": [ "833" ], + "x-ms-client-request-id": [ "ede0c4d1-a47d-4768-b1b7-056dcaa9f718" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -156,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e7674bb7-c04b-4a64-9c12-0f6df619a154" ], + "x-ms-request-id": [ "cf820a5b-aac1-4bea-a3d6-f7e9602cff0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8120c4e3-eb8b-4443-94df-f5e4aa0d485e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:8120c4e3-eb8b-4443-94df-f5e4aa0d485e" ], + "x-ms-correlation-request-id": [ "3dcd841b-153b-4c7d-ac68-82d3794b565d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021922Z:3dcd841b-153b-4c7d-ac68-82d3794b565d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 69E0788C22EB45548D72074FC7A9BAF6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6ABFF321497C4C3F91B2F8F8EC040895 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1813" ], + "Content-Length": [ "1808" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj\",\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123843,\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123843\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:18:49.87\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "464" ], - "x-ms-client-request-id": [ "c7f61223-3be8-401d-a7cf-5cfff578a1e2" ], + "x-ms-unique-id": [ "834" ], + "x-ms-client-request-id": [ "cd1c769f-e961-4a61-a950-b0a53a33bca5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -201,40 +201,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0821383-ccaf-481e-b09b-19c56ad56062" ], + "x-ms-request-id": [ "f201d161-b28d-40bf-a573-ffffc783efd7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa090d47-eef9-4529-8c7a-c5c7ab8f0ebb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:aa090d47-eef9-4529-8c7a-c5c7ab8f0ebb" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "57586947-be04-447a-ae18-2703ea7bc61d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021922Z:57586947-be04-447a-ae18-2703ea7bc61d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F2284CBD01994E87AF0B663B0CE013A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1786485FCDA143C083B56291A1CB559E Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:22Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1813" ], + "Content-Length": [ "1808" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj\",\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123843,\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123843\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:18:49.87\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "465" ], - "x-ms-client-request-id": [ "ec965eaf-59ff-4986-9f24-52b28277a5f2" ], + "x-ms-unique-id": [ "835" ], + "x-ms-client-request-id": [ "3bc0e11d-9daf-44a6-942f-cbd5485f8da0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -246,40 +246,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4538bbb-7d3c-41c9-b89c-841f8627e589" ], + "x-ms-request-id": [ "5fde0adc-3e7e-49e1-a047-9179db611142" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "c22a6864-8a01-40d2-8530-eb4767f45d11" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003246Z:c22a6864-8a01-40d2-8530-eb4767f45d11" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "27b99246-e05f-4b6a-ac52-e079ffbc6773" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021923Z:27b99246-e05f-4b6a-ac52-e079ffbc6773" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D7D57D2ADAC41DB9843D22931C49AFC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DF26CB40FE94BEFB680636EBAB9D0E5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1813" ], + "Content-Length": [ "1808" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz\",\"name\":\"Functions-MyPlan-8we2jigcnz\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115032,\"name\":\"Functions-MyPlan-8we2jigcnz\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115032\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:32:13.4533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj\",\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123843,\"name\":\"Functions-MyPlan-9hsqkriuoj\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123843\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:18:49.87\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan+[NoContext]+New-AzFunctionAppPlan -Location supports locations with no spaces, e.g., \u0027centralus\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01+7": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyPlan-8we2jigcnz?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyPlan-9hsqkriuoj?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "466" ], - "x-ms-client-request-id": [ "fe9c1bf4-686c-43ab-85eb-5e4dc01c47f8" ], + "x-ms-unique-id": [ "836" ], + "x-ms-client-request-id": [ "0514144a-d8be-43d9-9b51-20c9bee2660b" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -291,18 +291,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "490b6ff2-8dbe-4610-8458-981153bb4c54" ], + "x-ms-request-id": [ "8e0fff66-fc01-4388-8e06-03f24853fc6b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/056c3d6a-59a3-47de-a4e5-69e3b725e9eb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1325104c-3513-4cf7-9865-642a2eb08250" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "d5d290e8-57af-42fe-80ab-d6979886a157" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003253Z:d5d290e8-57af-42fe-80ab-d6979886a157" ], + "x-ms-correlation-request-id": [ "4c5f50cd-f235-468f-a996-9eca47d43ae6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021929Z:4c5f50cd-f235-468f-a996-9eca47d43ae6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A9EB4365352547CD8DDDF96E2ACE622A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B540321935734C4BAE8B2A4154A70D11 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:28 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json index bedfdde05813..d189d7f5c738 100644 --- a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionApp.Tests.Recording.json @@ -3,7 +3,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest2-kzc5qp78i1\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -18,18 +18,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fe76c39f-5a44-4de9-843e-b57217f04ed9" ], + "x-ms-request-id": [ "4d910d49-39d9-4959-87b4-13c90a991f87" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/19e8503c-d663-4ab9-921d-8052718d027f" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/93581c42-2022-4427-9511-cfd2d32a035a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ad3925f8-5357-4a83-91c2-d93640046687" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T003254Z:ad3925f8-5357-4a83-91c2-d93640046687" ], + "x-ms-correlation-request-id": [ "0c4d39ad-079d-4c93-88a5-7e85a2b4b3bb" ], + "x-ms-routing-request-id": [ "WESTUS:20260328T021930Z:0c4d39ad-079d-4c93-88a5-7e85a2b4b3bb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B749FE2418364E7F8839921358B4921E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB048956C44046909DCB4EAE56689773 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -47,12 +47,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "468" ], - "x-ms-client-request-id": [ "63b64e8b-2afa-46ac-ac87-dedb991f1357" ], + "x-ms-unique-id": [ "838" ], + "x-ms-client-request-id": [ "4b7eb66c-ec19-4048-91ae-af0d57ec7c11" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -63,40 +63,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d79e6e06-c5fb-4dc1-8a81-eb07b92806c7", "40dc1dac-2316-45ad-b3b1-efae8041ca07" ], + "x-ms-original-request-ids": [ "e0c0c48c-1c46-4a83-bb0d-d69e8cca37ee", "ada28b2b-6ae1-4416-8160-a9941cca16ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "95989cc4-a261-4223-ab8f-85b9e80d5735" ], - "x-ms-correlation-request-id": [ "95989cc4-a261-4223-ab8f-85b9e80d5735" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003255Z:95989cc4-a261-4223-ab8f-85b9e80d5735" ], + "x-ms-request-id": [ "4bb8b882-c736-425f-8a28-c8e492df3270" ], + "x-ms-correlation-request-id": [ "4bb8b882-c736-425f-8a28-c8e492df3270" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T021931Z:4bb8b882-c736-425f-8a28-c8e492df3270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F4D1E19F320449E898601EFCE9A14EF8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DB9F8259BC64342A6F61676DB78366A Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "13812" ], + "Content-Length": [ "15444" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "469" ], - "x-ms-client-request-id": [ "c6122d93-5420-4631-bcad-9b31871861a4" ], + "x-ms-unique-id": [ "839" ], + "x-ms-client-request-id": [ "9f35ed47-5681-4507-9020-ad9f6b59df0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -108,40 +108,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "74fb01ea-4101-4c1a-9cb2-787397041a65" ], + "x-ms-request-id": [ "66c6f67e-59f5-4dd9-a7dd-b535a1b49e1a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c6c416a1-662b-41bc-bbb5-248fcd194795" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003255Z:c6c416a1-662b-41bc-bbb5-248fcd194795" ], + "x-ms-correlation-request-id": [ "214bd538-9279-497a-950c-2670d4b0c7b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021931Z:214bd538-9279-497a-950c-2670d4b0c7b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68B7C738E4B74A2A8147FE387C51E866 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:55Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E81E4541D06241B587CC6D556DA1B615 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "470" ], - "x-ms-client-request-id": [ "acc45884-4309-4797-89ef-49f96a4268af" ], + "x-ms-unique-id": [ "840" ], + "x-ms-client-request-id": [ "cc45225e-2d60-42d0-a3b6-6e39b73d4792" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -153,40 +153,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7a100e47-f8ef-496d-87e8-5332bb8ba4f2" ], + "x-ms-request-id": [ "a54c9070-a652-49fd-b941-09dd24bd8875" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dc176e8a-7e84-4da2-8881-be67e8846173" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003255Z:dc176e8a-7e84-4da2-8881-be67e8846173" ], + "x-ms-correlation-request-id": [ "02a10106-8063-479b-861a-7422c0354b91" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021931Z:02a10106-8063-479b-861a-7422c0354b91" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C44568E59774F9586B6E03BC5886CFF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:55Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9C3281D54C8E44F49E698D2080272E00 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "471" ], - "x-ms-client-request-id": [ "71bd5d38-c2fa-4d71-93f6-7a58e041b5bd" ], + "x-ms-unique-id": [ "841" ], + "x-ms-client-request-id": [ "7d5ecd0d-e24e-4f68-9c88-4cad8f83aa07" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -198,40 +198,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "493bf466-f6e5-4d1e-a539-f2f323f65514" ], + "x-ms-request-id": [ "62bf55eb-ffee-4c40-8d4e-be7b3e78bf36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "05d6339e-2a0f-4f9d-a533-33e4a47ca132" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:05d6339e-2a0f-4f9d-a533-33e4a47ca132" ], + "x-ms-correlation-request-id": [ "d960c693-b46f-4d10-a2f8-dd0146039aa5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021932Z:d960c693-b46f-4d10-a2f8-dd0146039aa5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7FFFBA64B1534453A0C94F537796B6C9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9D15DD29E65F4EA58FB7D375F1BB6B48 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+6": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "472" ], - "x-ms-client-request-id": [ "383057d8-9fa7-4925-84d9-3df3658df25f" ], + "x-ms-unique-id": [ "842" ], + "x-ms-client-request-id": [ "8e0124fb-5a08-4e7a-8986-376e147324d5" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -243,40 +243,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8a400309-6f43-48fa-a18b-27f9cfa9dde1" ], + "x-ms-request-id": [ "d5bb58cd-541f-484b-847b-5d6fbdbe603a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "454b9342-ac48-484f-ad74-a6861d53a362" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:454b9342-ac48-484f-ad74-a6861d53a362" ], + "x-ms-correlation-request-id": [ "55a2bc8b-6a47-46e5-acc7-d89f68c4a3e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021932Z:55a2bc8b-6a47-46e5-acc7-d89f68c4a3e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 831882E78501480588337A17F4849CE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D1E2C582B36B47839E7DE0881B9B098D Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "473" ], - "x-ms-client-request-id": [ "53f77016-b13c-4776-98a5-1370d62286e2" ], + "x-ms-unique-id": [ "843" ], + "x-ms-client-request-id": [ "705c1cf5-d404-4076-bea0-5f5f16c9fc3f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -288,40 +288,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "19747c05-e462-4d5f-8a5b-bee49bea547f" ], + "x-ms-request-id": [ "1abfb30f-34db-45ef-b787-46ffbdcd7623" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b0d66eff-8887-4d70-8637-fc6e45e3f6e7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:b0d66eff-8887-4d70-8637-fc6e45e3f6e7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "79797788-50a5-484f-813c-108b41a3e033" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021932Z:79797788-50a5-484f-813c-108b41a3e033" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B00B6A9FF3624657868AD3437D8D2E43 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0AB60740A1D34441B7A6A3B8ECC60E8F Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1742" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "474" ], - "x-ms-client-request-id": [ "b2ea0f7c-cea4-4bf8-9563-1be36404acff" ], + "x-ms-unique-id": [ "844" ], + "x-ms-client-request-id": [ "33498bfa-bb54-461c-acfa-b0adce136337" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -333,40 +333,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4b6cf6cd-a67e-42fe-85c9-3a5fa2f6189a" ], + "x-ms-request-id": [ "1f5db2ad-fe1a-45b8-8fdd-921701c023f2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cdb425db-b773-4af3-80d2-3f5a91ebf46d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:cdb425db-b773-4af3-80d2-3f5a91ebf46d" ], + "x-ms-correlation-request-id": [ "02cd22db-de11-4d7d-baf2-3d7c62855a60" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021932Z:02cd22db-de11-4d7d-baf2-3d7c62855a60" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DFE53474858744F7AAFE39323AE19AA6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C71AEB0E54441E3925AA74703CA7D74 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "475" ], - "x-ms-client-request-id": [ "84049f02-dfc0-4d47-ba71-a09b26306f04" ], + "x-ms-unique-id": [ "845" ], + "x-ms-client-request-id": [ "9819eaa0-0ebe-4dd1-9e52-dab8ac28a34b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -378,40 +378,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec3c9170-ab37-4d40-8114-0c4fc581b9cf" ], + "x-ms-request-id": [ "769fd141-f534-4353-ae6a-088f94814529" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "e9a65f95-e081-4a9a-8af4-00ec3bbae1cf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003256Z:e9a65f95-e081-4a9a-8af4-00ec3bbae1cf" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "f6ee0e48-a90d-4967-b35b-1fdfe96b4e5d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021932Z:f6ee0e48-a90d-4967-b35b-1fdfe96b4e5d" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 26D2A3ADF68947458F88A9A749310AA0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1823" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "846" ], + "x-ms-client-request-id": [ "b4bf096c-bf5e-46eb-8574-ad5de85c7303" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "8b373f9d-2030-410e-a53d-7009bf4d690e" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b9dd558c-03d5-4213-a8ed-7b22c41fe447" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021933Z:b9dd558c-03d5-4213-a8ed-7b22c41fe447" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 52216FFEC910493DA0016099E2E0BB35 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:56Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 208D92E033BC44D285922993BB40A670 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "476" ], - "x-ms-client-request-id": [ "298b7729-4fee-43e6-b421-9d41f586deb4" ], + "x-ms-unique-id": [ "847" ], + "x-ms-client-request-id": [ "65f0e1ac-7fe3-4ab1-b3f5-7fc6de8eab91" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -423,40 +468,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "66b86424-2f03-489e-8dba-8812f63bc44f" ], + "x-ms-request-id": [ "731ba1c0-3544-4a37-8921-14a26a9692c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c0c7c3b3-9977-48ef-86ab-299012414b11" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T003257Z:c0c7c3b3-9977-48ef-86ab-299012414b11" ], + "x-ms-correlation-request-id": [ "0cb14cff-552d-4132-a5b7-f1a68086dcf8" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T021933Z:0cb14cff-552d-4132-a5b7-f1a68086dcf8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6F688CFED5F340D3A5609FDD7EBA9438 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3361FA152AD1409E939A0F30C1709ACB Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "477" ], - "x-ms-client-request-id": [ "633fc5c6-1ab4-4ff7-8a3f-5ce93e0452df" ], + "x-ms-unique-id": [ "848" ], + "x-ms-client-request-id": [ "dae2cdd8-4b15-4e71-884c-f1e601c4a902" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -467,40 +512,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "2daca4d7-e764-49c7-a441-03ad3a17dcbb", "4df57745-c872-496e-b231-30b2782562e1", "0733c271-e1f2-4e55-aff6-2783e2df2b83" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "48577074-60f2-451c-a486-32307a72191f" ], - "x-ms-correlation-request-id": [ "48577074-60f2-451c-a486-32307a72191f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003258Z:48577074-60f2-451c-a486-32307a72191f" ], + "x-ms-original-request-ids": [ "5cdcc12d-7d95-468d-8b8a-99c458a939d4", "2ba7a6d5-c7d3-45e3-b191-3c764aaad413", "caacb3ca-e8db-42c6-86f0-0d84e7e0edd2" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "a8684401-c107-473d-a230-5eda53f123fe" ], + "x-ms-correlation-request-id": [ "a8684401-c107-473d-a230-5eda53f123fe" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T021934Z:a8684401-c107-473d-a230-5eda53f123fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5CC4FFF488A445B39B0A912AE11F775C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1D17CFE2CA67434AB85A01E16494C3D4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "478" ], - "x-ms-client-request-id": [ "1e9c52d6-82a9-41ab-8458-1f855f8a0fea" ], + "x-ms-unique-id": [ "849" ], + "x-ms-client-request-id": [ "5215a9eb-a191-41ef-b3a1-3d169b029fb3" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -511,16 +556,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "97a6866e-91f9-426f-bea6-836e65d7567b" ], + "x-ms-request-id": [ "93bd4c12-7763-494e-822b-24609fde3ebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/726f1fb4-2dc0-4351-9803-eb035d997d6e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/592a5c75-3bb4-42c0-8acc-bbddabba98f0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3f7ce8a9-de6d-4b8a-9dac-5f2abe93b712" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003258Z:3f7ce8a9-de6d-4b8a-9dac-5f2abe93b712" ], + "x-ms-correlation-request-id": [ "639c1fa1-2b4b-410a-a8be-49f99aa89a54" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021934Z:639c1fa1-2b4b-410a-a8be-49f99aa89a54" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3086D9CA19AD4E78AF026BAD359FB546 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:32:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 26C31486EBD848CBA5B28412F04F4E29 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -531,10 +576,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2015-05-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2015-05-01+14": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -554,30 +599,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3367a44-aaa1-4d33-a3e0-62150feddd3a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "9ddeedd2-5fda-4ce6-bd83-dbe149eb7138" ], - "x-ms-correlation-request-id": [ "9ddeedd2-5fda-4ce6-bd83-dbe149eb7138" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003303Z:9ddeedd2-5fda-4ce6-bd83-dbe149eb7138" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da8d9066-b208-49ae-a707-b3cf2a83417d" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "b99898ff-6627-4803-aaf6-2b3e6a1b0f1b" ], + "x-ms-correlation-request-id": [ "b99898ff-6627-4803-aaf6-2b3e6a1b0f1b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T021940Z:b99898ff-6627-4803-aaf6-2b3e6a1b0f1b" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9F8B74F747D74D9EA89A26BC47A343DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:32:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:33:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 062AD947EE0D435D83A8F1DD1246A694 Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:19:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20219c3-0000-0300-0000-69c47ebf0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"name\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"AppId\": \"7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"295fea1a-27da-4d04-a804-04fdcf16c498\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest2-e5279qnwbr\",\r\n \"CreationDate\": \"2026-03-26T00:32:58.8231307+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-e5279qnwbr_7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-e5279qnwbr-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6e031933-0000-0300-0000-69c73abc0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest2-kzc5qp78i1\",\r\n \"name\": \"Func-PowerShell-NewTest2-kzc5qp78i1\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest2-kzc5qp78i1\",\r\n \"AppId\": \"2c857951-8ea7-47d9-b07f-5e3d51068500\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e1c2db59-c2e9-4a8f-a7b8-bf063ff35624\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest2-kzc5qp78i1\",\r\n \"CreationDate\": \"2026-03-28T02:19:35.2993022+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-kzc5qp78i1_2c857951-8ea7-47d9-b07f-5e3d51068500_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-kzc5qp78i1-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-e5279qnwbr\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-kzc5qp78i1\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -591,43 +636,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB81D490000\"" ], + "ETag": [ "\"1DCBE5956E42CF5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e212194-ad5f-477e-8932-c11cb3e42367" ], + "x-ms-request-id": [ "d88c81cc-75c2-4fbd-a614-befb9ecc06ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7652ca31-2080-44ba-8d0a-e1c0e4854db6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7323e675-6f3e-434d-8028-482f5450aab9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "2573963e-2569-4732-91ce-6b0fdc67e39a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003346Z:2573963e-2569-4732-91ce-6b0fdc67e39a" ], + "x-ms-correlation-request-id": [ "9ea4d2a5-c428-4bb3-9029-d46face88bb1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022023Z:9ea4d2a5-c428-4bb3-9029-d46face88bb1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 942B7B9991654433B0999473752A1F3C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:33:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:33:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A49D30BB8C24199BC5843AA0F9F1C9D Ref B: MWH011020809062 Ref C: 2026-03-28T02:19:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8581" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:05.9\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:19:42.25\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "481" ], - "x-ms-client-request-id": [ "8fe867cd-8c34-4bde-bbf1-31e46e964ee0" ], + "x-ms-unique-id": [ "852" ], + "x-ms-client-request-id": [ "08b844b1-3f75-476c-b79d-78bfa0531cb0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -637,42 +682,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB834E06DC0" ], + "ETag": [ "1DCBE596E54F2E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ea56d55-ed18-4a0a-a262-09db23b572bb" ], + "x-ms-request-id": [ "782da3cf-88f0-45d6-b898-f539ff470bf9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f07be074-1abc-40ff-9316-6799a03306b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003417Z:f07be074-1abc-40ff-9316-6799a03306b7" ], + "x-ms-correlation-request-id": [ "57444e96-4317-45ac-8504-7c4b949007cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022053Z:57444e96-4317-45ac-8504-7c4b949007cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DB8FAA8FE2764100A94366F8AC89CE64 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:16Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C55E5D950D9B4D42A6FBA71F8BE3B29C Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:46.14\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:20:22.67\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "482" ], - "x-ms-client-request-id": [ "1523d3c1-d2c9-4966-9a6c-765900b6b4cf" ], + "x-ms-unique-id": [ "853" ], + "x-ms-client-request-id": [ "fc666d80-aacd-41ab-8347-d6f7b87578ce" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -683,42 +728,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB834E06DC0" ], + "ETag": [ "1DCBE596E54F2E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "38cc78e2-7732-4062-b8ee-19d52f801fb8" ], + "x-ms-request-id": [ "f864ab82-a443-4fa8-b23d-bcb77a3c1749" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "09c3aa99-9bf0-4cf5-b35e-0e4a3fc98f39" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003419Z:09c3aa99-9bf0-4cf5-b35e-0e4a3fc98f39" ], + "x-ms-correlation-request-id": [ "957f99cf-e95d-47f8-9827-ecf2cf974d18" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022056Z:957f99cf-e95d-47f8-9827-ecf2cf974d18" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 144B15C0940C4CD59F275E4D4E52AFB2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 20B4DEFB0631415E9DB459CDB0668D83 Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:46.14\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:20:22.67\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+17": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "483" ], - "x-ms-client-request-id": [ "cb856497-f358-429e-b305-6bc0f05b66ea" ], + "x-ms-unique-id": [ "854" ], + "x-ms-client-request-id": [ "9bbcbd4e-14a7-4c49-8d26-cf700d09c00f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -730,40 +775,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b81f88e8-3571-4bff-9907-dcdb0b08fa7d" ], + "x-ms-request-id": [ "895fbdf5-daab-4cdb-9a80-6b22c1a39228" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/deca9ec3-d46c-4d03-b8bc-0b305c30aa56" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bca1d105-22a9-4ee5-b61f-353a5146544f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e2f5b5c8-c49d-4984-82cf-ccec81b2e92e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003419Z:e2f5b5c8-c49d-4984-82cf-ccec81b2e92e" ], + "x-ms-correlation-request-id": [ "7992e2c3-0966-4607-ac42-2605e4ea2e01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022056Z:7992e2c3-0966-4607-ac42-2605e4ea2e01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C827191855DA4252873655A98E76744B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3738C2AA0E0043CB9D8EDD67FD2FAFF4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-kzc5qp78i1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "484" ], - "x-ms-client-request-id": [ "6eec54bb-89e1-4868-8e90-8d66a71c836f" ], + "x-ms-unique-id": [ "855" ], + "x-ms-client-request-id": [ "ad6a9e23-6535-4deb-a515-f6b69314e421" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -775,41 +820,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f83cf488-b93b-4b8e-aa8d-7b949d58ae8c" ], + "x-ms-request-id": [ "b2e040e1-c427-42b6-8634-05d95b4a6a4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9e225dc3-0a20-4c68-8a8f-de9664238b26" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c92bb148-5ef1-42e9-b773-08f4fec4e35e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "838efea7-07a1-49b2-ad59-8695c34bf5c4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003419Z:838efea7-07a1-49b2-ad59-8695c34bf5c4" ], + "x-ms-correlation-request-id": [ "3e11043e-0bb4-4234-8152-4b6f2e51602a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022056Z:3e11043e-0bb4-4234-8152-4b6f2e51602a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61AC720F8F1746AAA7705E5B1C1AD9AB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8451B4585DDF452B87816C45ECC94D5D Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "485" ], - "x-ms-client-request-id": [ "3c21be46-d42e-4b82-b800-d82a1cc338c1" ], + "x-ms-unique-id": [ "856" ], + "x-ms-client-request-id": [ "a8bfdbde-0a88-466b-a2d3-3c6888316ed4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -820,42 +865,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB834E06DC0" ], + "ETag": [ "1DCBE596E54F2E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9875e3a-1587-4df4-b0af-a0f65383587c" ], + "x-ms-request-id": [ "fc8e34f9-5af6-4ce5-90f7-f471c6fcd119" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "d01a0565-ae51-4a2e-8cf4-8596de2d84e8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003420Z:d01a0565-ae51-4a2e-8cf4-8596de2d84e8" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "af7aa38a-1b19-42f3-af41-0d1ddca4af41" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022057Z:af7aa38a-1b19-42f3-af41-0d1ddca4af41" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F3E8791EEE634B44A45724A2A9EDB6B0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90307415606C468E92F625EB1699B0EF Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8377" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:33:46.14\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:20:22.67\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01+21": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "486" ], - "x-ms-client-request-id": [ "c067c9ed-4c8e-4b91-91b9-0b629e92a5a1" ], + "x-ms-unique-id": [ "857" ], + "x-ms-client-request-id": [ "003cc237-8620-4fb9-9319-466ad8e6238e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -867,40 +912,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bd956cf2-ddb5-4040-8bc6-3374aaec200e" ], + "x-ms-request-id": [ "ab99b5a4-1eb3-465e-a5bc-c206e71bef95" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14c5864d-ac15-4f83-9399-41b66fd671dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/229eaeca-7a26-4429-b316-1c4a94d2fe63" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "589b4710-f873-4512-9305-7a4932dc2800" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003420Z:589b4710-f873-4512-9305-7a4932dc2800" ], + "x-ms-correlation-request-id": [ "62be8cfd-e961-439b-be61-71379e23b57d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022058Z:62be8cfd-e961-439b-be61-71379e23b57d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 559D1C13295C468BA7127208C2F44C48 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F3D8F70409E418A8BF64B461D87DB64 Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-kzc5qp78i1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "487" ], - "x-ms-client-request-id": [ "48473110-9f16-4ed1-9e52-33efb9190c06" ], + "x-ms-unique-id": [ "858" ], + "x-ms-client-request-id": [ "6e46761e-a52a-4526-ad26-7ed0f4f21583" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -912,41 +957,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "58c3a2ac-739f-4318-b3ed-52adb8d6cb03" ], + "x-ms-request-id": [ "33268819-48b9-4bf4-a758-f5af2c0f3b36" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/51f607d9-4c6a-4fae-9f24-175e92e401a3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "24579b98-5bad-4890-aaa1-ffacd50942c2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003420Z:24579b98-5bad-4890-aaa1-ffacd50942c2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/17710ce8-2d14-4395-91ef-95d3e67eb73e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "13dc7c16-be9b-431d-9d11-6ab6cda0f3ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022058Z:13dc7c16-be9b-431d-9d11-6ab6cda0f3ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 523CD63CD1544132A100A205ED74A607 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BD6BFBB0CFE4C2289682AFF449BF4C6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "488" ], - "x-ms-client-request-id": [ "720b4351-fbf2-4546-be89-f30ef1d76859" ], + "x-ms-unique-id": [ "859" ], + "x-ms-client-request-id": [ "12347d21-04cb-4661-b077-77467f703e35" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -958,40 +1003,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce94f602-1ff6-4932-8ce8-486b4b0aeb28" ], + "x-ms-request-id": [ "805d8152-2b31-4e64-ae7d-f608695dc097" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "35cff655-06e9-41b6-b0b2-6c688feecd42" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003421Z:35cff655-06e9-41b6-b0b2-6c688feecd42" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "0c4d5e15-31de-4053-a377-b54056792dbc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022058Z:0c4d5e15-31de-4053-a377-b54056792dbc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73F3663DE0044E188DE1C9C37FD8F593 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BDCE5ABDA8B04CA5A6DB31CF0E3C346E Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "489" ], - "x-ms-client-request-id": [ "e022bc67-8baa-4550-9e77-92861ded0d02" ], + "x-ms-unique-id": [ "860" ], + "x-ms-client-request-id": [ "48f5ec57-4709-458d-90a1-65faa41954a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1003,32 +1048,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3623d837-06a9-409f-b56d-7440b0cc2d67" ], + "x-ms-request-id": [ "5ec92bf3-a7f6-43ef-a619-b822cbbdeeb2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/685a3f92-4492-4689-86fc-f37e51685302" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/babcc8f2-b91a-4a2a-9328-e2b807ee495d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7870f48b-0f52-4d8c-9a3a-33ee91191ca4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003421Z:7870f48b-0f52-4d8c-9a3a-33ee91191ca4" ], + "x-ms-correlation-request-id": [ "7868037d-4894-4fc8-b38e-a6ac9e247662" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022059Z:7868037d-4894-4fc8-b38e-a6ac9e247662" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D3F1E7AC4F44E629B97B569ACB37006 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2EB4797FC3C4D2C9E98F56FBF782A80 Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:20:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-kzc5qp78i1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+25": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-e5279qnwbr\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest2-kzc5qp78i1\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1042,43 +1087,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB834E06DC0\"" ], + "ETag": [ "\"1DCBE596E54F2E0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "507adfac-7fa9-4b9d-afb3-989d6244ee39" ], + "x-ms-request-id": [ "7ba0077b-d8c3-4ebe-bf5f-6762f381ce12" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f36a0d6d-0ee9-4e05-992b-495340ba83b4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4db42fd9-faaa-4990-a1f5-29a0d4a14647" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4f0fb3d3-7237-4af2-a5d6-577e96f8deea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003424Z:4f0fb3d3-7237-4af2-a5d6-577e96f8deea" ], + "x-ms-correlation-request-id": [ "76b53dd4-161f-48f5-8c49-5bd8c9ce7c8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022102Z:76b53dd4-161f-48f5-8c49-5bd8c9ce7c8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3423802F795D474D8E551B23ADBF773C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4BAAA3CA6D3416CB3D5BB938BFB6101 Ref B: MWH011020809062 Ref C: 2026-03-28T02:20:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8726" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:21:01.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9a177cd6-60ab-4002-b7a7-d8c0aa60247f\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "491" ], - "x-ms-client-request-id": [ "7ff80db1-20d6-4ef1-9554-d20c16ce3a3d" ], + "x-ms-unique-id": [ "862" ], + "x-ms-client-request-id": [ "4f0cd031-3e28-4f1b-8930-a531722b5419" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1088,42 +1133,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB84B7886EB" ], + "ETag": [ "1DCBE59859978AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5c3aa27d-713f-40ff-8893-7f67ba32bdbc" ], + "x-ms-request-id": [ "95f55fdf-ed1f-4c19-ac00-a30c8f73bfe8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0f6e692e-0bc4-4732-be8a-2b43a19eb559" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003455Z:0f6e692e-0bc4-4732-be8a-2b43a19eb559" ], + "x-ms-correlation-request-id": [ "d469054c-3708-42ab-a6e0-828db51150fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022133Z:d469054c-3708-42ab-a6e0-828db51150fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5C26E8C4FC048C18A7A9D18F615BB66 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:55Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6E9D19076AA4DAF8E874CD643CFB946 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:21:01.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9a177cd6-60ab-4002-b7a7-d8c0aa60247f\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "492" ], - "x-ms-client-request-id": [ "bd2845bd-2012-4c9c-89b1-052747acb309" ], + "x-ms-unique-id": [ "863" ], + "x-ms-client-request-id": [ "894b7b55-a737-431e-ade8-67a53dba9077" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1134,42 +1179,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB84B7886EB" ], + "ETag": [ "1DCBE59859978AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e0634cf-3819-4c32-8b21-a854d293d5e8" ], + "x-ms-request-id": [ "fe67ff27-6666-46e5-b7b7-dcfb242807a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8803e1cd-37fb-4cb0-9fce-6ea43f7176e9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003457Z:8803e1cd-37fb-4cb0-9fce-6ea43f7176e9" ], + "x-ms-correlation-request-id": [ "d0cf5ea6-4a77-442a-811f-406fc0679e99" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022136Z:d0cf5ea6-4a77-442a-811f-406fc0679e99" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 025D1E6C9CAE47698BAED014DAD7A0B3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56F83DF2CA11493484657AC90FC176A0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:21:01.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9a177cd6-60ab-4002-b7a7-d8c0aa60247f\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01+28": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "493" ], - "x-ms-client-request-id": [ "39397886-64aa-4efc-b3e4-3f9ff590c242" ], + "x-ms-unique-id": [ "864" ], + "x-ms-client-request-id": [ "8e4caca4-e229-4817-9314-f719c533d108" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1181,40 +1226,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "81c06ecb-b7ad-4571-b166-bc4607a05c2c" ], + "x-ms-request-id": [ "f4297568-3ed5-4807-9587-9911dcd54499" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/58695c63-27aa-4f05-816d-d40c864ec37e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97b5f090-f012-46cd-a6a9-64905dd8eb67" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "af0adb66-1f8e-443b-8e67-1244fcb66a21" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003457Z:af0adb66-1f8e-443b-8e67-1244fcb66a21" ], + "x-ms-correlation-request-id": [ "dfc37aeb-f4ab-4595-ac10-1c17aacefd8f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022136Z:dfc37aeb-f4ab-4595-ac10-1c17aacefd8f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 191923E7A4AF49269638B28B633494F4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3515C14635EF4D14B3CED455635D242D Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-kzc5qp78i1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "494" ], - "x-ms-client-request-id": [ "abfac8ed-0615-4b48-b9bb-08be3cb68ccd" ], + "x-ms-unique-id": [ "865" ], + "x-ms-client-request-id": [ "03481419-6cc7-4e27-9f7a-b37d7d221d4c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1226,41 +1271,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ec8978a1-da5c-4cfe-8c25-6b06ef311140" ], + "x-ms-request-id": [ "1b28795f-bb21-4a7b-b825-1a2e6f21e6a2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5753e8b0-ef81-48d9-97ea-016273804864" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5c2d9c0e-de48-4036-bbb4-2f363eaf8de8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f297136c-cc01-4110-9a66-59f484773102" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:f297136c-cc01-4110-9a66-59f484773102" ], + "x-ms-correlation-request-id": [ "a7b2ce43-d65a-4eac-8334-55cb634d46be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022136Z:a7b2ce43-d65a-4eac-8334-55cb634d46be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A48999E25EB8424F84D6947CFD79D5D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:57Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D27ACB34449B46D696AD39A317CCDE63 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88197,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94761,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "495" ], - "x-ms-client-request-id": [ "ee12be74-a687-49f2-ba9e-65366442e9f3" ], + "x-ms-unique-id": [ "866" ], + "x-ms-client-request-id": [ "ab2f1067-3d5e-4dab-a684-f4f6f57c2c3d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1271,42 +1316,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB84B7886EB" ], + "ETag": [ "1DCBE59859978AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b441291e-7826-4ff5-83a9-56864dbf18cc" ], + "x-ms-request-id": [ "08a26e3b-7554-437c-a72d-f9f57413e37e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5765a618-4cda-49ec-897e-1713226ad633" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:5765a618-4cda-49ec-897e-1713226ad633" ], + "x-ms-correlation-request-id": [ "6d7c892c-af3f-4009-99ee-1da40343dbb7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022137Z:6d7c892c-af3f-4009-99ee-1da40343dbb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A8DEB757C8F4E12A8320E4186DACB2F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71528D96111F4BA492FF74511EC5D411 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8522" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest2-e5279qnwbr\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-e5279qnwbr.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:34:24.0466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest2-e5279qnwbr\\\\$Func-PowerShell-NewTest2-e5279qnwbr\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest2-e5279qnwbr.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"b693bb2d-9167-434f-a0d1-4b47242142fc\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest2-kzc5qp78i1\",\"repositorySiteName\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest2-kzc5qp78i1.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:21:01.7066667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest2-kzc5qp78i1\\\\$Func-PowerShell-NewTest2-kzc5qp78i1\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest2-kzc5qp78i1.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"9a177cd6-60ab-4002-b7a7-d8c0aa60247f\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01+31": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "496" ], - "x-ms-client-request-id": [ "27d3acff-ba64-45f5-905e-45c86cc0f0ff" ], + "x-ms-unique-id": [ "867" ], + "x-ms-client-request-id": [ "907c1d5b-2414-46db-a91d-559558361041" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1318,40 +1363,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9c78e7d-e311-49a6-b061-d027a8e7974e" ], + "x-ms-request-id": [ "514548f7-91ec-44dc-8e4f-9a448d9260c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9b716fb9-b88b-410e-b5b1-ee2f8e106e25" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7cfcf1dc-e7d1-476c-beae-3e7121712468" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ad17df08-7db3-49ca-9aa0-8aed5c59b224" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:ad17df08-7db3-49ca-9aa0-8aed5c59b224" ], + "x-ms-correlation-request-id": [ "74895e55-50fd-4434-a594-07d2d8f90328" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022137Z:74895e55-50fd-4434-a594-07d2d8f90328" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A3E509F113B74942A725B9EBF3E0CD80 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C16E94CE16DF4BFDA8F777C60F377A4D Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-e5279qnwbr\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest2-kzc5qp78i1\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "497" ], - "x-ms-client-request-id": [ "43c8633f-c532-4797-96e2-f2be0b4bbf7d" ], + "x-ms-unique-id": [ "868" ], + "x-ms-client-request-id": [ "183ec2cb-7e62-469b-a7dc-f5ba6ff529b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1363,41 +1408,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "54331cb2-ccbd-4fcb-8c7c-b38e7d5353fb" ], + "x-ms-request-id": [ "6a44e9eb-c325-418f-ad4d-f4ab1a671616" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/91fac556-46c5-42d9-a25d-65e0e4d0baf7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/709b461c-aef2-4bc1-b7ee-8e352d48e6c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1f6deec5-c309-4afe-801a-6fd4a1c4ae51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:1f6deec5-c309-4afe-801a-6fd4a1c4ae51" ], + "x-ms-correlation-request-id": [ "3ded53b2-5d5a-4a14-a604-a64e7a604512" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022137Z:3ded53b2-5d5a-4a14-a604-a64e7a604512" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E45F686283A44FBCAE7378CE1B58D111 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9DF71650EB349F29FCDFEF68675EC38 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr/config/web\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88197,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1/config/web\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94761,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "498" ], - "x-ms-client-request-id": [ "92f536ae-af5f-49f6-8a31-bd344bee66ca" ], + "x-ms-unique-id": [ "869" ], + "x-ms-client-request-id": [ "76f7cc64-0997-4609-bb2d-74f611170923" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1409,40 +1454,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "41f3821b-73e4-406b-b3d1-233b263329fd" ], + "x-ms-request-id": [ "d1562216-b969-4068-87ad-2552e7b3fc43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "891591fe-48b9-4400-8abe-2d96ae7872d9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003458Z:891591fe-48b9-4400-8abe-2d96ae7872d9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "107abbdc-9688-4d24-bc2b-4c65b5584b3f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022138Z:107abbdc-9688-4d24-bc2b-4c65b5584b3f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C690C9710B649029F7E0E6C42D31FAB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:58Z" ], - "Date": [ "Thu, 26 Mar 2026 00:34:58 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 51E454A7D9184D6AB0BAE85DEC689B8B Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+34": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "499" ], - "x-ms-client-request-id": [ "09d9211f-faab-4553-bb8a-01628f5a8475" ], + "x-ms-unique-id": [ "870" ], + "x-ms-client-request-id": [ "4c20875a-629b-4af9-ac08-fd918a6d05e1" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1453,20 +1498,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB84B7886EB\"" ], + "ETag": [ "\"1DCBE59859978AB\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f7a7a6f4-11d1-4b6a-a154-7bfa1ad6b59a" ], + "x-ms-request-id": [ "29bfeae3-ef79-4080-8e9d-fd3d3372e94a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f593a02c-10d2-488c-b928-149e82a292d6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96b44b5b-02d6-4bc2-98d4-be7285f2dc41" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "a60e216b-34b0-49ea-8f40-93f438394c5a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:a60e216b-34b0-49ea-8f40-93f438394c5a" ], + "x-ms-correlation-request-id": [ "e0174315-6d7b-47ef-ae95-dfcc50273212" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022146Z:e0174315-6d7b-47ef-ae95-dfcc50273212" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 671B0CBF1AF94363B46055FAB74111A0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:34:59Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BC1E3AD56AEC4E22A571E541864C85BB Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1476,19 +1521,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+35": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "500" ], - "x-ms-client-request-id": [ "1d824e57-e148-428f-b926-bff09133024c" ], + "x-ms-unique-id": [ "871" ], + "x-ms-client-request-id": [ "ebf92b31-650d-4527-ae1e-2219a7d21df2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1500,37 +1545,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "553b3ed5-6417-43a2-b050-edd2195c5728" ], - "x-ms-correlation-request-id": [ "553b3ed5-6417-43a2-b050-edd2195c5728" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:553b3ed5-6417-43a2-b050-edd2195c5728" ], + "x-ms-request-id": [ "6fb42283-1238-4b39-860e-f28388129a06" ], + "x-ms-correlation-request-id": [ "6fb42283-1238-4b39-860e-f28388129a06" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022146Z:6fb42283-1238-4b39-860e-f28388129a06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8A8BC2DCF9F440DB5C965890104669E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:07Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CB9C299D179B48ED9BF4BAE32EF7ED3D Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionApp -AsJob, Update-AzFunctionApp -AsJob and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "501" ], - "x-ms-client-request-id": [ "7d4566e6-2121-4822-84ba-562afa3b1752" ], + "x-ms-unique-id": [ "872" ], + "x-ms-client-request-id": [ "35d05bc8-54a7-4335-92c8-9bdebee9678b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1542,21 +1587,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "6c3988b7-f63c-485c-9b11-b7f4877cbc70" ], - "x-ms-correlation-request-id": [ "6c3988b7-f63c-485c-9b11-b7f4877cbc70" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:6c3988b7-f63c-485c-9b11-b7f4877cbc70" ], + "x-ms-request-id": [ "8f4b7344-f6fe-4aaa-80e7-31fe2e5e033f" ], + "x-ms-correlation-request-id": [ "8f4b7344-f6fe-4aaa-80e7-31fe2e5e033f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022146Z:8f4b7344-f6fe-4aaa-80e7-31fe2e5e033f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D42F5B0F86D0444FB946BE48B29622CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:07Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5DF2692E8ED34B2EACABDA8FEB91FF59 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-e5279qnwbr\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest2-kzc5qp78i1\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1564,7 +1609,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest3-xg581y7oh0\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -1579,18 +1624,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed5ab1af-e6cc-4794-aa0c-48619be93a6d" ], + "x-ms-request-id": [ "d21dae16-2245-46bf-824f-f78350cfc3b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3863c3c8-22aa-4c9d-ae11-a21cb0fed111" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "934c187c-855a-4b40-a351-9962cad440d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003507Z:934c187c-855a-4b40-a351-9962cad440d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westcentralus/74be3371-1044-416f-9b90-aa22af42dd48" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "87e68fa1-ac4e-4097-a937-62aa111d19e4" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T022147Z:87e68fa1-ac4e-4097-a937-62aa111d19e4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 893249373D8E4FFDAFB929099570F4B6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:07Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8F3D58A0DA2D45C98D51D0B8FC148591 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -1608,12 +1653,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "503" ], - "x-ms-client-request-id": [ "9fdf317f-3216-42fe-b1c5-ddbd38b8e06d" ], + "x-ms-unique-id": [ "874" ], + "x-ms-client-request-id": [ "05eb70cf-4f8d-4f0f-8b6e-9cf691d61631" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1624,40 +1669,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "cb9bc2e7-f6fb-49c3-b4a7-5ef12c617ad7", "5d1986c9-0148-4ea6-9fcb-a9aed11db859" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "854c2e36-4700-4e69-b5bd-a60bbf89101a" ], - "x-ms-correlation-request-id": [ "854c2e36-4700-4e69-b5bd-a60bbf89101a" ], - "x-ms-routing-request-id": [ "WESTCENTRALUS:20260326T003509Z:854c2e36-4700-4e69-b5bd-a60bbf89101a" ], + "x-ms-original-request-ids": [ "9cbca8bf-e9eb-4176-9957-11d8b05bff0f", "f64577fd-dcd7-4cc5-b46e-8948df741be9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-request-id": [ "3e25d6f8-1e73-42e1-950e-a8a1e55a5a85" ], + "x-ms-correlation-request-id": [ "3e25d6f8-1e73-42e1-950e-a8a1e55a5a85" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T022148Z:3e25d6f8-1e73-42e1-950e-a8a1e55a5a85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3C3121BAD21B49FE82340128CF99843D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D48139883F7440E1B883AC98254D6D2D Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "15498" ], + "Content-Length": [ "17130" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055965,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "504" ], - "x-ms-client-request-id": [ "02310bba-bb7a-430b-8498-ed17cb54f081" ], + "x-ms-unique-id": [ "875" ], + "x-ms-client-request-id": [ "621a61c1-fb46-4a33-b4bf-b50cf59632f4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1669,40 +1714,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b6931637-9341-44d8-8e3e-773ac791052e" ], + "x-ms-request-id": [ "dc08aa9b-7957-4fc2-a4b8-3907fa0257cf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8b65d47d-c976-4f01-ba58-02a49f7f2b98" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003509Z:8b65d47d-c976-4f01-ba58-02a49f7f2b98" ], + "x-ms-correlation-request-id": [ "b4f75e54-6ae2-465b-b8a5-c565d792937c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022148Z:b4f75e54-6ae2-465b-b8a5-c565d792937c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0B84D246675449998BBA6F9C3192AE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1FCE09E1B8354FC8AEA62A8F2FD6B48D Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "505" ], - "x-ms-client-request-id": [ "0c9ebd0b-5893-4397-8ea6-5214e76789d4" ], + "x-ms-unique-id": [ "876" ], + "x-ms-client-request-id": [ "fa07e99c-6edb-4428-b633-b81fe20a2797" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1714,40 +1759,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0a34f9c-05ae-4943-983c-f5cb5c8d9635" ], + "x-ms-request-id": [ "dce67ab5-8908-423e-973e-8a96040e3677" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bd3a9eb5-67b1-43a1-9ad7-ff7f1e18a892" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003509Z:bd3a9eb5-67b1-43a1-9ad7-ff7f1e18a892" ], + "x-ms-correlation-request-id": [ "d1b38b51-3d77-4f18-a8c0-48b9fc718c6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022148Z:d1b38b51-3d77-4f18-a8c0-48b9fc718c6e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5FE95E46AB414F82B50E0C87062899A8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD63FE2331E74A47819C88C1C9BFF513 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "506" ], - "x-ms-client-request-id": [ "973b560e-b2d4-4d70-99ca-7db95220c77b" ], + "x-ms-unique-id": [ "877" ], + "x-ms-client-request-id": [ "c2f2ce97-5237-4569-ab3c-67d07afe0086" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1759,40 +1804,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e597506-56b5-49ca-9693-55fe72ff96d8" ], + "x-ms-request-id": [ "8e474cb5-6f23-4e51-8c2e-3e918667bb15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "848cbfac-e3f9-4a01-a75d-f28fc8012796" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003509Z:848cbfac-e3f9-4a01-a75d-f28fc8012796" ], + "x-ms-correlation-request-id": [ "7b0979ff-5754-478b-a711-2185cc26a0be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022148Z:7b0979ff-5754-478b-a711-2185cc26a0be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7B2D4713A224AD2BE149B39E6AD309E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6EF3CED945514D42932BE7A1C0ACA83A Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":91524,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_91524\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:21:17.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+6": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "507" ], - "x-ms-client-request-id": [ "ad3c9562-6688-4c7d-bbd0-9e7b5fda1c49" ], + "x-ms-unique-id": [ "878" ], + "x-ms-client-request-id": [ "3bdcb9c6-1a1b-4dec-a32a-0a07ccae6f55" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1804,40 +1849,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "85ea7578-3239-4610-9907-a89bb055ff50" ], + "x-ms-request-id": [ "fd78a969-c41f-4ec6-ac8d-bbd7f0190103" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "f687a7f7-6539-4f6f-8967-fc8d9a38477f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:f687a7f7-6539-4f6f-8967-fc8d9a38477f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "12246b03-4f4e-4de6-9e4e-666ef9ac8dd9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022148Z:12246b03-4f4e-4de6-9e4e-666ef9ac8dd9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECBABA2828D1462BA64217DF5EDF43F7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DBF672C318F4463EB538C3D61AA0BD45 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1754" ], + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "508" ], - "x-ms-client-request-id": [ "b44b6173-c63a-4c50-9b31-80812d861579" ], + "x-ms-unique-id": [ "879" ], + "x-ms-client-request-id": [ "04e91fec-12bd-4635-9046-3bcdad9587a6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1849,40 +1894,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "36264adf-de6a-4a47-a270-c825a090b9de" ], + "x-ms-request-id": [ "469111bf-780d-4b0a-87d6-37ba6f245bbd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "bdfc0427-94a1-453f-bd1b-25d4994415a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:bdfc0427-94a1-453f-bd1b-25d4994415a5" ], + "x-ms-correlation-request-id": [ "8e940a0f-baae-419b-bd4a-30b9b295ae01" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022149Z:8e940a0f-baae-419b-bd4a-30b9b295ae01" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B140D46C08CD43B5AF8C595DC14514C2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 87A91D71D8D449FF86748B71695AE0DF Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "509" ], - "x-ms-client-request-id": [ "3734d7ee-5aa0-4684-92f6-7f6c35bdc9cf" ], + "x-ms-unique-id": [ "880" ], + "x-ms-client-request-id": [ "cba2f0e7-6fae-457d-a778-e391c3b19206" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1894,40 +1939,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d983419d-704e-467f-8fba-95ed6d0b6ce4" ], + "x-ms-request-id": [ "9c4f1836-6b28-4eff-9964-21b50e659a81" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b84f67d3-cb08-4dc5-a623-d12f80d59da3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:b84f67d3-cb08-4dc5-a623-d12f80d59da3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "792fc413-cccb-4fd8-9a5a-f3cf0b3d3cdd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022149Z:792fc413-cccb-4fd8-9a5a-f3cf0b3d3cdd" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 67B6BC0876794A69848518A86CF3F111 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1742" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "881" ], + "x-ms-client-request-id": [ "b14fa959-982e-4f5c-9499-033edf03fbab" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "f7535684-6382-44fb-9ac2-76bb6fb35732" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "f6748ec6-5fc9-4a97-9287-aeef466517ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022149Z:f6748ec6-5fc9-4a97-9287-aeef466517ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA40582B0C9046DF8B1F28DC5BC0E00C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9BA952A563F848A19CA2215C5F946DAF Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "510" ], - "x-ms-client-request-id": [ "a188c773-05df-4f1d-8c72-b010034db760" ], + "x-ms-unique-id": [ "882" ], + "x-ms-client-request-id": [ "9a71c456-1f12-4cfd-a40c-2430fc8f81f1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1939,40 +2029,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ac2a84d6-2474-49cc-9306-a33ac700cd66" ], + "x-ms-request-id": [ "60938fc0-da6b-4d72-ac9b-5aab81aa36c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3ebe6f73-ed6d-4a00-a3b0-ef8231c5244e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:3ebe6f73-ed6d-4a00-a3b0-ef8231c5244e" ], + "x-ms-correlation-request-id": [ "0872422f-1213-4a4c-a67b-29f676d14f95" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022150Z:0872422f-1213-4a4c-a67b-29f676d14f95" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7BF9738D96FA4A4FB3C3201A34E4C5BD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 93E555D8252447F088A81A78151CABF1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "511" ], - "x-ms-client-request-id": [ "de99e44b-d186-493e-9341-2b898a0cadca" ], + "x-ms-unique-id": [ "883" ], + "x-ms-client-request-id": [ "614a94a1-9293-462f-b805-c99c8ebe50eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1984,40 +2074,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d9a4efa0-1c0c-4945-8e29-3bcc3d93e58e" ], + "x-ms-request-id": [ "04684ba0-c0f4-4248-92da-04f2ba6d6589" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "dd557e07-cd76-4e45-9906-81b7e34bf658" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003510Z:dd557e07-cd76-4e45-9906-81b7e34bf658" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2d1ac8dc-3628-4f1d-aae2-1a857606bb0c" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022150Z:2d1ac8dc-3628-4f1d-aae2-1a857606bb0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EB5506256C344C0A372AB0E1A0F41FA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FD4879C93B9544E5B493D79EA2B52A95 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "512" ], - "x-ms-client-request-id": [ "40f29f0d-c9fe-485c-a34f-4e25f161b59c" ], + "x-ms-unique-id": [ "884" ], + "x-ms-client-request-id": [ "ff34d817-0515-4785-9bf3-9267ee3dded9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2029,40 +2119,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7dd10d88-6978-42ba-ba54-599d15de9113" ], + "x-ms-request-id": [ "7e83ed18-16fb-435c-a319-0bf3cc7ac007" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "42386535-990e-4581-8a3d-cce8885c8abb" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T003510Z:42386535-990e-4581-8a3d-cce8885c8abb" ], + "x-ms-correlation-request-id": [ "3d162534-2e13-4881-aecd-739a7137183e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022150Z:3d162534-2e13-4881-aecd-739a7137183e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 74FFEE2EA3BA408EB6938F77ACCB9E91 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 86A9B6F4D45549958B332F3CEDA342B2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+13": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "513" ], - "x-ms-client-request-id": [ "7633523e-474c-4f51-9644-55f235d61ebe" ], + "x-ms-unique-id": [ "885" ], + "x-ms-client-request-id": [ "22997357-f76a-45ab-a408-6f3382499901" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2073,40 +2163,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "8c8900ef-2e35-40a8-be45-3438a8da37f9", "848908fb-223a-4871-a06b-27b3ecfc36ee", "7dd983f8-4d83-4202-86af-9ec8f5d5c153" ], + "x-ms-original-request-ids": [ "82b63a5b-e5ba-4edb-b344-0bba61d75cb8", "7822049a-e003-42bc-948c-22e42f06c0a1", "06752087-647d-4161-8235-05552d61d16f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "24f20ad0-bb38-475e-b0d2-224e3a24b22a" ], - "x-ms-correlation-request-id": [ "24f20ad0-bb38-475e-b0d2-224e3a24b22a" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T003511Z:24f20ad0-bb38-475e-b0d2-224e3a24b22a" ], + "x-ms-request-id": [ "d8f8948e-80e7-42cd-9f03-42fe8d9f1a79" ], + "x-ms-correlation-request-id": [ "d8f8948e-80e7-42cd-9f03-42fe8d9f1a79" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T022151Z:d8f8948e-80e7-42cd-9f03-42fe8d9f1a79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD8A99CD6EB34930AEE801DFBB6F9CDA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB3C3CFAEF344C428A8D4E09C6E5C804 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "514" ], - "x-ms-client-request-id": [ "84a4b0e4-7be3-4d93-a7d8-42cbdfa2ef98" ], + "x-ms-unique-id": [ "886" ], + "x-ms-client-request-id": [ "d4ed841b-3ecd-4376-b03c-617ccc1586d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2117,16 +2207,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "241ef660-0bed-484c-aa6f-53e4530aaa5c" ], + "x-ms-request-id": [ "1a778d67-8b41-4eda-a86d-215625c1b09a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6e930d41-1823-4017-b4eb-92c5d4757d42" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bbc2cb22-2c8b-4362-b882-ff716358a0ca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "e6cd3211-f468-4418-b53b-0443975d2b56" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003511Z:e6cd3211-f468-4418-b53b-0443975d2b56" ], + "x-ms-correlation-request-id": [ "2bd55e1d-7e54-4662-a44e-fa88f134498e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022151Z:2bd55e1d-7e54-4662-a44e-fa88f134498e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A32A52468F342C18E90972F55E2CE5C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE5BA5DFF83A4B9184BD1C1EEB6AD674 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -2137,10 +2227,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2015-05-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2015-05-01+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -2160,30 +2250,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da8fa89f-79e1-4b46-b014-493e31eee3b0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e3176f1-2726-4785-931d-dde8e32dce0e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "06d77cbd-15be-4ce3-a4d0-42b34f836c1b" ], - "x-ms-correlation-request-id": [ "06d77cbd-15be-4ce3-a4d0-42b34f836c1b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003517Z:06d77cbd-15be-4ce3-a4d0-42b34f836c1b" ], + "x-ms-request-id": [ "05a1f984-ce5a-43c9-8de1-8e6b4eded499" ], + "x-ms-correlation-request-id": [ "05a1f984-ce5a-43c9-8de1-8e6b4eded499" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022156Z:05a1f984-ce5a-43c9-8de1-8e6b4eded499" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9AFC9A701364CF59A1BE42826D3C18B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EE529975A4CF46ECA7E58EE60DB979B3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:21:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20273d3-0000-0300-0000-69c47f450000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"name\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"AppId\": \"bb613380-3ae8-4ed3-a136-8399dc746da1\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e03c45ab-51a6-4e3b-a6d1-1f4008542831\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest3-7q9cjpgboy\",\r\n \"CreationDate\": \"2026-03-26T00:35:12.7528327+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-7q9cjpgboy_bb613380-3ae8-4ed3-a136-8399dc746da1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-7q9cjpgboy-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6e033450-0000-0300-0000-69c73b440000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest3-xg581y7oh0\",\r\n \"name\": \"Func-PowerShell-NewTest3-xg581y7oh0\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest3-xg581y7oh0\",\r\n \"AppId\": \"4bbe13d7-75e3-4939-9755-42f904dc1b04\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"4a587a65-026e-4e52-8710-0a254b66f307\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest3-xg581y7oh0\",\r\n \"CreationDate\": \"2026-03-28T02:21:51.9322625+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-xg581y7oh0_4bbe13d7-75e3-4939-9755-42f904dc1b04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-xg581y7oh0-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+16": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-7q9cjpgboy\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-xg581y7oh0\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2197,43 +2287,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB86CB451B5\"" ], + "ETag": [ "\"1DCBE59A7981140\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "06523304-93d5-4327-a5db-9a622187bed1" ], + "x-ms-request-id": [ "7868a20f-2a67-44b0-b9d8-cc29df14cc96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/95bfc711-b334-4736-8159-358534463b67" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23da423f-4db0-4fb7-8f6c-832f601b6612" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "b962b2df-de4d-43d4-bb12-6df0fa3a29a2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003559Z:b962b2df-de4d-43d4-bb12-6df0fa3a29a2" ], + "x-ms-correlation-request-id": [ "c4979776-6f48-49fc-8210-8f66db3c353b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022238Z:c4979776-6f48-49fc-8210-8f66db3c353b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB627E60EF5643B79B3175E5713185B7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:35:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:35:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D75DA60EF5C84A27865D6D363DCEA94D Ref B: MWH011020809062 Ref C: 2026-03-28T02:21:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:22:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8580" ], + "Content-Length": [ "8586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:19.3\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:21:57.9266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "517" ], - "x-ms-client-request-id": [ "49671a4f-a81b-4f3e-a6c2-99402282f741" ], + "x-ms-unique-id": [ "889" ], + "x-ms-client-request-id": [ "f2064029-e76a-4267-97d2-239e36fafec6" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -2243,42 +2333,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8845876AB" ], + "ETag": [ "1DCBE59BF25D50B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d0ce3e0-943f-4ac3-9990-e157cdc17634" ], + "x-ms-request-id": [ "c83dbfc9-7f20-4d98-be30-894d8ef3945f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6fac3d32-bd08-40dc-8733-53441104059b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003630Z:6fac3d32-bd08-40dc-8733-53441104059b" ], + "x-ms-correlation-request-id": [ "223d6d9b-02d3-44dc-8167-bc74020d5512" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022309Z:223d6d9b-02d3-44dc-8167-bc74020d5512" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F162E5A0C61D4C209C351F024691E601 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2AEABDC7CA3542288F7EE3D52183D9ED Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:59.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:22:38.2566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+17": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "518" ], - "x-ms-client-request-id": [ "4a5961f4-3341-42fa-b404-daa989993da3" ], + "x-ms-unique-id": [ "890" ], + "x-ms-client-request-id": [ "9ec462eb-9481-469b-adbf-c51468638f87" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2289,42 +2379,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8845876AB" ], + "ETag": [ "1DCBE59BF25D50B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1d3ad541-f8ad-4f20-a199-f3fc77fd755f" ], + "x-ms-request-id": [ "f8a9816c-a167-44a7-92f0-37a28fca41dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "618e378d-e9cc-4ef7-87ea-ed8b3bd0d385" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003630Z:618e378d-e9cc-4ef7-87ea-ed8b3bd0d385" ], + "x-ms-correlation-request-id": [ "2b014e02-255f-4e34-adaa-01e695d066db" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022309Z:2b014e02-255f-4e34-adaa-01e695d066db" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E21A888A8B347DB823DFD902E98B449 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AFBDA8BAA8764C828CE0A8C2E19A52D5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:59.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:22:38.2566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "519" ], - "x-ms-client-request-id": [ "2686e666-303a-4b1e-8c35-07528987a983" ], + "x-ms-unique-id": [ "891" ], + "x-ms-client-request-id": [ "4b4d060b-cee0-4f7b-8ad9-5e1880586136" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2336,40 +2426,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e096483-6000-4b6e-a7d9-805262218d2c" ], + "x-ms-request-id": [ "565ca9fc-eb24-45d3-88a3-d1e4012f89c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2500b11-5d6e-4ad5-8670-87fc2a40a49a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4eb6db9-fd08-483d-a83e-ff22cc6626f0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "33b98c46-a60c-4e88-a817-0250af1fa722" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003630Z:33b98c46-a60c-4e88-a817-0250af1fa722" ], + "x-ms-correlation-request-id": [ "8c4073f4-e55f-40cb-8a9b-f8b8d14d4ab7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022309Z:8c4073f4-e55f-40cb-8a9b-f8b8d14d4ab7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 67041140BA974182B21727119C138D52 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47C18AF82378452B9301B10E0F9C1A9E Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-xg581y7oh0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "520" ], - "x-ms-client-request-id": [ "a849003a-5ee3-41b0-a7ee-d5a270fe917f" ], + "x-ms-unique-id": [ "892" ], + "x-ms-client-request-id": [ "107c992c-29f6-4505-bd9a-e492de58f7c4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2381,41 +2471,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "eb334b80-9665-40e7-82fa-6206c315c1f7" ], + "x-ms-request-id": [ "df39c191-4cb8-44b3-8065-2e8d7234a937" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8b51686-2992-49e5-b90f-8108f4a93273" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/755a6a05-a482-4a22-8547-44fe3f35bbc0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "150e42be-fcc8-48cb-9e4f-e8f3d7d40e84" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:150e42be-fcc8-48cb-9e4f-e8f3d7d40e84" ], + "x-ms-correlation-request-id": [ "b3283ae4-a5a5-47ae-97c4-4d825d083fc0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022309Z:b3283ae4-a5a5-47ae-97c4-4d825d083fc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 24BDB6665772423CA94413F34BBAFD71 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE8ABE5BDBBB49A883A165709F0BAE2D Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:09Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:09 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "521" ], - "x-ms-client-request-id": [ "8e5aa944-fccc-4a1a-9c77-2680ef6522b5" ], + "x-ms-unique-id": [ "893" ], + "x-ms-client-request-id": [ "c8cedf6b-4f36-49e2-b6b9-b33b6c30f919" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2426,42 +2516,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8845876AB" ], + "ETag": [ "1DCBE59BF25D50B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b2ebc7ce-2ab0-4c68-94c7-24d9c4ce220d" ], + "x-ms-request-id": [ "aa0d8116-92db-46d4-8444-982a589a606c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c1f95eb4-2d2e-4649-989d-41786712c8fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:c1f95eb4-2d2e-4649-989d-41786712c8fa" ], + "x-ms-correlation-request-id": [ "775bc6a0-eb59-414b-ba84-12232491f295" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022310Z:775bc6a0-eb59-414b-ba84-12232491f295" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5D63AF8DE39640F7A3C51F7AF2ABB87E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B6AB149D23AC47B2BA05977D4511D5D9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:35:59.4666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:22:38.2566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "522" ], - "x-ms-client-request-id": [ "434df88a-15e2-45ac-a112-103d4488ea59" ], + "x-ms-unique-id": [ "894" ], + "x-ms-client-request-id": [ "93f573a7-dbe8-4b37-9cb7-19616f3b8022" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2473,40 +2563,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "15eebd96-4e05-4bb5-b04e-4f466c3d125e" ], + "x-ms-request-id": [ "34f1b34a-65c8-4fa1-97dd-db60ad79c59b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/32912ec3-1403-4464-953e-3a2acd5196fb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/60630c8f-02b6-4662-8278-401a1f1ab552" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "020a8fd1-c8b1-4915-81ff-27efd6b09310" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:020a8fd1-c8b1-4915-81ff-27efd6b09310" ], + "x-ms-correlation-request-id": [ "de937edd-b3d5-4f4f-a6d2-41c02c0b3844" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022310Z:de937edd-b3d5-4f4f-a6d2-41c02c0b3844" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F1A8FE0A939F4042A575FBBE96843844 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B3CC7B28ECF4B06831F70F689BE2E1D Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-xg581y7oh0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "523" ], - "x-ms-client-request-id": [ "b74ff251-1ed2-41bd-9a33-162cf5168765" ], + "x-ms-unique-id": [ "895" ], + "x-ms-client-request-id": [ "278f2492-34c3-458a-9c65-4247b915a192" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2518,41 +2608,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fd00e395-c9c9-4531-ba67-ada12cd935c3" ], + "x-ms-request-id": [ "c8f783b3-62c0-44b5-aaa3-ce403edd1b3a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0375544f-ad13-4453-adb1-99212347765b" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "75e22606-c75a-48f3-b4d8-d225b38b9c74" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003631Z:75e22606-c75a-48f3-b4d8-d225b38b9c74" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/554e7eb2-b33d-4d02-a9b8-ab69f497b391" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "2ca80bc2-a367-461c-b6a3-ed67a94de5f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022310Z:2ca80bc2-a367-461c-b6a3-ed67a94de5f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41B11C3D847D43A1A92E7BEE631825FF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A44DB89FF27540E78CD1E4DD611EB84E Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "524" ], - "x-ms-client-request-id": [ "b57616bc-68c5-4344-a834-b249a9db316b" ], + "x-ms-unique-id": [ "896" ], + "x-ms-client-request-id": [ "f7bdb160-7dd1-42bf-89d3-fdce1b637ced" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2564,40 +2654,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30188764-591a-4c9a-94ce-f15204700da3" ], + "x-ms-request-id": [ "c433db2c-888b-4049-8aae-268d3fe95a06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "9b317dc5-eac5-4090-af73-dcae7cb39701" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003632Z:9b317dc5-eac5-4090-af73-dcae7cb39701" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "9c28a1c5-9e59-47cf-850b-1ce03136d863" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022311Z:9c28a1c5-9e59-47cf-850b-1ce03136d863" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 578E424181524525BBE4A24D77F0AB14 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4745585448E141B58D22FB285AAAAB1D Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:10Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01+25": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "525" ], - "x-ms-client-request-id": [ "b92e20ec-4d00-4a9b-9054-e237dfbc3347" ], + "x-ms-unique-id": [ "897" ], + "x-ms-client-request-id": [ "f3c97383-2cde-4ee8-bcee-d0df801840d9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2609,32 +2699,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f7a17f27-8c87-4265-86b2-306d7bf5143e" ], + "x-ms-request-id": [ "35b7fd25-9dc2-4d87-915d-72141b8a74e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0061172b-cb50-49c7-afdc-2745c6420852" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e8c3f0e3-9f2e-4192-93a6-23f51954b373" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1a6a7478-7654-4403-958a-be16d06e5fa9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003632Z:1a6a7478-7654-4403-958a-be16d06e5fa9" ], + "x-ms-correlation-request-id": [ "dcfcd969-c44c-43f5-a3f2-cfb03eb2aa97" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022311Z:dcfcd969-c44c-43f5-a3f2-cfb03eb2aa97" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0FE13809AEB345E2AEFBAA97BE15B92A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C31DD0B7EC84417DBDD7B8C41382DF3E Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:11 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-xg581y7oh0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+26": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-7q9cjpgboy\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest3-xg581y7oh0\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -2648,43 +2738,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB8845876AB\"" ], + "ETag": [ "\"1DCBE59BF25D50B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2c9e8ad-a05c-4f72-9117-9dd597e96eeb" ], + "x-ms-request-id": [ "2cb59126-1e0b-4ce8-a6de-7f717f8bb4ce" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/653af45a-229e-4b39-9063-e3307cacb6e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5d8ffd07-8be7-400c-9b66-80bc926a407e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "905fa16a-3d12-4335-8029-9a42be94c050" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003634Z:905fa16a-3d12-4335-8029-9a42be94c050" ], + "x-ms-correlation-request-id": [ "8e6741ea-c838-4eed-9e6f-bb7c6cede0c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022314Z:8e6741ea-c838-4eed-9e6f-bb7c6cede0c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8781435882A456AAFFBA9694D29EAAF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:36:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:36:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4378758BBEC46639C41968E8C881A44 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:14 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8918" ], + "Content-Length": [ "8923" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:23:13.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "527" ], - "x-ms-client-request-id": [ "77de8d57-ec7c-416e-bfb6-5fdb4bc7668f" ], + "x-ms-unique-id": [ "899" ], + "x-ms-client-request-id": [ "c4c5212a-cc3a-4d4b-a291-cc3c4f758505" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -2694,42 +2784,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB898F0E240" ], + "ETag": [ "1DCBE59D42B1935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9cf4a664-647f-4f1f-9693-c6ad16e93ecd" ], + "x-ms-request-id": [ "87c10c24-34ad-4624-964b-f853a14b51d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "82243c8b-1050-4968-b38b-a9d80d26783e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003705Z:82243c8b-1050-4968-b38b-a9d80d26783e" ], + "x-ms-correlation-request-id": [ "07997e50-395b-4595-bd0c-5811f51b9a2b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022344Z:07997e50-395b-4595-bd0c-5811f51b9a2b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A78C19B3F0F44F5BD5047A932D9CC85 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 93EC09A90BDF420A8A009F1A2A316A12 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8714" ], + "Content-Length": [ "8719" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:23:13.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "528" ], - "x-ms-client-request-id": [ "b9c6ac16-936c-40f5-9c01-fff413af6170" ], + "x-ms-unique-id": [ "900" ], + "x-ms-client-request-id": [ "ec980b22-be1b-42c4-b9b7-8859934a78e2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2740,42 +2830,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB898F0E240" ], + "ETag": [ "1DCBE59D42B1935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9489fafc-73c2-4372-88d2-bb6492fd246b" ], + "x-ms-request-id": [ "57331b81-9c5f-4e19-bf1b-3211e28c438b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9933dbc0-de92-440b-9d28-a832b0a09f23" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003705Z:9933dbc0-de92-440b-9d28-a832b0a09f23" ], + "x-ms-correlation-request-id": [ "3a963b2e-9cd5-4a6e-b813-2597464c289f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022345Z:3a963b2e-9cd5-4a6e-b813-2597464c289f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16A4BC7969E543DDB5ACBFF811718AE1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1A47232A809A4DC083A9A46F513822E9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8714" ], + "Content-Length": [ "8719" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:23:13.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01+29": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "529" ], - "x-ms-client-request-id": [ "a4cab557-a83e-4223-bf64-5ea3dda985e0" ], + "x-ms-unique-id": [ "901" ], + "x-ms-client-request-id": [ "4c864623-6f70-4e7d-845a-cfe6a7c770ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2787,40 +2877,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ee0a38f6-7c64-4df6-b3f1-50a0e60f94cb" ], + "x-ms-request-id": [ "c9e37f0d-fbea-4e41-baf9-25a1f7fbb5d2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb0bcf1f-7df4-4f4d-8fc5-49b59c0a363a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/adeda768-b942-4cc8-8918-48034d6a574b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "35994633-11ea-4303-9ead-fca6fdf7e59d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003705Z:35994633-11ea-4303-9ead-fca6fdf7e59d" ], + "x-ms-correlation-request-id": [ "bf40dc61-398e-4206-8ddc-31e9dca4ef68" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022345Z:bf40dc61-398e-4206-8ddc-31e9dca4ef68" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 101F013EBED94178B1E96D88BA2650C8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 754603C4EF434B8C9D3C83D6E241E178 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-xg581y7oh0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "530" ], - "x-ms-client-request-id": [ "04c32c69-bd6b-4faa-af71-5197ddb616c0" ], + "x-ms-unique-id": [ "902" ], + "x-ms-client-request-id": [ "8218e55b-478c-4dae-8379-fb812b8800b5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2832,41 +2922,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1175c5ec-7e67-4537-9885-f8af2999e7d6" ], + "x-ms-request-id": [ "9e8d38cb-4612-40c8-b0d1-699676881c48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1772f421-75cc-482e-8fd1-0043c261a70d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5c025359-fa74-4846-a8aa-8dd884a1a3b0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c12212c-457a-46e9-ae98-8e81739648d6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:6c12212c-457a-46e9-ae98-8e81739648d6" ], + "x-ms-correlation-request-id": [ "e850f859-0e75-434e-949d-ce1f4f9c0140" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022345Z:e850f859-0e75-434e-949d-ce1f4f9c0140" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64BF5241637D455C8FCEA39A30F360EB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 042DA7826F8C41A1A4CC232D42085E13 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88198,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":94762,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "531" ], - "x-ms-client-request-id": [ "c9badf66-45ab-4d0c-ba4f-65fc7ac1955f" ], + "x-ms-unique-id": [ "903" ], + "x-ms-client-request-id": [ "f0e8f4da-1f14-46b5-a049-805d82d4d7f9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2877,42 +2967,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB898F0E240" ], + "ETag": [ "1DCBE59D42B1935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8d3dbad8-1ace-48a7-9f66-31b572d70a52" ], + "x-ms-request-id": [ "94fda325-0802-498a-ac75-4a28961881b3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2558e235-6918-42d2-af04-ec7ddabbb2d4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:2558e235-6918-42d2-af04-ec7ddabbb2d4" ], + "x-ms-correlation-request-id": [ "b663c9a1-032d-4a82-ae2e-9166280fae14" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022346Z:b663c9a1-032d-4a82-ae2e-9166280fae14" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7561E6CE3314403CA287D9CF0CEE028A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7DCDB959004B4C54B22A04ACDED9102E Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8714" ], + "Content-Length": [ "8719" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest3-7q9cjpgboy\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-7q9cjpgboy.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:36:34.02\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest3-7q9cjpgboy\\\\$Func-PowerShell-NewTest3-7q9cjpgboy\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest3-7q9cjpgboy.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest3-xg581y7oh0\",\"repositorySiteName\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest3-xg581y7oh0.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:23:13.5233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest3-xg581y7oh0\\\\$Func-PowerShell-NewTest3-xg581y7oh0\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest3-xg581y7oh0.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01+32": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "532" ], - "x-ms-client-request-id": [ "796a925f-a9f6-4bd5-aae0-8e1ef810157a" ], + "x-ms-unique-id": [ "904" ], + "x-ms-client-request-id": [ "ca8c0bf3-35af-48b9-a71c-50c02a9667e6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2924,40 +3014,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6a2e34e1-c3a7-4d18-a1e9-dbeb6c6e73f6" ], + "x-ms-request-id": [ "541e95f3-ffc6-42b0-b190-a46df6e2bdd9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/15fa2b62-b47e-4320-84c6-7daa9f183d51" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e66bfee9-a1a2-416a-9d26-c3f08f04d0ce" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0a0c19d2-1ff8-4126-b1df-3c48c4dcbff5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:0a0c19d2-1ff8-4126-b1df-3c48c4dcbff5" ], + "x-ms-correlation-request-id": [ "e0bdbee9-acd3-45b7-a332-da81a899f3df" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022346Z:e0bdbee9-acd3-45b7-a332-da81a899f3df" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BED8787256B6426896740B8D372A00E7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F4B0ABCF77CF4B3E9F1DD6569F80BBF5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-7q9cjpgboy\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest3-xg581y7oh0\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "533" ], - "x-ms-client-request-id": [ "e211c4f9-0027-4c05-b4fa-1914f94715c8" ], + "x-ms-unique-id": [ "905" ], + "x-ms-client-request-id": [ "184f2ae4-9d9b-4782-aed1-ff6db39284e4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2969,41 +3059,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc2c9c1a-48d5-488a-8573-83c365870240" ], + "x-ms-request-id": [ "5ac11a0e-867b-4019-bafd-e7cbdf9f2e72" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e283608f-9788-4c1a-a245-63437d3bb78c" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd2845d1-a1e5-4922-96ec-398468634b0a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b9de0407-a2c2-4c10-89ba-dba814541bef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:b9de0407-a2c2-4c10-89ba-dba814541bef" ], + "x-ms-correlation-request-id": [ "4079c356-3abd-406e-b00a-24a0926ae8ab" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022346Z:4079c356-3abd-406e-b00a-24a0926ae8ab" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46361FE8A56D47BA8D814473CFCAB4A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EE052AC908824E27B2F3F0A2A7EA0C0C Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4192" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy/config/web\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":88198,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0/config/web\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":94762,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "534" ], - "x-ms-client-request-id": [ "e50dde43-c42d-4e73-81ba-da7a3c423cc9" ], + "x-ms-unique-id": [ "906" ], + "x-ms-client-request-id": [ "de428ab4-83ae-48f4-b48a-b92bb4863e3c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3015,40 +3105,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d94ea375-02e0-41d7-82e3-4923f31fa7b5" ], + "x-ms-request-id": [ "ddabcb07-3412-4b03-b805-5f174c9f5a85" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c8ec2b67-2a54-4911-be89-a5e44ffd92b2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003706Z:c8ec2b67-2a54-4911-be89-a5e44ffd92b2" ], + "x-ms-correlation-request-id": [ "1218808d-226e-414a-88fc-c7d0cf1b669b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022347Z:1218808d-226e-414a-88fc-c7d0cf1b669b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F08825AACFE74A46AC64F0F56C84B254 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:06Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0E51B20ABA93433499B686FD52D8F77A Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:47 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+35": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "535" ], - "x-ms-client-request-id": [ "be8fda91-5f35-4447-a807-6290ed41f13a" ], + "x-ms-unique-id": [ "907" ], + "x-ms-client-request-id": [ "76508723-70b4-4ed3-87b8-bfe3bf7c049e" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3059,20 +3149,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB898F0E240\"" ], + "ETag": [ "\"1DCBE59D42B1935\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6f29b5a5-e85e-43c7-a1b1-e3a5475e8081" ], + "x-ms-request-id": [ "b7a581ea-fda6-4ff5-b80a-b86a30dbacd1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef6659a0-a2be-4dd3-a9cf-599122292dd1" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "02575038-0325-41f0-8c8a-7d1a27ccb91a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:02575038-0325-41f0-8c8a-7d1a27ccb91a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28483e27-7f21-416d-ab35-36f686357115" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "4b3f722d-dec4-4a05-bb2e-7ac781060241" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022355Z:4b3f722d-dec4-4a05-bb2e-7ac781060241" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A93867093294881B057B512EE077F36 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:07Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCA82E09FA064E27B2E75B6B03965072 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:55 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3082,19 +3172,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "536" ], - "x-ms-client-request-id": [ "efeb1632-f947-422b-8ecf-dcdabc78c845" ], + "x-ms-unique-id": [ "908" ], + "x-ms-client-request-id": [ "513c94fa-4af6-4981-a482-b8842163f644" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3106,37 +3196,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "cfbf8b66-5e33-43d2-ba65-a72dde6725c0" ], - "x-ms-correlation-request-id": [ "cfbf8b66-5e33-43d2-ba65-a72dde6725c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:cfbf8b66-5e33-43d2-ba65-a72dde6725c0" ], + "x-ms-request-id": [ "94be2bd4-bc81-44d6-9f15-601317fcd0f0" ], + "x-ms-correlation-request-id": [ "94be2bd4-bc81-44d6-9f15-601317fcd0f0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022355Z:94be2bd4-bc81-44d6-9f15-601317fcd0f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB2051185E0D4AC699897A34CDC89485 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0A962934EAE46298E2A4861B64202DF Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01+36": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Create a function app and then use Update-AzFunctionApp to enable a UserAssigned managed identity for the app+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "537" ], - "x-ms-client-request-id": [ "e9164995-4813-435e-b198-97f6dc14c062" ], + "x-ms-unique-id": [ "909" ], + "x-ms-client-request-id": [ "1b8c367c-1182-4155-b434-aa6888e0b442" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3148,21 +3238,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "9e8cc7cd-d3ef-4c28-96a7-6a595ef6ea4a" ], - "x-ms-correlation-request-id": [ "9e8cc7cd-d3ef-4c28-96a7-6a595ef6ea4a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:9e8cc7cd-d3ef-4c28-96a7-6a595ef6ea4a" ], + "x-ms-request-id": [ "cfcba51d-60a1-44f1-9263-b9e3b595ea68" ], + "x-ms-correlation-request-id": [ "cfcba51d-60a1-44f1-9263-b9e3b595ea68" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022355Z:cfcba51d-60a1-44f1-9263-b9e3b595ea68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C660E3236754BB8B6658B7C87D7D368 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 377648477E5045409D58A0B3C562C8FF Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-7q9cjpgboy\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest3-xg581y7oh0\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -3173,12 +3263,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "538" ], - "x-ms-client-request-id": [ "7cb8f3a7-950e-47e2-a132-b234f5a83a4c" ], + "x-ms-unique-id": [ "910" ], + "x-ms-client-request-id": [ "407eadd3-4af6-40b6-87d9-676b2126e653" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3190,18 +3280,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f1614587-2302-422c-b38c-d3cf5ca86364" ], + "x-ms-request-id": [ "4b1f88b5-d36d-493a-9703-aad96de9253b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a41ba333-9f8b-4c1c-b459-a841209f8532" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6367713c-05f3-4abd-806c-7d57a4821eff" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d184bd41-8bda-4e13-a3de-70d8ba44cf90" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003715Z:d184bd41-8bda-4e13-a3de-70d8ba44cf90" ], + "x-ms-correlation-request-id": [ "81d1c06b-315b-4035-be26-cf69a9ec8d30" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022355Z:81d1c06b-315b-4035-be26-cf69a9ec8d30" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DAE5C39048D40B4A5E95E1218BCF765 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8748FC7B242E4EC7B529587379272DD8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -3212,10 +3302,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+2": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 6,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -3230,44 +3320,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8B2F3D1C0" ], + "ETag": [ "1DCBE59EEA50D75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e423b0d7-3f63-4ae1-b0b8-5ca0aea63941" ], + "x-ms-request-id": [ "9e3308b1-8272-49e4-90cf-b42f8533ee3c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea714540-8a9a-4f25-a22e-586be4ad2c85" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7b4cd5a1-5db6-4d13-afef-b23a60a0ed0f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "3b0e20f4-2da2-4b5e-a14f-a8dfd276b6a6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003719Z:3b0e20f4-2da2-4b5e-a14f-a8dfd276b6a6" ], + "x-ms-correlation-request-id": [ "7c1760e7-dde1-4221-b569-fc527fd31c15" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022359Z:7c1760e7-dde1-4221-b569-fc527fd31c15" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 236DD9CA936C401ABD320CBE390F8286 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90B0FC48BE05449F9E2EA43573351B42 Ref B: MWH011020809062 Ref C: 2026-03-28T02:23:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:23:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1912" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "540" ], - "x-ms-client-request-id": [ "2b95f4ad-7f4a-48ca-82f7-173098bc814d" ], + "x-ms-unique-id": [ "912" ], + "x-ms-client-request-id": [ "beeb6532-3319-4994-aca8-a195a28b0e66" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -3278,41 +3368,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "574f5c9c-2d26-4262-b4bf-8d0d6ca06df1" ], + "x-ms-request-id": [ "d267ea79-e7b4-4ff1-9db9-7a58fc9a8161" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ba1f010e-5025-4a59-a0d1-a6ba369511cd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003750Z:ba1f010e-5025-4a59-a0d1-a6ba369511cd" ], + "x-ms-correlation-request-id": [ "0f0c164b-1519-4849-98f8-9b3ac8750389" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022429Z:0f0c164b-1519-4849-98f8-9b3ac8750389" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB93AD108C7B45008757DD269B20C334 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3292A8EB0CD14B4F9253100169B6188A Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "541" ], - "x-ms-client-request-id": [ "2b95f4ad-7f4a-48ca-82f7-173098bc814d" ], + "x-ms-unique-id": [ "913" ], + "x-ms-client-request-id": [ "beeb6532-3319-4994-aca8-a195a28b0e66" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -3323,24 +3413,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1f646609-9b11-4c01-9543-3daa70d94164" ], + "x-ms-request-id": [ "78541d57-480f-4424-ad54-7e40be6c5195" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1cd00960-f9a5-4b3f-a6b2-c0aededc9f92" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003750Z:1cd00960-f9a5-4b3f-a6b2-c0aededc9f92" ], + "x-ms-correlation-request-id": [ "99bd6a0d-10f0-4406-b69b-037a368a814d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022430Z:99bd6a0d-10f0-4406-b69b-037a368a814d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ECCD1B77183D479B891900D5975CEF9C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D47F247E5CE94279A5CB37C0AB5E1882 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -3348,7 +3438,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest5-koe843ap0h\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -3363,18 +3453,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c4f14b38-8aeb-490d-af9f-df1e82704b4f" ], + "x-ms-request-id": [ "8c7ffd60-fb1f-4054-a8f4-55801d8cb8de" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus/9a724876-9a68-4fd4-8b07-d6f79f55befc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d58585a4-fa4d-4d6e-abab-3bb16a0bafe1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "68606dea-1490-478e-a8bb-7a0205fe553c" ], - "x-ms-routing-request-id": [ "WESTUS:20260326T003750Z:68606dea-1490-478e-a8bb-7a0205fe553c" ], + "x-ms-correlation-request-id": [ "4aee5237-579e-4b1d-a911-41c48706688c" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022430Z:4aee5237-579e-4b1d-a911-41c48706688c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CCE1CCEDE1D14E6799FFEE3305804DEB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FC851F383FC47099C6E085CAED689A3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -3392,12 +3482,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "543" ], - "x-ms-client-request-id": [ "dc4391bc-e064-4d41-ba8d-c38dada54487" ], + "x-ms-unique-id": [ "915" ], + "x-ms-client-request-id": [ "67016853-6c72-4927-afbb-3e048f558bfa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3408,40 +3498,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d1431378-72ed-4468-a1e7-9d0d79e08c49", "4a355bd8-a9ac-4d5a-ae6f-515206069f16" ], + "x-ms-original-request-ids": [ "be17851b-f0c0-4fff-9b8a-a0d031ade487", "c2a5ff04-ce67-4558-93d8-83a846ef4f1d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0a5c4a7b-863c-4de1-b840-8cd115a0ccb0" ], - "x-ms-correlation-request-id": [ "0a5c4a7b-863c-4de1-b840-8cd115a0ccb0" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T003751Z:0a5c4a7b-863c-4de1-b840-8cd115a0ccb0" ], + "x-ms-request-id": [ "47ddb521-e711-463c-8ed4-2b3cf2031258" ], + "x-ms-correlation-request-id": [ "47ddb521-e711-463c-8ed4-2b3cf2031258" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T022431Z:47ddb521-e711-463c-8ed4-2b3cf2031258" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A7BD1FEED9842269AAB68411073E010 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1EF9C83EA6D44415811F7B697BF0E7BB Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "17263" ], + "Content-Length": [ "18895" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046165,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055965,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055970,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "544" ], - "x-ms-client-request-id": [ "8bf9a336-2cc1-4216-a0c6-994a3941dd62" ], + "x-ms-unique-id": [ "916" ], + "x-ms-client-request-id": [ "569f2c39-4316-42a6-8bf6-ee7d8aba09e7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3453,40 +3543,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ceb61bff-2568-4e9a-a871-aec997d9de3d" ], + "x-ms-request-id": [ "eeae35ed-f3d4-47fa-9ca0-7f866972d04e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "37223825-f015-41b5-a853-b54b9577140f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:37223825-f015-41b5-a853-b54b9577140f" ], + "x-ms-correlation-request-id": [ "f14da6e8-d608-44a6-a7b4-6e27ed2b8d84" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022431Z:f14da6e8-d608-44a6-a7b4-6e27ed2b8d84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2223F81BE9A1475CB0DF84C5DC5E89B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC33D59AE261459EBB8990AB19A46F81 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "917" ], + "x-ms-client-request-id": [ "7e1196cc-dbb2-475b-ab4a-e4f29f441d8a" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "edd46107-dac8-4bf5-ab95-b08a4ae914ac" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "ff75f155-80b5-4097-9248-18a3f334e3ac" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022431Z:ff75f155-80b5-4097-9248-18a3f334e3ac" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DCC88A9F9E0A4B48B6AB531874666144 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "545" ], - "x-ms-client-request-id": [ "6957a441-7b3d-49b5-bf04-e85ef6ae92f4" ], + "x-ms-unique-id": [ "918" ], + "x-ms-client-request-id": [ "7a43d897-e4c2-4f0f-9d8c-6b22c788ee33" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3498,40 +3633,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1eff560d-8327-4073-a807-0bbbf7881eb8" ], + "x-ms-request-id": [ "c56aadd5-4743-47ae-8096-7edc8d02cd85" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0d60b524-149e-44d3-a26a-d983131cd1d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:0d60b524-149e-44d3-a26a-d983131cd1d1" ], + "x-ms-correlation-request-id": [ "f0822097-6046-4f56-80b0-a3b4a4584f62" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022432Z:f0822097-6046-4f56-80b0-a3b4a4584f62" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD551E4C886040E890754522F11074EB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 090EDED90F1949B08CEB03FD55A331BE Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":91524,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_91524\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:21:17.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "546" ], - "x-ms-client-request-id": [ "ae15c632-ed4a-4e51-bdd8-b81f259dc6bd" ], + "x-ms-unique-id": [ "919" ], + "x-ms-client-request-id": [ "4539aac2-2f22-458e-a090-9d66d2186d63" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3543,40 +3678,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bded6fb5-be3d-4aa8-84fa-c4ce3615b958" ], + "x-ms-request-id": [ "370b492a-3590-4db0-810b-396be929bd50" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa94cf3c-d956-4851-bd58-aa3f3f92a07e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:aa94cf3c-d956-4851-bd58-aa3f3f92a07e" ], + "x-ms-correlation-request-id": [ "54057c1f-3e23-4069-88a4-37aad5644134" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022432Z:54057c1f-3e23-4069-88a4-37aad5644134" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1279E204EDCC4014B15AF859009A4ECE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3846461C6F545339552B73AFF3B0214 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "547" ], - "x-ms-client-request-id": [ "10d538e0-7e16-4d8f-8883-2d8290eab6f6" ], + "x-ms-unique-id": [ "920" ], + "x-ms-client-request-id": [ "6a8ca8a4-c094-4648-a3c7-a8002dbb2dd6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3588,40 +3723,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4664a7f3-cd40-4e2c-80be-67c758ca1d7c" ], + "x-ms-request-id": [ "7f77be24-edfe-46a4-868a-6b8629bfbd17" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "696b5e86-b44e-4360-9a8f-ce7c091d9f07" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:696b5e86-b44e-4360-9a8f-ce7c091d9f07" ], + "x-ms-correlation-request-id": [ "009c9742-997e-472a-bc9e-5862a694acd8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022432Z:009c9742-997e-472a-bc9e-5862a694acd8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D81FEDA298154B46A2141358F9EC85ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57F3064F36B442F8AC097D326274FA1D Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1754" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "548" ], - "x-ms-client-request-id": [ "f1103795-9c63-41ee-9930-2c3cdde883d7" ], + "x-ms-unique-id": [ "921" ], + "x-ms-client-request-id": [ "2535387b-d623-4346-b1e9-7ef8a72387a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3633,40 +3768,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8082e7d-bebb-4be8-99d1-e4fc8285836b" ], + "x-ms-request-id": [ "bd888c54-956f-4c7e-abb3-41683dd6e4fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7b233173-b710-49d8-a6d3-65dbb3664856" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003752Z:7b233173-b710-49d8-a6d3-65dbb3664856" ], + "x-ms-correlation-request-id": [ "6e142280-f1a6-442b-8258-8ddbc5d496f2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022432Z:6e142280-f1a6-442b-8258-8ddbc5d496f2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 54107F6B9C16455DB21CAE6F04C71FA7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 941E5255724A4D54ACA0CC0CAFB32A8A Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1742" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "549" ], - "x-ms-client-request-id": [ "9a7959f6-74a1-4eda-90e7-2f904da19949" ], + "x-ms-unique-id": [ "922" ], + "x-ms-client-request-id": [ "6729997a-1110-438f-976f-3fd0a60d237f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3678,40 +3813,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "944cb4fd-aa33-42d0-9d2c-700423eed8d6" ], + "x-ms-request-id": [ "c723ba00-abe8-45ca-a37b-477f089f0392" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5375809e-b1c9-4e91-82cd-dfea898c6293" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:5375809e-b1c9-4e91-82cd-dfea898c6293" ], + "x-ms-correlation-request-id": [ "dca9af03-cf68-4783-9054-a1b06918c532" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022432Z:dca9af03-cf68-4783-9054-a1b06918c532" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D5C128C077234477943A3419EE208D37 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06F33AF4D7A34DC99EA1DEE87DCBCBFB Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "550" ], - "x-ms-client-request-id": [ "43095bfd-2cbb-448e-8365-c9049de3b564" ], + "x-ms-unique-id": [ "923" ], + "x-ms-client-request-id": [ "9d15a801-709a-40c2-8f7a-b19aa5e9484e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3723,40 +3858,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2aac86ab-484c-4a33-a058-b147639ec3c6" ], + "x-ms-request-id": [ "a54b098d-3362-4b2a-b3d0-1c5dc1830979" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3fecb3ea-66a3-4513-972f-fcfa2484273b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:3fecb3ea-66a3-4513-972f-fcfa2484273b" ], + "x-ms-correlation-request-id": [ "ef3d0530-9aea-4816-8257-6def068cf4f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022432Z:ef3d0530-9aea-4816-8257-6def068cf4f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E2CA3E32AB5446B8926215320BA2220 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DF7308E4D3BE4E8E9CD4D7EF9C6E9D46 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "551" ], - "x-ms-client-request-id": [ "3f7ae7fe-b66b-4022-87d9-7fe5b5894462" ], + "x-ms-unique-id": [ "924" ], + "x-ms-client-request-id": [ "9f4ea36c-9210-4264-8e48-7928e5befe5e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3768,40 +3903,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1ba4d442-68cb-4804-85df-9898a928da48" ], + "x-ms-request-id": [ "e2da6eda-ea26-4e15-9129-6514dddd8c5c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "90bcb778-b3cd-4d71-afca-c0b5a9f2f517" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:90bcb778-b3cd-4d71-afca-c0b5a9f2f517" ], + "x-ms-correlation-request-id": [ "1e256eb9-e42d-468b-b61e-2d5b73732228" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022433Z:1e256eb9-e42d-468b-b61e-2d5b73732228" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFA75A1C6FCF46C9A66447E84ABDCDC5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55A424C7884745F6B846A39ACE1B2B58 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "552" ], - "x-ms-client-request-id": [ "942c4cec-8fb6-4334-8d3b-9c34701c363e" ], + "x-ms-unique-id": [ "925" ], + "x-ms-client-request-id": [ "43082d93-2ad0-4ecd-aab3-c5b286662e69" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3813,40 +3948,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "773c0bd9-f8cf-4738-bc31-ba76824a8e2f" ], + "x-ms-request-id": [ "8175c3f4-8d9e-4897-a0e3-19b000f6178b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "66818645-e4c5-49cd-b258-3c33de42f0ae" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003753Z:66818645-e4c5-49cd-b258-3c33de42f0ae" ], + "x-ms-correlation-request-id": [ "2a244ec2-d1eb-47f8-ae12-7372d5b0abc4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022433Z:2a244ec2-d1eb-47f8-ae12-7372d5b0abc4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F81335991704417EB047299A17153871 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1BEDE20029D44B2B88842F7ED1B8B88E Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "553" ], - "x-ms-client-request-id": [ "8d528cbd-0cde-4f56-9e75-e6a4d913acc3" ], + "x-ms-unique-id": [ "926" ], + "x-ms-client-request-id": [ "19f4df89-ee2a-4e10-8cbc-b038eacd9cc4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3858,40 +3993,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "76181e31-120e-4c41-9e0c-f6affbb52392" ], + "x-ms-request-id": [ "f9aa6347-8d8a-4aeb-947b-0141ff54dfa2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0abb68b3-9c5c-434c-a86a-0c25514b9b1f" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T003753Z:0abb68b3-9c5c-434c-a86a-0c25514b9b1f" ], + "x-ms-correlation-request-id": [ "37f0d1ea-4e7b-4d3b-adc3-738d4e3cf219" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022433Z:37f0d1ea-4e7b-4d3b-adc3-738d4e3cf219" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B205B3837D884CC98547412609FBE716 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 97CDCBDB37B449148B385DC7CF5639A1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+17": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+18": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "554" ], - "x-ms-client-request-id": [ "a8e207b2-0451-4e3e-88df-696c2f9ef0f4" ], + "x-ms-unique-id": [ "927" ], + "x-ms-client-request-id": [ "5275331d-4e65-40cb-9e9b-591d396ce6d4" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3902,40 +4037,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "0c506590-eb09-4257-9366-c82462ef1864", "fe42b18a-0e87-4410-9d30-fe7fbfa16992", "ccca8197-084e-4632-989c-599fd350cdc0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-request-id": [ "1f989da1-3761-4496-83a3-a0c8379257ec" ], - "x-ms-correlation-request-id": [ "1f989da1-3761-4496-83a3-a0c8379257ec" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T003754Z:1f989da1-3761-4496-83a3-a0c8379257ec" ], + "x-ms-original-request-ids": [ "70d3a856-f714-4baa-988a-1a9a3b4a069b", "24dda0f8-694d-4e81-851e-9b15b4c5a82a", "3f94e346-44c3-44d6-b4db-633ab5fd0c08" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "7b94b300-7e45-49c6-81c8-136c29010dea" ], + "x-ms-correlation-request-id": [ "7b94b300-7e45-49c6-81c8-136c29010dea" ], + "x-ms-routing-request-id": [ "WESTCENTRALUS:20260328T022434Z:7b94b300-7e45-49c6-81c8-136c29010dea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2FAB7CD7371145119F5DF0E4C472040B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB13EB92045E436298972181A6681807 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "555" ], - "x-ms-client-request-id": [ "c4b5a591-5402-488e-9452-f31a54f2f6a6" ], + "x-ms-unique-id": [ "928" ], + "x-ms-client-request-id": [ "624c2eb4-c14f-4994-b4bd-8ccc710d8d85" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3946,16 +4081,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "3fd71d23-0f0a-4369-a034-5c91ef5dde7f" ], + "x-ms-request-id": [ "1137afa5-f8c5-4681-8966-82ab4d8ab367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c73fb97-63f3-41d6-8bc6-19c695f1c978" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f2ef0b38-14e0-4873-b23b-7c936e46ffd0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9b372e6a-1274-4d7d-a469-e3ee77930f97" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003754Z:9b372e6a-1274-4d7d-a469-e3ee77930f97" ], + "x-ms-correlation-request-id": [ "05b5ca9c-68a4-48f9-8eb9-b8be5b372747" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022435Z:05b5ca9c-68a4-48f9-8eb9-b8be5b372747" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 988A5697814D412D91792D10891F1182 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:37:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7567F820B6684BCF938127A34E3FF9FD Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -3966,10 +4101,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2015-05-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-koe843ap0h?api-version=2015-05-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest5-koe843ap0h?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -3989,30 +4124,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e426534b-ca0f-405c-a51e-bf8535ff8541" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "ac66f363-b7c0-4922-b8cd-2eaa57466bb4" ], - "x-ms-correlation-request-id": [ "ac66f363-b7c0-4922-b8cd-2eaa57466bb4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003800Z:ac66f363-b7c0-4922-b8cd-2eaa57466bb4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3488d8ef-7d19-4b42-83a3-bd4fac6afae1" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], + "x-ms-request-id": [ "038fa2a7-5426-4bbf-9212-eff437ae3aae" ], + "x-ms-correlation-request-id": [ "038fa2a7-5426-4bbf-9212-eff437ae3aae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022443Z:038fa2a7-5426-4bbf-9212-eff437ae3aae" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 68DCA2BDCE80488DAAC8C20059E6277A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:37:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:38:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80459513CB7045268F7A51DDC0A20675 Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:24:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c20211e9-0000-0300-0000-69c47fe80000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"name\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"AppId\": \"7e45a49c-0d6f-462c-b26a-f3d9664067aa\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"d0aeae0f-39f1-4948-a546-a88802548349\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest5-1xmbohf4tc\",\r\n \"CreationDate\": \"2026-03-26T00:37:55.6950071+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-1xmbohf4tc_7e45a49c-0d6f-462c-b26a-f3d9664067aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-1xmbohf4tc-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6e036272-0000-0300-0000-69c73beb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest5-koe843ap0h\",\r\n \"name\": \"Func-PowerShell-NewTest5-koe843ap0h\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest5-koe843ap0h\",\r\n \"AppId\": \"2da755f6-fb16-4e5d-a707-f033277b3db7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"4d99cafc-78c3-4b7a-86f8-c5c201b85435\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest5-koe843ap0h\",\r\n \"CreationDate\": \"2026-03-28T02:24:35.8414362+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-koe843ap0h_2da755f6-fb16-4e5d-a707-f033277b3db7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-koe843ap0h-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+21": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-koe843ap0h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -4026,43 +4161,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB8CE899640\"" ], + "ETag": [ "\"1DCBE5A0BF657A0\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e09a54a-ecd1-4894-a04a-9716453d2ce7" ], + "x-ms-request-id": [ "7dc9e545-a077-4118-96da-4f7a738de9f9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8dbb734-458f-4580-b47c-6851fbf75884" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/642515c8-4f88-4b9c-b22e-b163d5bc23b4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "5eef4023-43b1-429f-ac1c-b7d13fd79561" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003844Z:5eef4023-43b1-429f-ac1c-b7d13fd79561" ], + "x-ms-correlation-request-id": [ "3c89eb9f-819c-410b-ad83-8e1a319dac0d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022526Z:3c89eb9f-819c-410b-ad83-8e1a319dac0d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 595032C5B638493DA3CDA8E4E98B5951 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:38:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:38:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 536A48FA37944CABA795340813D2A7FC Ref B: MWH011020809062 Ref C: 2026-03-28T02:24:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:25:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8828" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:03.1933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:24:46.1466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "558" ], - "x-ms-client-request-id": [ "6fdf59c2-a59f-4b12-b0bb-dd2ad69fb070" ], + "x-ms-unique-id": [ "931" ], + "x-ms-client-request-id": [ "778562dc-ac29-49d1-80ab-12d0e3cd01a0" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -4072,42 +4207,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8E65C8660" ], + "ETag": [ "1DCBE5A2324FE75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3f1fdab0-ddca-4372-8b51-863b02cd0e2c" ], + "x-ms-request-id": [ "71a98fbd-82de-4fce-86cb-11084a65200c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8a9e96ac-5a34-4f93-8523-4475638a9255" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:8a9e96ac-5a34-4f93-8523-4475638a9255" ], + "x-ms-correlation-request-id": [ "78c16576-d0ad-4872-a641-9e3cbab7e955" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022557Z:78c16576-d0ad-4872-a641-9e3cbab7e955" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 285BBE477EFB40F291B769FAC940BFA1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CDE4C4C7808447308830CF7A6A5BB2F7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:25:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:25:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8619" ], + "Content-Length": [ "8624" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:43.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:25:26.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "559" ], - "x-ms-client-request-id": [ "54122fca-76f2-47b8-871b-eed44dd8955b" ], + "x-ms-unique-id": [ "932" ], + "x-ms-client-request-id": [ "09ecacb6-d1aa-4ad3-b8bc-a649cc4f7ced" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4118,42 +4253,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8E65C8660" ], + "ETag": [ "1DCBE5A2324FE75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "90a591a4-b142-4137-b621-1854bd0a9cff" ], + "x-ms-request-id": [ "58674ef7-dfa4-48d1-901e-0304fdc8056b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b0ca5fc0-7fe7-4a34-ad38-31c22e57d93f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:b0ca5fc0-7fe7-4a34-ad38-31c22e57d93f" ], + "x-ms-correlation-request-id": [ "77f8b79f-52fd-4c78-9d8e-7e0f4c02d725" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022557Z:77f8b79f-52fd-4c78-9d8e-7e0f4c02d725" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C394813668942A2ACAE584AAC63D8FA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8D01F9F20EC348899B4FE61CB5488B9C Ref B: MWH011020809062 Ref C: 2026-03-28T02:25:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:25:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8619" ], + "Content-Length": [ "8624" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:43.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:25:26.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "560" ], - "x-ms-client-request-id": [ "591d859c-2160-4f2b-b582-a7c82a438c23" ], + "x-ms-unique-id": [ "933" ], + "x-ms-client-request-id": [ "3a542987-7eb1-455d-a1c4-cf66b92b1869" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4165,40 +4300,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f60bb89b-7c39-47ca-8590-e359f05691c3" ], + "x-ms-request-id": [ "9a55f400-8be0-4ffa-bcdd-6c8e52983513" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6344a0e1-63b4-44e3-ac2f-c9bc48406189" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/137bbdac-e64e-4970-8220-9b7f5cd79c75" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "8f78578b-cacc-4932-9935-ce5954e53ccc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:8f78578b-cacc-4932-9935-ce5954e53ccc" ], + "x-ms-correlation-request-id": [ "040e808c-f054-4459-ab53-086b4ac2eb53" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022558Z:040e808c-f054-4459-ab53-086b4ac2eb53" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D32BF647ABD44314A7130B862DDFD83B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B0119ED7299C44308087D7F7DC2D7553 Ref B: MWH011020809062 Ref C: 2026-03-28T02:25:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:25:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "561" ], - "x-ms-client-request-id": [ "80b03cdd-e75e-4ec8-82f9-e899e658f843" ], + "x-ms-unique-id": [ "934" ], + "x-ms-client-request-id": [ "96795bdf-86fd-4e64-b103-506482e4f29a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4210,41 +4345,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "818a8213-5fcd-425e-8b4f-d7513e37253e" ], + "x-ms-request-id": [ "3ce7fa3f-bfb8-4e37-8c01-48ae13c0c3d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/998b4a94-7fe6-4e49-b9e9-2eaf9b44c3b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb5f4eaf-670b-4e4e-8227-3ab958ea44a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "678cdaaa-46a2-4b84-b08a-3a2ccbff9ddd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003915Z:678cdaaa-46a2-4b84-b08a-3a2ccbff9ddd" ], + "x-ms-correlation-request-id": [ "3102c252-c31a-44b1-9ce2-7f0f1ea47e20" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022558Z:3102c252-c31a-44b1-9ce2-7f0f1ea47e20" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CADD080B80AA46618156E2326DADA331 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07CDABBC6F174004A4AD192386F8282F Ref B: MWH011020809062 Ref C: 2026-03-28T02:25:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:25:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94763,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01+26": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/geoRegions?sku=ElasticPremium\u0026linuxWorkersEnabled=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "562" ], - "x-ms-client-request-id": [ "91c3a741-9d2b-45ee-b152-88fc39cbad62" ], + "x-ms-unique-id": [ "935" ], + "x-ms-client-request-id": [ "b731a88e-a813-437c-a03c-5e80f6bb4c25" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4256,18 +4391,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4d35573-4015-4a62-b251-21b481eb1afc" ], + "x-ms-request-id": [ "67943793-2a87-4d93-af29-f733e8aea623" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/87a6817b-ef42-40d5-9a38-7c20787479c1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/377bd372-42e1-47fc-bd5f-8407826b8d7a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "47b1363a-6347-4ea4-a6d9-e1fcaa70a24f" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T003915Z:47b1363a-6347-4ea4-a6d9-e1fcaa70a24f" ], + "x-ms-correlation-request-id": [ "16d4c8e2-cf20-4cba-890e-1699822efdc3" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022558Z:16d4c8e2-cf20-4cba-890e-1699822efdc3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4CE9768D02424A2FA2F2C745F6D10DB1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 36FA163A09FD444D83047DDDDE29B57E Ref B: MWH011020809062 Ref C: 2026-03-28T02:25:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:25:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -4278,10 +4413,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+27": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": "{\r\n \"location\": \"central us\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 10,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -4296,44 +4431,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8FA9D7620" ], + "ETag": [ "1DCBE5A37DCF2F5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f80c3f8e-9994-4912-9c0f-a21d59b1d1c7" ], + "x-ms-request-id": [ "848605d5-a1e6-40d7-bb0e-ebfa0a20ffaa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b002f96a-e40a-4c93-82db-c7902f4330f5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5cd03047-549e-4b76-a640-2b080968779e" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "cb1959be-b157-4440-986a-d4e7124d370f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003918Z:cb1959be-b157-4440-986a-d4e7124d370f" ], + "x-ms-correlation-request-id": [ "c7dcbf1b-71ac-448a-a551-2829978b5fe1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022602Z:c7dcbf1b-71ac-448a-a551-2829978b5fe1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8C23B06D9E849858839563ED3E7C689 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:16Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 43915E32236B47178E6F34AFD47E459C Ref B: MWH011020809062 Ref C: 2026-03-28T02:25:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1915" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"central us\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "564" ], - "x-ms-client-request-id": [ "75c41a3a-a9ee-4e01-b47a-6e3500f0d975" ], + "x-ms-unique-id": [ "937" ], + "x-ms-client-request-id": [ "05c97b78-2293-4c1a-bc15-4d2cfc1cf7b1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -4344,41 +4479,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e8e542b-8f78-41b4-9773-fb17abb7d10d" ], + "x-ms-request-id": [ "617811c8-d1cb-4801-8eed-449d0a028899" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "176054d7-6a50-4831-b665-adf02c20c3dc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003949Z:176054d7-6a50-4831-b665-adf02c20c3dc" ], + "x-ms-correlation-request-id": [ "a7c84916-fd6f-4547-a0a0-e887221217d0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022632Z:a7c84916-fd6f-4547-a0a0-e887221217d0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E145BCBC84FD4D4E8990F14C76AB7FE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98A391C154A8429D93AADAE5198EFE4E Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "565" ], - "x-ms-client-request-id": [ "75c41a3a-a9ee-4e01-b47a-6e3500f0d975" ], + "x-ms-unique-id": [ "938" ], + "x-ms-client-request-id": [ "05c97b78-2293-4c1a-bc15-4d2cfc1cf7b1" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -4389,40 +4524,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "488ec73e-e580-4309-b8c2-f0bbe0705545" ], + "x-ms-request-id": [ "0aa0059a-44bd-4a4e-9a16-b85e726acdcf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b634b0d6-5d2b-497c-8c43-0bfdef1a06b3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003949Z:b634b0d6-5d2b-497c-8c43-0bfdef1a06b3" ], + "x-ms-correlation-request-id": [ "38bd1e3d-08c4-4143-9e5c-f96990268861" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022633Z:38bd1e3d-08c4-4143-9e5c-f96990268861" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB67E58F56744C0D85D50721C76D8EB9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 37A671DFA6934D27A7BAF0DF6F53B5A3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "566" ], - "x-ms-client-request-id": [ "f370c2c2-0dad-407e-9d08-e1d53d15a72c" ], + "x-ms-unique-id": [ "939" ], + "x-ms-client-request-id": [ "ba138e6a-d8c2-4037-bdc0-6a9011990335" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4434,40 +4569,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b1ddf55-0b8d-449d-9ebe-fb9ba094d42c" ], + "x-ms-request-id": [ "61da6349-c0a4-49d4-8598-dfd4f96ea556" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5b41f38e-bdc6-45f7-b6cf-1241e5b9bb9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003949Z:5b41f38e-bdc6-45f7-b6cf-1241e5b9bb9f" ], + "x-ms-correlation-request-id": [ "fab5173d-d76e-4758-9444-b9469c64fa6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022633Z:fab5173d-d76e-4758-9444-b9469c64fa6e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5F911E1647F41D59AAA276AA6020F46 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E614526FA9A742D4A731F167CD9F1BB1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "567" ], - "x-ms-client-request-id": [ "f936b605-d15a-4912-bb75-cc104836c143" ], + "x-ms-unique-id": [ "940" ], + "x-ms-client-request-id": [ "82edc23a-8e5e-4f0e-972a-dacaf89d4317" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4478,42 +4613,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB8E65C8660" ], + "ETag": [ "1DCBE5A2324FE75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0c49fbe9-1678-4ea2-a81d-875bedc24454" ], + "x-ms-request-id": [ "203ab507-2f71-4189-95af-3ef2f30dc19f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4b94f9bb-2030-4147-a145-a45945556ce9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:4b94f9bb-2030-4147-a145-a45945556ce9" ], + "x-ms-correlation-request-id": [ "8f7386b3-86aa-4130-9d1c-0c74f7cde735" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022633Z:8f7386b3-86aa-4130-9d1c-0c74f7cde735" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72875F3BF54149F8A3F7838F71A7C78E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 52B9BE1A5F4C462BA3B3C0C840C3824A Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8619" ], + "Content-Length": [ "8624" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:38:43.91\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:25:26.0233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+32": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "568" ], - "x-ms-client-request-id": [ "70770035-0bfb-4aa2-b3b7-0cf6b98ec489" ], + "x-ms-unique-id": [ "941" ], + "x-ms-client-request-id": [ "aa69b040-b130-4792-8d7b-ac87d291c4b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4525,40 +4660,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07d20765-0f9d-496a-a98a-c2297d4f83c4" ], + "x-ms-request-id": [ "462630e2-61ad-4426-ba4f-a08313bad3b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/702dbc6a-6e0c-4a2e-b058-cdcc9352d073" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18a3fabd-af9d-4d9f-a888-7cd8c7cb2b05" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7bd533e4-b080-4081-b812-a310b2e415b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:7bd533e4-b080-4081-b812-a310b2e415b1" ], + "x-ms-correlation-request-id": [ "88f45b19-be56-44a9-b01a-77dcd5b096c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022634Z:88f45b19-be56-44a9-b01a-77dcd5b096c1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B68D4105AE4148F78791C48C119D8131 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 77C2BE3C871645CA9EB3E6DD26585DFE Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "569" ], - "x-ms-client-request-id": [ "3af13d7e-b3de-41f1-82b6-4b88f65d05a6" ], + "x-ms-unique-id": [ "942" ], + "x-ms-client-request-id": [ "a839ce5f-c980-45a3-a53b-fd9c9b36188b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4570,41 +4705,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22ab3c96-68dc-45b9-9a94-c8c7d049ce00" ], + "x-ms-request-id": [ "bc45a08f-30b2-4bd1-9344-b49468408120" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2438b43f-4a40-4937-8753-b74fd3ee2758" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5af441bc-1bcf-4ef7-98d4-c3e00052bb87" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e086d48c-d71d-4a1c-b39d-e332d29d59a1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:e086d48c-d71d-4a1c-b39d-e332d29d59a1" ], + "x-ms-correlation-request-id": [ "bdaadc8e-122b-466a-9f41-8d3a58358445" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022634Z:bdaadc8e-122b-466a-9f41-8d3a58358445" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4D8F5CFF2AA040E68AB903D24BDE1851 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4C2154E6CFD43A89F0DC2E3145F32FA Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94763,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "570" ], - "x-ms-client-request-id": [ "bd0801da-dc52-4738-832c-21bc32f24e6b" ], + "x-ms-unique-id": [ "943" ], + "x-ms-client-request-id": [ "9a3ddccc-9fd5-45f3-bdcf-bf9442532a3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4616,40 +4751,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "79d960ad-32d7-4e90-9f58-a778f5dfc4b1" ], + "x-ms-request-id": [ "f28e02be-2550-4c9c-bfb9-0e38a47d8698" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "71d05aed-73d9-4ec8-bf48-fc89dc5d8060" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003950Z:71d05aed-73d9-4ec8-bf48-fc89dc5d8060" ], + "x-ms-correlation-request-id": [ "ab945e6b-37fe-465f-a610-dd15acd104c3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022634Z:ab945e6b-37fe-465f-a610-dd15acd104c3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 652D2DE5FB1A40D198A404405E3CA5AD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:50 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A7142E45A754E8D965C222D4DFFF4BF Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01+35": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/serverfarms?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "571" ], - "x-ms-client-request-id": [ "774b649f-2b29-4a37-9104-baf3e61ab0a4" ], + "x-ms-unique-id": [ "944" ], + "x-ms-client-request-id": [ "f083469b-cc12-4cc7-af5d-11ae60be9e3f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4660,40 +4795,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "66a2e8f8-92cd-47d7-9190-e3f9274e9396", "edef17ca-6794-49e6-9ce9-86cb96d3ced0" ], + "x-ms-original-request-ids": [ "a89053a5-1273-4570-a159-3e0e95e8bb81", "3081d971-4e91-4bad-9398-deb9288d8708" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "11698ff9-6b38-4727-a273-1f91b1dfc564" ], - "x-ms-correlation-request-id": [ "11698ff9-6b38-4727-a273-1f91b1dfc564" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T003951Z:11698ff9-6b38-4727-a273-1f91b1dfc564" ], + "x-ms-request-id": [ "178bbc61-29b5-4434-8f99-b9bc45f5e1e3" ], + "x-ms-correlation-request-id": [ "178bbc61-29b5-4434-8f99-b9bc45f5e1e3" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022635Z:178bbc61-29b5-4434-8f99-b9bc45f5e1e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E0CF569B3734307AAC476F5E3705877 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:50Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E26D9960D72346CBBD069563789BC6AD Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "19025" ], + "Content-Length": [ "20657" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046165,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046170,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055965,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055970,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055976,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "572" ], - "x-ms-client-request-id": [ "c7ac0a33-f7eb-49ad-bca4-629a79ae5ed2" ], + "x-ms-unique-id": [ "945" ], + "x-ms-client-request-id": [ "42f69cda-2ac1-4bb8-a8a9-c98174dea06f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4705,40 +4840,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d083ebd5-6a8e-4f49-82f8-3e8f9749bc88" ], + "x-ms-request-id": [ "76a6e7f5-b751-492f-a0cd-8e2cc3168311" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "45f760d4-beac-4620-b6eb-bdc27c5236f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003951Z:45f760d4-beac-4620-b6eb-bdc27c5236f1" ], + "x-ms-correlation-request-id": [ "05407041-337a-4270-92e6-8d5b6db20f71" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022635Z:05407041-337a-4270-92e6-8d5b6db20f71" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7C770F4576464D1CA32635E79466B908 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6880CA3C8770425C96F83C749E13F07E Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+36": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "573" ], - "x-ms-client-request-id": [ "a4d03a23-445d-466e-8f34-7a2bec23e7e6" ], + "x-ms-unique-id": [ "946" ], + "x-ms-client-request-id": [ "72e41ea2-2ba9-4430-abe3-e0f78fd8e2ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4750,40 +4885,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7539c6e8-693c-414b-8d22-873832d1c163" ], + "x-ms-request-id": [ "837044a3-f533-4bbc-9e50-a51e275c9e4b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "49c8b59a-7856-423a-baef-8e5016bd7fdf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003951Z:49c8b59a-7856-423a-baef-8e5016bd7fdf" ], + "x-ms-correlation-request-id": [ "97ab540a-4c03-45d5-8923-65308bc382d2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022635Z:97ab540a-4c03-45d5-8923-65308bc382d2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3A2E20C3BD94977800C140BACE0BDD1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2AD3410F5064431786DE75E4473165DD Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+37": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01+38": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "574" ], - "x-ms-client-request-id": [ "9c067f98-8b7a-4368-b880-63bbef9c516b" ], + "x-ms-unique-id": [ "947" ], + "x-ms-client-request-id": [ "3e970c38-0e7a-46f0-adcd-aa26c1c2ef52" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4795,40 +4930,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e0afd8c4-9473-427d-9ef7-1eaa5670cfe6" ], + "x-ms-request-id": [ "f23dfd13-05be-416a-a5b1-c9dea222963d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "62a8ac43-f4a1-4de0-98ed-1d9091186e21" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:62a8ac43-f4a1-4de0-98ed-1d9091186e21" ], + "x-ms-correlation-request-id": [ "c212bf19-9ccb-43fd-904f-07b27ad53eec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022636Z:c212bf19-9ccb-43fd-904f-07b27ad53eec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7CCB7DA335C745FDA23C70CC4C86912D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BAD27C9CD4F44E15BAC952242AA0574A Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":91524,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_91524\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:21:17.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+38": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+39": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "575" ], - "x-ms-client-request-id": [ "e3acbd5d-6216-4e0a-a263-ec403c0dcbd0" ], + "x-ms-unique-id": [ "948" ], + "x-ms-client-request-id": [ "9c141739-fbaa-4c93-ad3b-cd0465a2daae" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4840,40 +4975,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aba33c76-10f9-4fae-bef3-74ac3b5f21ad" ], + "x-ms-request-id": [ "27fd54a3-c632-4530-9ea7-2b869be96a32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "83b1b966-d552-4f73-8da0-16cbd738ea48" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:83b1b966-d552-4f73-8da0-16cbd738ea48" ], + "x-ms-correlation-request-id": [ "80a43a31-3bc2-4734-a67e-00db8413eb8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022636Z:80a43a31-3bc2-4734-a67e-00db8413eb8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5A49B6D522F3442EAE807DC6958C4576 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C2B15363BD9449D48DD8DA0AEF50C748 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1754" ], + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+39": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+40": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "576" ], - "x-ms-client-request-id": [ "467dfc1f-b6bf-46aa-9f87-a41ee1b02a8f" ], + "x-ms-unique-id": [ "949" ], + "x-ms-client-request-id": [ "2501c6b8-d750-4888-838b-dab42ef91f1e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4885,40 +5020,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c3576cff-a112-4846-a722-4f2c1af11e3a" ], + "x-ms-request-id": [ "4163db7e-1d50-465f-b860-8e813a365875" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "054e995e-809a-4267-8b12-37e93d2cf517" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:054e995e-809a-4267-8b12-37e93d2cf517" ], + "x-ms-correlation-request-id": [ "9657bcfe-5cd2-4506-9992-d74553c684e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022636Z:9657bcfe-5cd2-4506-9992-d74553c684e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A7F9364C469F43BDBA35D8D5CDBC8B9C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3E1FFD852F764F2DAF6A2DED33E192B4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+40": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+41": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "577" ], - "x-ms-client-request-id": [ "6856d581-16de-4ff7-98c4-7cbd0bc7616a" ], + "x-ms-unique-id": [ "950" ], + "x-ms-client-request-id": [ "a2012201-e354-4062-bd59-bc66fa9f653d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4930,40 +5065,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f111a647-43a8-4209-bb9a-6423572c9cfa" ], + "x-ms-request-id": [ "5b7e5b99-b16c-44c7-aa08-e3488df60a7d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "3fb97f9a-1d29-4079-a556-1ce9f6ed3906" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003952Z:3fb97f9a-1d29-4079-a556-1ce9f6ed3906" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c9680d33-92d9-4a0f-abdb-a05a01bffbe1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022636Z:c9680d33-92d9-4a0f-abdb-a05a01bffbe1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 175748BC85F94832825D2D8494BDA6DD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 21EFDF93C2E044AA9B7D412AF79AA433 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1742" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+41": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+42": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "578" ], - "x-ms-client-request-id": [ "93e8ce2a-4ecf-4725-ac62-7092052e49f5" ], + "x-ms-unique-id": [ "951" ], + "x-ms-client-request-id": [ "60540655-7438-4643-b0d8-9a8992c29004" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4975,40 +5110,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18bb0800-f7b8-4450-b884-7cd3412ad983" ], + "x-ms-request-id": [ "d4254edc-1027-4077-813d-c7cdf25a4145" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "6f58b9e3-82ae-43b9-8ad2-99673640ae1b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:6f58b9e3-82ae-43b9-8ad2-99673640ae1b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "58732628-d084-4fdc-a36f-ce8c8ac5068e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022636Z:58732628-d084-4fdc-a36f-ce8c8ac5068e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD19D62377A94D36B7811F31AB831418 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8DA8FC63C784335BA483FA11825EF71 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+42": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+43": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "579" ], - "x-ms-client-request-id": [ "393c865e-f630-4e62-ad92-b092f5fc7fcb" ], + "x-ms-unique-id": [ "952" ], + "x-ms-client-request-id": [ "d0e1a753-7304-4c1f-bcd1-31790d05185c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5020,40 +5155,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50e3e653-99c1-40bb-b700-cbd5c4110b6f" ], + "x-ms-request-id": [ "85064500-1ed9-4d8c-a53e-163dd0c9d9bd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1e5692f1-053b-4b4e-a8f8-41a08bc3ba8a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:1e5692f1-053b-4b4e-a8f8-41a08bc3ba8a" ], + "x-ms-correlation-request-id": [ "9bf8173a-e79a-4cda-a5bf-6771fcff867f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022637Z:9bf8173a-e79a-4cda-a5bf-6771fcff867f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2305311E08D41BAB3A243CCA28FBDA6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 319D968806CC4138BB5EFBBFDE7EF973 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:36 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+43": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+44": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "580" ], - "x-ms-client-request-id": [ "99d0e428-82da-476a-a1d2-61c771310999" ], + "x-ms-unique-id": [ "953" ], + "x-ms-client-request-id": [ "344cbfde-70e0-4d8a-b16e-b250d2358b0a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5065,40 +5200,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b8c40bcb-d19c-4355-b844-a0f35e2eef5a" ], + "x-ms-request-id": [ "5f6ac5c4-be38-44fb-aed7-86b9f07b8dcf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1cc9298d-17ba-47d8-9670-d52dcd0c136a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:1cc9298d-17ba-47d8-9670-d52dcd0c136a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "431561ea-92f0-4087-a3cc-d16ec1e36c94" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022637Z:431561ea-92f0-4087-a3cc-d16ec1e36c94" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0F6C207322749C2A5E5669ADE6CECF0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4FCE29E1AF5E418D818E4B507CDB3898 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+44": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+45": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "581" ], - "x-ms-client-request-id": [ "f7c9d960-2c17-430f-900f-4fec14092120" ], + "x-ms-unique-id": [ "954" ], + "x-ms-client-request-id": [ "9802de45-64d3-4652-9bd8-c5d26c77d873" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5110,40 +5245,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1063ea71-f6a4-495c-adaf-4d0b0eb59157" ], + "x-ms-request-id": [ "d0d2a209-6033-421a-88c0-3c0ebfedade5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4262c27e-915e-4a2a-a90b-9efa3fabf990" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003953Z:4262c27e-915e-4a2a-a90b-9efa3fabf990" ], + "x-ms-correlation-request-id": [ "9551af78-c399-4ea6-891a-54e0e58704e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022637Z:9551af78-c399-4ea6-891a-54e0e58704e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8946AB2D81E94B8DA171604212357284 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 628642FF5A4E4587B6B1C3A00FBDFB24 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+45": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+46": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "582" ], - "x-ms-client-request-id": [ "61b80818-602e-44c3-b354-dd3b134e4666" ], + "x-ms-unique-id": [ "955" ], + "x-ms-client-request-id": [ "58659266-3abd-4667-9b84-40e6d0ee0359" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5155,40 +5290,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dcf9cf11-5a37-4ebb-bf6b-f141a5937167" ], + "x-ms-request-id": [ "25cd43f4-26a5-473b-bf53-a45dfb219603" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c001065f-28a9-478b-ba42-cdbbd5c73f61" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T003954Z:c001065f-28a9-478b-ba42-cdbbd5c73f61" ], + "x-ms-correlation-request-id": [ "e2aee49d-5762-427f-932b-d68dad36922f" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022638Z:e2aee49d-5762-427f-932b-d68dad36922f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75EAAA9F54AB4B8EA2317414C0B0573F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99C4971F24624F91B85580802AEC16C7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+46": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+47": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "583" ], - "x-ms-client-request-id": [ "f408efb7-d149-4732-b8ff-5450887f7746" ], + "x-ms-unique-id": [ "956" ], + "x-ms-client-request-id": [ "7e9bf692-5bdf-45eb-a436-924bf88015e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5200,40 +5335,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a63425fc-4d0a-4a1d-ac7b-c3ca29e8a0b3" ], + "x-ms-request-id": [ "f373e946-8a2c-47ca-93fc-fe2fa8fa22d7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "183b1545-1ff8-4866-84a4-6873691fefee" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003954Z:183b1545-1ff8-4866-84a4-6873691fefee" ], + "x-ms-correlation-request-id": [ "72b52bd0-9d32-4507-b82f-c1c94272556e" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022638Z:72b52bd0-9d32-4507-b82f-c1c94272556e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 95DD415A2CB54F7EA03784B9FE3EDA15 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1697" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+48": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "957" ], + "x-ms-client-request-id": [ "265de214-8a79-45e1-807c-54ccda4b8445" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "e762c1fd-9aa6-4e7e-96ce-4560211f3685" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "76327213-4dbf-4c64-b762-365bb559bc96" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022638Z:76327213-4dbf-4c64-b762-365bb559bc96" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 97AA34F5C76A4459934A17ED088A9DCD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B3386298C9BE4D389163EAA507178859 Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+47": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+49": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "584" ], - "x-ms-client-request-id": [ "fc440176-9e7b-4aab-a819-c1ee8ab594a5" ], + "x-ms-unique-id": [ "958" ], + "x-ms-client-request-id": [ "e9007180-de9e-4e66-be1a-ee4dcc7658ae" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5245,32 +5425,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "22270e5e-55bf-4c7b-82b4-1f310b494cd0" ], + "x-ms-request-id": [ "8521f26a-dc03-40c5-aca5-87d3a0f86d7b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c2f4639-abc2-4aef-a4ae-6d2ba0277f42" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a71a2fe-24f5-49c6-b5d5-410b613daa81" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f8767dec-eafd-47c9-bb8e-cd2f2236a652" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003954Z:f8767dec-eafd-47c9-bb8e-cd2f2236a652" ], + "x-ms-correlation-request-id": [ "bcb453b2-717f-45c6-9551-7efbc002c5ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022639Z:bcb453b2-717f-45c6-9551-7efbc002c5ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F2610122B374A95A2D615ACB26A8BFC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A08DC8C8ABB4D8B97D0ED5D9809E28D Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+48": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+50": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-koe843ap0h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5284,43 +5464,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB8E65C8660\"" ], + "ETag": [ "\"1DCBE5A2324FE75\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "575a9651-4dd7-4749-9c9c-e47b32ccf602" ], + "x-ms-request-id": [ "54ddb7b7-ff04-493c-ac3c-b4a5442b7b83" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6a50628-223d-440f-845c-19204fb09ef5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf0d4c0c-c596-4772-b525-0fc31d55bf98" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "57be8835-0cfb-4c72-80d1-e92b19510513" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T003956Z:57be8835-0cfb-4c72-80d1-e92b19510513" ], + "x-ms-correlation-request-id": [ "8d69808a-a303-42d8-8611-55fe3c334bc0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022642Z:8d69808a-a303-42d8-8611-55fe3c334bc0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 17C475F38F8949A6B5E14CB73C9FF41D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:39:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:39:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0C4A08CC11EF4618B79EE71B0FBA0CCE Ref B: MWH011020809062 Ref C: 2026-03-28T02:26:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:26:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:26:41.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+49": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+51": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "586" ], - "x-ms-client-request-id": [ "0237429f-4921-48d1-b199-9baf1703a58d" ], + "x-ms-unique-id": [ "960" ], + "x-ms-client-request-id": [ "9593aa2c-a923-472e-88ef-4c70e6bd16b0" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -5330,42 +5510,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9116E86A0" ], + "ETag": [ "1DCBE5A4FE1BB80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9c5973cc-dc0d-47b6-bcf2-b97c5050a3eb" ], + "x-ms-request-id": [ "189d63e2-5eae-4486-a40e-ecc9adfc5503" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d002b65c-e60a-492e-9269-a0c02c27015e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004027Z:d002b65c-e60a-492e-9269-a0c02c27015e" ], + "x-ms-correlation-request-id": [ "23f029f0-0866-4f9e-9964-f3000d0be927" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022712Z:23f029f0-0866-4f9e-9964-f3000d0be927" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B9255E081E145CBB59203BB51935B76 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCFC38643D2E4FC585B1587939DAF80C Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8618" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:26:41.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+50": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+52": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "587" ], - "x-ms-client-request-id": [ "3ec7b286-cd69-4694-9a4f-ff56541d7367" ], + "x-ms-unique-id": [ "961" ], + "x-ms-client-request-id": [ "5446e5af-a40e-4794-a5f4-a95155d85b06" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5376,42 +5556,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9116E86A0" ], + "ETag": [ "1DCBE5A4FE1BB80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba64dd71-5c7d-4f22-aca4-42594792f755" ], + "x-ms-request-id": [ "d6269ab7-c417-470a-9726-9141750834e1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "438e3b11-da6e-4800-a83d-5e49652626bb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004027Z:438e3b11-da6e-4800-a83d-5e49652626bb" ], + "x-ms-correlation-request-id": [ "ecd34d6b-3cd0-4c83-bf21-f4c5ed641cca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022713Z:ecd34d6b-3cd0-4c83-bf21-f4c5ed641cca" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6AE9301A92494270A8E233CE277A761E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CEB8EE083F08434E8456A69B56ABBAEE Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8618" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:26:41.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+51": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+53": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "588" ], - "x-ms-client-request-id": [ "66eb2679-c9ab-4017-ac8c-e3c905f89af8" ], + "x-ms-unique-id": [ "962" ], + "x-ms-client-request-id": [ "527759a8-ab8f-4018-9662-8eef270a298b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5423,40 +5603,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab6297e7-d003-46d9-8ca2-26c384102b3f" ], + "x-ms-request-id": [ "fa09ded5-a0fb-4dcd-ae16-8ca67ee3d65f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/be433ce3-102d-4d87-8a97-e8495d81e6bb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/051fbe44-4bac-4f9a-ae26-7b877f2e5455" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f40b9d7a-fa0d-4000-a2bc-011d7c78f1f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:f40b9d7a-fa0d-4000-a2bc-011d7c78f1f6" ], + "x-ms-correlation-request-id": [ "d2d1e897-c26a-4a60-888f-6f6d60c6beb3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022713Z:d2d1e897-c26a-4a60-888f-6f6d60c6beb3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BB8B51AFE6D44D7995C76997B0A77467 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B833DA3B616E4461BA1061705EF75555 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+52": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+54": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "589" ], - "x-ms-client-request-id": [ "bea80e09-f364-4fb2-a56f-8c3b2cec8883" ], + "x-ms-unique-id": [ "963" ], + "x-ms-client-request-id": [ "0278859d-4fbe-4c1e-8ec5-c41138e50ae9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5468,41 +5648,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "117425bf-d928-4080-84e8-9eed9f2b206e" ], + "x-ms-request-id": [ "3b45868b-f972-431d-babb-d95f786b7add" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7471f26d-5220-4497-b50a-8202826f2b60" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/04c69905-ea4d-47b2-afe0-50a3349b7cd4" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eeda7879-45f0-4119-ad74-757265048e33" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:eeda7879-45f0-4119-ad74-757265048e33" ], + "x-ms-correlation-request-id": [ "128efab0-a9b8-4c6f-95b9-d0bf5d1249a9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022713Z:128efab0-a9b8-4c6f-95b9-d0bf5d1249a9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42670BA778B04D049F129899E7798BB7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6758004261384B1C97DB13F4382A6B2D Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94763,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+53": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+55": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "590" ], - "x-ms-client-request-id": [ "10e4edbc-895b-4d16-89bd-f4998fbc00d6" ], + "x-ms-unique-id": [ "964" ], + "x-ms-client-request-id": [ "808b2a82-bc46-439d-8ebf-4fae9d914990" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5513,42 +5693,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9116E86A0" ], + "ETag": [ "1DCBE5A4FE1BB80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "409c6f54-a2ef-426f-ad03-458712e10271" ], + "x-ms-request-id": [ "de5643f6-c46d-4938-be74-af066be7f082" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "84353e25-78bd-4a4c-8ba6-7500546e50ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:84353e25-78bd-4a4c-8ba6-7500546e50ac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "7afac624-a0fd-49e8-8667-334b3a3393c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022714Z:7afac624-a0fd-49e8-8667-334b3a3393c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 281BCBD8EC6444DEACF4656FD78F42CD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 36F44CFE66224070AB1DF80E6A5C8158 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:13 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8618" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:39:56.17\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"2bf895e8-db71-4b97-b515-9ffcbc6a7f1b\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:26:41.08\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"0ad41386-d92e-417a-af07-ab64e6747b87\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+54": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+56": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "591" ], - "x-ms-client-request-id": [ "afdce3df-b73d-4c23-a6b3-ac19b9ac7a6c" ], + "x-ms-unique-id": [ "965" ], + "x-ms-client-request-id": [ "a3ff33a0-affc-4303-9287-e6ea4d08b6db" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5560,40 +5740,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d52ca0b7-7160-42e9-91e3-818f259274e5" ], + "x-ms-request-id": [ "08a14ee6-f12f-4b69-8c5c-b5e1485dbeb3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f51c59cb-ba80-4e65-a7e9-8acfe842a47b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc59f85f-c22f-468f-98fa-553c7a17ddcb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "aef19785-ab13-42b1-ba72-f91b497efc2f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004028Z:aef19785-ab13-42b1-ba72-f91b497efc2f" ], + "x-ms-correlation-request-id": [ "4d2e88cc-1d0f-46a8-945e-69bd4604c40e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022714Z:4d2e88cc-1d0f-46a8-945e-69bd4604c40e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E357DC52B14F4D7C97E9788C29B9B722 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0046A51DA881452C816D5857509DA860 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+55": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+57": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "592" ], - "x-ms-client-request-id": [ "3e7542d1-cb46-4a0f-8b77-b189fab6f844" ], + "x-ms-unique-id": [ "966" ], + "x-ms-client-request-id": [ "c747cd14-ffae-4b5c-bb94-9843ef8d34c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5605,41 +5785,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "688395bb-3d8e-4b54-a977-62959c2e67ce" ], + "x-ms-request-id": [ "3a2ad1db-fa16-4dc3-a1f2-9be1884bca88" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8b410b67-8b2d-4226-9326-9234ee89bbda" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90634233-ba63-4c8f-9ccc-a1b0ef9c3260" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "8992102d-5950-4ada-8799-d36912db73b5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004029Z:8992102d-5950-4ada-8799-d36912db73b5" ], + "x-ms-correlation-request-id": [ "87ffe0f9-3f25-486f-86da-0fa390cb56f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022714Z:87ffe0f9-3f25-486f-86da-0fa390cb56f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DD83A386C0945E0997DD31E3D925E01 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AD3FADFE149648969DE1727CCAAA9F85 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4249" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88199,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94763,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+56": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+58": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "593" ], - "x-ms-client-request-id": [ "63a96cd0-6f1d-46a1-876e-f13b0ef080e0" ], + "x-ms-unique-id": [ "967" ], + "x-ms-client-request-id": [ "4f1cdff0-4897-44fe-96ec-91f83921ed64" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5651,40 +5831,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "faa48db1-4040-497f-827b-46a73956b871" ], + "x-ms-request-id": [ "dde1f0f6-ed13-43d0-9400-b993b3d33643" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "46d51a38-02e0-46f0-a2e4-10ca4ac2a82a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004029Z:46d51a38-02e0-46f0-a2e4-10ca4ac2a82a" ], + "x-ms-correlation-request-id": [ "4eeb5ecb-6d43-43d9-9560-6e7de3ca0122" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022714Z:4eeb5ecb-6d43-43d9-9560-6e7de3ca0122" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 889FEE54433A4CADA1C1FD7B5659CBB5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A71729451784580844C527CEBF16819 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+57": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+59": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "594" ], - "x-ms-client-request-id": [ "ee59c782-fadb-418c-9353-3c28e91184ac" ], + "x-ms-unique-id": [ "968" ], + "x-ms-client-request-id": [ "73b59524-1e3c-4e14-9254-ce9a1c0b40a3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5696,32 +5876,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9bd6ed99-f78c-4559-96b9-7bf7b417ec5d" ], + "x-ms-request-id": [ "db0cf1fc-8ab5-4d88-9a66-5f6535ce1947" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/23ab5e03-d82e-4067-8a80-2b9dc4c2fa9d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/241e7eda-44d5-4277-854f-6c27fdbf272a" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "cb5cee37-57a3-4795-aecc-faa43869426a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004029Z:cb5cee37-57a3-4795-aecc-faa43869426a" ], + "x-ms-correlation-request-id": [ "8224e10c-907f-42d4-b907-a815747df50f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022715Z:8224e10c-907f-42d4-b907-a815747df50f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8AE0797A11EA4B9B89ED5CF9310AAB65 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AF78E3CFF7C44C58B51CF96DAE67D2EA Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:14Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:14 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+58": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+60": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-koe843ap0h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -5735,43 +5915,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB9116E86A0\"" ], + "ETag": [ "\"1DCBE5A4FE1BB80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "831608b4-cf10-4420-8635-3720a9dc843a" ], + "x-ms-request-id": [ "393bea8b-0acf-4289-a951-39adf6d43307" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b905bc64-51bb-44e5-9b76-099bdb045b71" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa6383ff-866e-4051-953a-ed049b1ed402" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "757e00ee-4217-4835-bf90-d75bc5b486ef" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004032Z:757e00ee-4217-4835-bf90-d75bc5b486ef" ], + "x-ms-correlation-request-id": [ "f0786084-82ae-4999-9e32-c96ea17c34c6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022718Z:f0786084-82ae-4999-9e32-c96ea17c34c6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A51A25EF50741B2B435C7930F804118 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:40:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:40:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 70FBD925592743E99B5B4FE45313EC30 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:15Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8687" ], + "Content-Length": [ "8681" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:17.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+59": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+61": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "596" ], - "x-ms-client-request-id": [ "84a4c5a1-fa87-4894-982b-a6d660eb029b" ], + "x-ms-unique-id": [ "970" ], + "x-ms-client-request-id": [ "ff6c82a1-5f51-4666-969a-052cef5f71f3" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -5781,42 +5961,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9265CE76B" ], + "ETag": [ "1DCBE5A6587B980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9b15713c-6a7c-4931-ab88-587318d4d4a2" ], + "x-ms-request-id": [ "db766eb8-0f52-4f4b-966a-77aaadb97ee0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fb171523-f154-4cfa-a06b-6dbb8ed10e75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004102Z:fb171523-f154-4cfa-a06b-6dbb8ed10e75" ], + "x-ms-correlation-request-id": [ "53564ba6-6472-4a50-a8ec-871fb6542e50" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022749Z:53564ba6-6472-4a50-a8ec-871fb6542e50" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BDB63423C5B845C8952F8F1DB98C9F2B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F024CD689964B8BA0C57852824711A9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8477" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:17.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+60": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+62": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "597" ], - "x-ms-client-request-id": [ "f7311f90-a2d2-4f7c-a746-8f7cabe39b7f" ], + "x-ms-unique-id": [ "971" ], + "x-ms-client-request-id": [ "3ea7eb4e-0ad1-4fd9-9313-2692bdd8c985" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5827,42 +6007,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9265CE76B" ], + "ETag": [ "1DCBE5A6587B980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "50b893a1-59f6-458d-a295-8e1ce4612b5c" ], + "x-ms-request-id": [ "6de02d07-f486-42a0-a739-a4a136884b78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "daaf20b1-6052-4391-8977-e241d61ed8c7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004102Z:daaf20b1-6052-4391-8977-e241d61ed8c7" ], + "x-ms-correlation-request-id": [ "8cf56073-e0fa-4eec-bf7b-9a2cf4a61f8b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022749Z:8cf56073-e0fa-4eec-bf7b-9a2cf4a61f8b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C027930DB2A243E8BFACAF0E32E63F8E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07438A130E714345A4C409D6CBC872DA Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8477" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:17.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+61": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+63": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "598" ], - "x-ms-client-request-id": [ "7836a6f9-28b4-4490-b493-dc23710aa19f" ], + "x-ms-unique-id": [ "972" ], + "x-ms-client-request-id": [ "4eaa3e11-a68f-49a9-ae8b-5142fba22fb4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5874,40 +6054,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9d1921c-f1a4-4356-837d-b2684aa6fad7" ], + "x-ms-request-id": [ "7e0cc8e5-3bfc-40be-8fda-91e13c63e862" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/646822ac-1fe7-4178-9ee6-eb32546c5456" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f0fddc81-3833-4535-aa19-2416b1df1c82" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2c48f7a8-7a39-4365-952a-434faded6b35" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004103Z:2c48f7a8-7a39-4365-952a-434faded6b35" ], + "x-ms-correlation-request-id": [ "fa771e61-ca72-4cb4-8f69-2849da8d8ffc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022749Z:fa771e61-ca72-4cb4-8f69-2849da8d8ffc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 083555CCAC494CA5ADFD5BC7469DF21C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 356FE37B841942F28F3D195BD2EE5829 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+62": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+64": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "599" ], - "x-ms-client-request-id": [ "09cb73f5-ee4f-44b4-9392-e8c5de6b455b" ], + "x-ms-unique-id": [ "973" ], + "x-ms-client-request-id": [ "53048e72-fc66-4db2-bfaa-51f18bbb9a84" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5919,41 +6099,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af7239be-555c-4864-b551-f6b3817e5552" ], + "x-ms-request-id": [ "1ccd0749-1d8d-4b60-9c51-11d9040bd8c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5bd8d73-03ab-4d7a-9467-d8e7cf516b21" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e85aa02-8dab-4cda-8cf9-362d971404bd" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a38331eb-54df-4f7b-8508-dc93247d88f9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004103Z:a38331eb-54df-4f7b-8508-dc93247d88f9" ], + "x-ms-correlation-request-id": [ "d8f75ce6-a88e-4142-a3a8-04983604771d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022750Z:d8f75ce6-a88e-4142-a3a8-04983604771d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E81F2CC022AA48F38BBA02CD675F3124 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 09DF1E3EDA9B44ABB6772BBBA523A5DE Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+63": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+65": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "600" ], - "x-ms-client-request-id": [ "4dba103f-a518-4885-82c4-401d66f840ad" ], + "x-ms-unique-id": [ "974" ], + "x-ms-client-request-id": [ "aa7a22ed-0dc7-4684-b57f-030b9855c140" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5964,42 +6144,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9265CE76B" ], + "ETag": [ "1DCBE5A6587B980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce5bc5e5-3545-4aa8-ac59-ce72223a132a" ], + "x-ms-request-id": [ "77e9433e-ea4d-4d0f-9bc9-14272a925e06" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "61f92954-a8ef-43e9-a04c-92dbffb63be1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004103Z:61f92954-a8ef-43e9-a04c-92dbffb63be1" ], + "x-ms-correlation-request-id": [ "f04292f4-fd53-4802-80c3-836ba8a4d93b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022750Z:f04292f4-fd53-4802-80c3-836ba8a4d93b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9790238A626E4429887D8774BDCDE607 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6A2AE9F90A284373A2378D78EF6288EF Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8483" ], + "Content-Length": [ "8477" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:40:31.2866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:17.4\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+64": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+66": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "601" ], - "x-ms-client-request-id": [ "1344c0a2-0d84-4c05-9a26-1523bae053fa" ], + "x-ms-unique-id": [ "975" ], + "x-ms-client-request-id": [ "ecd3f644-999f-4d5c-ac81-3379ceefdb04" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6011,40 +6191,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f11ea575-0c10-4274-89c3-da56dfcac4c3" ], + "x-ms-request-id": [ "f8b226ce-0be0-424b-af7a-a1baad618eb3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3a3de29-fefb-4df2-98d9-14d3d1990a3d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9aa16c60-8c09-4893-93ae-88ad8153a46f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "33680eb1-8a2b-4946-beb0-32096e0215a7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004104Z:33680eb1-8a2b-4946-beb0-32096e0215a7" ], + "x-ms-correlation-request-id": [ "e42c715d-83d6-4956-b1ef-f440681998f5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022750Z:e42c715d-83d6-4956-b1ef-f440681998f5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F0DFCE9EE6244EB7B74C23B918AEF7F1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F5BC4D20C1BD413895A037ED5C90A188 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+65": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+67": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "602" ], - "x-ms-client-request-id": [ "513f11ce-fbf3-44b6-8720-87a99080876f" ], + "x-ms-unique-id": [ "976" ], + "x-ms-client-request-id": [ "7452a78e-9db8-4746-ae3c-9279c38daf0c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6056,41 +6236,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fecc2bc6-f100-4696-866e-d4d587cb1786" ], + "x-ms-request-id": [ "aa2432f8-b9de-429a-8581-9036e300be85" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a205fe62-6f40-4ba1-9c0e-31addf490df5" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d93abd88-9f3d-4197-ab31-566f10546581" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "4be7c8da-e768-469b-af9e-6cbb8ca97b6b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004104Z:4be7c8da-e768-469b-af9e-6cbb8ca97b6b" ], + "x-ms-correlation-request-id": [ "f9f4d979-4e99-4937-bec1-3ea0f1480b78" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022750Z:f9f4d979-4e99-4937-bec1-3ea0f1480b78" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0F65F225BF7C46F7A3E5085510214ECC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F59F3C5939BC43ACB7B09C54CEE5B823 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+66": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+68": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "603" ], - "x-ms-client-request-id": [ "af29210b-205e-40cd-8a81-899870fa0bf9" ], + "x-ms-unique-id": [ "977" ], + "x-ms-client-request-id": [ "0f5e8915-2f38-49fc-bdad-7ea0653e7a1f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6102,40 +6282,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a169f970-f2fb-4053-b3d7-3013934f5cb9" ], + "x-ms-request-id": [ "1cd2fad0-861c-4ebd-914a-76abca015db8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "3bfb963c-780f-445a-8c42-eb687c6edb83" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004104Z:3bfb963c-780f-445a-8c42-eb687c6edb83" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c6eeb0ca-d2d4-4479-8e4b-0ce807efa591" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022751Z:c6eeb0ca-d2d4-4479-8e4b-0ce807efa591" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7FD01E91940C42F89F1606FEF50CF18C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DF08EEC3CB04C94B32FC8BB9B1FD899 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+67": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+69": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "604" ], - "x-ms-client-request-id": [ "41429e6a-83d7-461a-af65-1ccd3d3fc00f" ], + "x-ms-unique-id": [ "978" ], + "x-ms-client-request-id": [ "a48bad06-86b2-4307-8664-27e5968741c7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6147,40 +6327,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e57ea3f2-b49b-4129-987a-b4de0f63b00e" ], + "x-ms-request-id": [ "70005967-3762-4744-9da9-34957a18d99a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/61db41c1-674c-450e-8762-eea379a486b9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a80bf14-e8f0-4719-a536-f82fa08de377" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "7efc51fd-dada-46dc-b54e-ee9399730b98" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004105Z:7efc51fd-dada-46dc-b54e-ee9399730b98" ], + "x-ms-correlation-request-id": [ "fc68cb62-7e8e-47eb-a3d8-76287ae4b9f1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022751Z:fc68cb62-7e8e-47eb-a3d8-76287ae4b9f1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 807DC59AD0FE441E90F311C4BA487C80 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9EDB0BFFE0214C2F8741216A147C821A Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1239" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+68": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01+70": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Insights/components?api-version=2015-05-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "605" ], - "x-ms-client-request-id": [ "9cd7e5d8-9dba-4941-9b44-c347d6659964" ], + "x-ms-unique-id": [ "979" ], + "x-ms-client-request-id": [ "26ca12de-21ac-49fc-9a61-81eaf648c59a" ], "CommandName": [ "Az.Functions.internal\\Get-AzAppInsights" ], "FullCommandName": [ "Get-AzAppInsights_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6194,29 +6374,29 @@ "x-ms-original-request-ids": [ "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "e0808085-3226-4a7e-aef8-be6cfa0efb0d" ], - "x-ms-correlation-request-id": [ "e0808085-3226-4a7e-aef8-be6cfa0efb0d" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004106Z:e0808085-3226-4a7e-aef8-be6cfa0efb0d" ], + "x-ms-request-id": [ "1e821d6d-553d-4fae-977e-ff552c716b14" ], + "x-ms-correlation-request-id": [ "1e821d6d-553d-4fae-977e-ff552c716b14" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022752Z:1e821d6d-553d-4fae-977e-ff552c716b14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EDF7DEAD656E4CE6A205A7EC03E330E6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:05Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 745B6AAE25784C54BA1E69A0187F3576 Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "29732" ], + "Content-Length": [ "45860" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"c10292db-0000-0300-0000-69c477950000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-iob4d5\",\"AppId\":\"b4bee174-c345-4943-95c8-d758d7e3d8eb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"788eb9e9-0a6b-4fa9-9b2f-f75a195d51df\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-iob4d5\",\"CreationDate\":\"2026-03-26T00:02:24.2875929+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershell-74-iob4d5_b4bee174-c345-4943-95c8-d758d7e3d8eb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-iob4d5-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c10223e8-0000-0300-0000-69c477e60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-jus0p7\",\"AppId\":\"e1d253b0-e2b0-4335-a9a4-9589ad5e9f64\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"68fa48d0-09be-4273-ab33-1211a9270e6c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-jus0p7\",\"CreationDate\":\"2026-03-26T00:03:45.6073577+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-22-jus0p7_e1d253b0-e2b0-4335-a9a4-9589ad5e9f64_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-jus0p7-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c102eff1-0000-0300-0000-69c478270000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/microsoft.insights/components/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-xitn52\",\"AppId\":\"94cbda68-af0a-4d24-96e6-f43d439cdab5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d25a58e2-d7f2-427e-ac14-9e4b30956ca3\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-xitn52\",\"CreationDate\":\"2026-03-26T00:04:46.9772803+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-8-xitn52_94cbda68-af0a-4d24-96e6-f43d439cdab5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-xitn52-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c102bafd-0000-0300-0000-69c4787d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-rmx6vl\",\"AppId\":\"a3626309-69b9-4e07-b9fd-843aa50248d0\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"527fa2f4-47f2-4ac4-ade9-fabae35a8f5e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-rmx6vl\",\"CreationDate\":\"2026-03-26T00:06:16.6201227+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-312-rmx6vl_a3626309-69b9-4e07-b9fd-843aa50248d0_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-rmx6vl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2024307-0000-0300-0000-69c478c00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h-new\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-d90zp8nj5h-new\",\"AppId\":\"6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-d90zp8nj5h-new\",\"CreationDate\":\"2026-03-26T00:07:23.7109657+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h-new_6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202fa2e-0000-0300-0000-69c47a0b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest1-d3t8hyrciu\",\"name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"AppId\":\"e67bde51-45a5-4f45-b6dd-03a96bcd939e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8a93d396-fa83-4fef-8f0f-1fd48e9e4899\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-d3t8hyrciu\",\"CreationDate\":\"2026-03-26T00:12:53.280685+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-d3t8hyrciu_e67bde51-45a5-4f45-b6dd-03a96bcd939e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-d3t8hyrciu-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202943c-0000-0300-0000-69c47a710000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-CustomImage-4ps815eax3\",\"name\":\"Functions-CustomImage-4ps815eax3\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-4ps815eax3\",\"AppId\":\"05343c66-9cbf-4b65-ad79-6e07a5f9b887\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d0a8fd25-6f5a-4920-a76f-0dc0ff656a13\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomImage-4ps815eax3\",\"CreationDate\":\"2026-03-26T00:14:35.5368194+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-4ps815eax3_05343c66-9cbf-4b65-ad79-6e07a5f9b887_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-4ps815eax3-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202f148-0000-0300-0000-69c47ad10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/microsoft.insights/components/Functions-Python-7mrsp6yjac\",\"name\":\"Functions-Python-7mrsp6yjac\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-7mrsp6yjac\",\"AppId\":\"109dd349-0540-4220-a333-02741ec50c53\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"29cd09e4-f396-4270-9b30-047a14841e5e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-7mrsp6yjac\",\"CreationDate\":\"2026-03-26T00:16:11.6046114+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-7mrsp6yjac_109dd349-0540-4220-a333-02741ec50c53_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-7mrsp6yjac-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202a251-0000-0300-0000-69c47b170000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"AppId\":\"db56b95a-3f4f-4eb1-b507-1e5a10443bc4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ed7b9976-dd73-42e2-99e4-89a1f8783d15\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"CreationDate\":\"2026-03-26T00:17:21.5953108+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_db56b95a-3f4f-4eb1-b507-1e5a10443bc4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202fe67-0000-0300-0000-69c47bd10000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h\",\"name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-d90zp8nj5h\",\"AppId\":\"dd90b389-c106-473f-8d04-dcc13bc70a14\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8492dd6b-bfa8-42e6-9744-d817aec945a5\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-d90zp8nj5h\",\"CreationDate\":\"2026-03-26T00:18:59.7875813+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h_dd90b389-c106-473f-8d04-dcc13bc70a14_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2026774-0000-0300-0000-69c47c330000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest6-xpt80akrzv\",\"name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"AppId\":\"c430c8fd-e25f-4b8d-a2a6-8d516500b729\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"95095884-cb83-4553-9e6b-47a8fea3dbb1\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest6-xpt80akrzv\",\"CreationDate\":\"2026-03-26T00:22:06.0522072+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest6-xpt80akrzv_c430c8fd-e25f-4b8d-a2a6-8d516500b729_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest6-xpt80akrzv-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2027480-0000-0300-0000-69c47c940000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-DotNet-27pudsgrfk\",\"name\":\"Functions-DotNet-27pudsgrfk\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-27pudsgrfk\",\"AppId\":\"d83ad2cf-84f9-46f5-8927-48a571699a1a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"40de7d95-8f37-43cc-ac8f-176fff0c5701\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-27pudsgrfk\",\"CreationDate\":\"2026-03-26T00:23:43.9914139+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-27pudsgrfk_d83ad2cf-84f9-46f5-8927-48a571699a1a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-27pudsgrfk-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c2025b94-0000-0300-0000-69c47d340000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Java-0ehb98v3n4\",\"name\":\"Functions-Java-0ehb98v3n4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-0ehb98v3n4\",\"AppId\":\"5e6a4135-3c4e-4226-8637-1225684a12ad\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"311d7fd0-0184-4a35-92aa-3a6c064497e9\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Java-0ehb98v3n4\",\"CreationDate\":\"2026-03-26T00:26:24.4752228+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-0ehb98v3n4_5e6a4135-3c4e-4226-8637-1225684a12ad_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-0ehb98v3n4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202879c-0000-0300-0000-69c47d7c0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/microsoft.insights/components/Functions-Node-ulmzgn9t6x\",\"name\":\"Functions-Node-ulmzgn9t6x\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-ulmzgn9t6x\",\"AppId\":\"bd1bdd37-258b-403c-a3bc-b5c76b3ef239\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c8eaf0a1-f9dd-4e62-b1ce-11225f20dd09\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-ulmzgn9t6x\",\"CreationDate\":\"2026-03-26T00:27:36.505767+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-ulmzgn9t6x_bd1bdd37-258b-403c-a3bc-b5c76b3ef239_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-ulmzgn9t6x-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c202baa5-0000-0300-0000-69c47dc90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-DotNet-Isolated0f543v96sw\",\"name\":\"Functions-DotNet-Isolated0f543v96sw\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolated0f543v96sw\",\"AppId\":\"88160b62-e69f-434b-aa4d-52159dc48477\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"98042a34-f79f-4fea-8e95-cec96b18f814\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-Isolated0f543v96sw\",\"CreationDate\":\"2026-03-26T00:28:52.3573559+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolated0f543v96sw_88160b62-e69f-434b-aa4d-52159dc48477_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolated0f543v96sw-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20293b2-0000-0300-0000-69c47e350000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-CustomHandlernb8m23gkpj\",\"name\":\"Functions-CustomHandlernb8m23gkpj\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlernb8m23gkpj\",\"AppId\":\"2264a028-f396-4544-abff-dd4df0c16231\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"7cbb0c18-f337-42dd-8699-ae2bd9f70f55\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomHandlernb8m23gkpj\",\"CreationDate\":\"2026-03-26T00:30:40.8042322+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlernb8m23gkpj_2264a028-f396-4544-abff-dd4df0c16231_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlernb8m23gkpj-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20219c3-0000-0300-0000-69c47ebf0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest2-e5279qnwbr\",\"name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"AppId\":\"7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"295fea1a-27da-4d04-a804-04fdcf16c498\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest2-e5279qnwbr\",\"CreationDate\":\"2026-03-26T00:32:58.8231307+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-e5279qnwbr_7eaf8d1f-dadb-4e7f-ab3e-a83a23b5a15a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-e5279qnwbr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20273d3-0000-0300-0000-69c47f450000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest3-7q9cjpgboy\",\"name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"AppId\":\"bb613380-3ae8-4ed3-a136-8399dc746da1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e03c45ab-51a6-4e3b-a6d1-1f4008542831\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest3-7q9cjpgboy\",\"CreationDate\":\"2026-03-26T00:35:12.7528327+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-7q9cjpgboy_bb613380-3ae8-4ed3-a136-8399dc746da1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-7q9cjpgboy-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"c20211e9-0000-0300-0000-69c47fe80000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"AppId\":\"7e45a49c-0d6f-462c-b26a-f3d9664067aa\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"d0aeae0f-39f1-4948-a546-a88802548349\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"CreationDate\":\"2026-03-26T00:37:55.6950071+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-1xmbohf4tc_7e45a49c-0d6f-462c-b26a-f3d9664067aa_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-1xmbohf4tc-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"41008892-0000-0200-0000-69c479b40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/microsoft.insights/components/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Flex-PowerShell-a50y\",\"AppId\":\"e0b9f637-fcd6-4296-a333-83ea2754480c\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"49f32786-15b9-4784-b1af-a441684140dd\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Flex-PowerShell-a50y\",\"CreationDate\":\"2026-03-26T00:11:19.0626496+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_flex-powershell-a50y_e0b9f637-fcd6-4296-a333-83ea2754480c_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Flex-PowerShell-a50y-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", + "Content": "{\"value\":[{\"kind\":\"web\",\"etag\":\"\\\"6b03db62-0000-0300-0000-69c72cb00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShell-74-umoz8s\",\"AppId\":\"bd16a6d3-6c63-46e2-85ba-50619c5c9418\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0b47af78-4934-4b77-b2d5-23295ed7ee5d\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShell-74-umoz8s\",\"CreationDate\":\"2026-03-28T01:19:39.5557801+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershell-74-umoz8s_bd16a6d3-6c63-46e2-85ba-50619c5c9418_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShell-74-umoz8s-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b03fc69-0000-0300-0000-69c72d010000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/microsoft.insights/components/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-22-lzxr8g\",\"AppId\":\"db05807c-fd7b-4051-813c-0d3a3e6aacec\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"bf927c72-9606-4a60-85fa-0e380f07c8cf\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-22-lzxr8g\",\"CreationDate\":\"2026-03-28T01:21:00.6226284+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-22-lzxr8g_db05807c-fd7b-4051-813c-0d3a3e6aacec_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-22-lzxr8g-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b03166f-0000-0300-0000-69c72d3d0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/microsoft.insights/components/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-8-8qxhpl\",\"AppId\":\"f865afca-fb8a-4c94-90f8-32e9861b65bd\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4fa20058-0550-4d0d-8b55-a65fc17a1a16\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-8-8qxhpl\",\"CreationDate\":\"2026-03-28T01:22:01.3294546+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-8-8qxhpl_f865afca-fb8a-4c94-90f8-32e9861b65bd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-8-8qxhpl-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b032776-0000-0300-0000-69c72d920000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-312-o2a71w\",\"AppId\":\"0359e9d2-796d-4553-98e2-676aa9cf4729\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6b6ca547-2916-411f-8121-92959c135b40\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-312-o2a71w\",\"CreationDate\":\"2026-03-28T01:23:25.7091239+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-312-o2a71w_0359e9d2-796d-4553-98e2-676aa9cf4729_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-312-o2a71w-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b03dc7b-0000-0300-0000-69c72dd50000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr-new\",\"name\":\"Functions-PowerShellTest-0yltam84vr-new\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0yltam84vr-new\",\"AppId\":\"3d6eb1b3-62ce-4c2f-bb99-451be89fca8d\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":null,\"InstrumentationKey\":\"c1581c14-e25d-4dd6-9ada-b984bc86eb46\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0yltam84vr-new\",\"CreationDate\":\"2026-03-28T01:24:32.6959944+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr-new_3d6eb1b3-62ce-4c2f-bb99-451be89fca8d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-new-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6b031da4-0000-0300-0000-69c72f580000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest1-t1850fmzia\",\"name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"AppId\":\"8abbcfaa-2133-4860-83bf-0ae216d897b5\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"712e22e8-5385-4837-ae80-44c1f679dd19\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest1-t1850fmzia\",\"CreationDate\":\"2026-03-28T01:30:59.1024376+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest1-t1850fmzia_8abbcfaa-2133-4860-83bf-0ae216d897b5_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest1-t1850fmzia-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d036144-0000-0300-0000-69c736710000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/microsoft.insights/components/Functions-CustomImage-zv4osq75px\",\"name\":\"Functions-CustomImage-zv4osq75px\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomImage-zv4osq75px\",\"AppId\":\"0c221aef-1368-4fa9-8229-5f31cacf9498\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ab5ca594-dbec-4b95-b40e-e6d5386ac440\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomImage-zv4osq75px\",\"CreationDate\":\"2026-03-28T02:01:12.2113886+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customimage-zv4osq75px_0c221aef-1368-4fa9-8229-5f31cacf9498_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomImage-zv4osq75px-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d03db55-0000-0300-0000-69c736c20000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/microsoft.insights/components/Functions-Python-uj27iozaxb\",\"name\":\"Functions-Python-uj27iozaxb\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-uj27iozaxb\",\"AppId\":\"0bff0c57-a7d2-4810-9803-a6e4866fe552\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"8262549b-39ee-46c7-9b23-37385eb4bc1e\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-uj27iozaxb\",\"CreationDate\":\"2026-03-28T02:02:38.1034428+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-uj27iozaxb_0bff0c57-a7d2-4810-9803-a6e4866fe552_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-uj27iozaxb-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d03ec63-0000-0300-0000-69c7370a0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0yltam84vr\",\"AppId\":\"a59cc98f-5b2d-4b27-9cad-b2a044d3c9b1\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a98e7df1-235d-4bc8-b8fe-d47dd9f253be\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0yltam84vr\",\"CreationDate\":\"2026-03-28T02:03:48.9464693+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr_a59cc98f-5b2d-4b27-9cad-b2a044d3c9b1_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d03fe8c-0000-0300-0000-69c737c60000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr\",\"name\":\"Functions-PowerShellTest-0yltam84vr\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PowerShellTest-0yltam84vr\",\"AppId\":\"99cfda69-0379-4738-9257-1503dbf1bfd7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"6756353b-1c54-486a-9e6c-0e0e33dd03f3\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PowerShellTest-0yltam84vr\",\"CreationDate\":\"2026-03-28T02:05:27.6032374+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr_99cfda69-0379-4738-9257-1503dbf1bfd7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d03f9a4-0000-0300-0000-69c738280000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest6-38mwgoyzfn\",\"name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"AppId\":\"7ec78998-9857-4727-9abd-0318cd7e7603\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a3d28244-487e-48bd-95c1-3e58dd8078f0\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest6-38mwgoyzfn\",\"CreationDate\":\"2026-03-28T02:08:34.8916476+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest6-38mwgoyzfn_7ec78998-9857-4727-9abd-0318cd7e7603_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest6-38mwgoyzfn-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d03b8b8-0000-0300-0000-69c738860000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-DotNet-srcxwfh7tk\",\"name\":\"Functions-DotNet-srcxwfh7tk\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-srcxwfh7tk\",\"AppId\":\"7df2b914-c6b7-4223-8e69-0358e16ab208\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"30f1fdcb-1483-4b2e-a464-e3d334401226\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-srcxwfh7tk\",\"CreationDate\":\"2026-03-28T02:10:09.7107307+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-srcxwfh7tk_7df2b914-c6b7-4223-8e69-0358e16ab208_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-srcxwfh7tk-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d03d8dd-0000-0300-0000-69c739290000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-Java-x057hmvfzy\",\"name\":\"Functions-Java-x057hmvfzy\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Java-x057hmvfzy\",\"AppId\":\"bf3bb2bd-3c37-4dd8-bec0-320c50f01631\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"3623fc5d-6d10-488e-a395-15958676474c\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Java-x057hmvfzy\",\"CreationDate\":\"2026-03-28T02:12:51.7748231+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-java-x057hmvfzy_bf3bb2bd-3c37-4dd8-bec0-320c50f01631_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Java-x057hmvfzy-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6d031fed-0000-0300-0000-69c7396f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/microsoft.insights/components/Functions-Node-0kzsvafpx4\",\"name\":\"Functions-Node-0kzsvafpx4\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-0kzsvafpx4\",\"AppId\":\"28413c28-af00-4d82-9c70-e7bc53457461\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4064e3ff-e612-4fe3-9042-b888a8a9ad3b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-0kzsvafpx4\",\"CreationDate\":\"2026-03-28T02:14:02.800256+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-0kzsvafpx4_28413c28-af00-4d82-9c70-e7bc53457461_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-0kzsvafpx4-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6e03f103-0000-0300-0000-69c739e20000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-DotNet-Isolatedtwxrs35fho\",\"name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"AppId\":\"9681c3d3-07b0-4349-a94c-a16ccfcffe8e\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"124fd90f-1988-4487-84e2-a1679d609f64\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-DotNet-Isolatedtwxrs35fho\",\"CreationDate\":\"2026-03-28T02:15:37.9759089+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-dotnet-isolatedtwxrs35fho_9681c3d3-07b0-4349-a94c-a16ccfcffe8e_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-DotNet-Isolatedtwxrs35fho-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6e038113-0000-0300-0000-69c73a300000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-CustomHandlermjvy1eso2u\",\"name\":\"Functions-CustomHandlermjvy1eso2u\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-CustomHandlermjvy1eso2u\",\"AppId\":\"3d69b86b-a9c3-484d-9896-f0145cf68501\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"12dafc1c-bf80-4861-b660-f344df8f37bb\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-CustomHandlermjvy1eso2u\",\"CreationDate\":\"2026-03-28T02:17:15.2619995+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-customhandlermjvy1eso2u_3d69b86b-a9c3-484d-9896-f0145cf68501_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-CustomHandlermjvy1eso2u-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6e031933-0000-0300-0000-69c73abc0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest2-kzc5qp78i1\",\"name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"AppId\":\"2c857951-8ea7-47d9-b07f-5e3d51068500\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"e1c2db59-c2e9-4a8f-a7b8-bf063ff35624\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest2-kzc5qp78i1\",\"CreationDate\":\"2026-03-28T02:19:35.2993022+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest2-kzc5qp78i1_2c857951-8ea7-47d9-b07f-5e3d51068500_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest2-kzc5qp78i1-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6e033450-0000-0300-0000-69c73b440000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest3-xg581y7oh0\",\"name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"AppId\":\"4bbe13d7-75e3-4939-9755-42f904dc1b04\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4a587a65-026e-4e52-8710-0a254b66f307\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest3-xg581y7oh0\",\"CreationDate\":\"2026-03-28T02:21:51.9322625+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest3-xg581y7oh0_4bbe13d7-75e3-4939-9755-42f904dc1b04_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest3-xg581y7oh0-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"6e036272-0000-0300-0000-69c73beb0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"microsoft.insights/components\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"AppId\":\"2da755f6-fb16-4e5d-a707-f033277b3db7\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"4d99cafc-78c3-4b7a-86f8-c5c201b85435\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"CreationDate\":\"2026-03-28T02:24:35.8414362+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest5-koe843ap0h_2da755f6-fb16-4e5d-a707-f033277b3db7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest5-koe843ap0h-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300d952-0000-0200-0000-69c72eff0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Flex-PowerShell-3wro\",\"name\":\"Flex-PowerShell-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Flex-PowerShell-3wro\",\"AppId\":\"4709544b-f3ad-4af4-a458-465deb6bc58f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b64a8083-4461-4b21-9c2e-dbfc0f8ffd0a\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Flex-PowerShell-3wro\",\"CreationDate\":\"2026-03-28T01:29:25.1410304+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_flex-powershell-3wro_4709544b-f3ad-4af4-a458-465deb6bc58f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Flex-PowerShell-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300be5a-0000-0200-0000-69c72fe90000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-DotNetIsolated-3wro\",\"name\":\"Functions-Flex-DotNetIsolated-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-DotNetIsolated-3wro\",\"AppId\":\"e42f26b9-8136-4e63-b5b2-50b1856f971f\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"ca64bb30-d9a5-4ad5-ae07-c548157d84ae\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-DotNetIsolated-3wro\",\"CreationDate\":\"2026-03-28T01:33:18.6373455+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-dotnetisolated-3wro_e42f26b9-8136-4e63-b5b2-50b1856f971f_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-DotNetIsolated-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300e260-0000-0200-0000-69c7306b0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Node-3wro\",\"name\":\"Functions-Flex-Node-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Node-3wro\",\"AppId\":\"b81d42c4-502b-41c3-a62e-2666c367bb6a\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"1db2b2ae-442e-4be7-bc76-15269a77c189\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Node-3wro\",\"CreationDate\":\"2026-03-28T01:35:28.4432788+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-node-3wro_b81d42c4-502b-41c3-a62e-2666c367bb6a_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Node-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83002167-0000-0200-0000-69c730e70000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Python-3wro\",\"name\":\"Functions-Flex-Python-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Python-3wro\",\"AppId\":\"7308590b-f88e-4610-80e0-b6189b46f1f6\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"134c599d-3400-48f8-9422-8455a04c7fe8\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Python-3wro\",\"CreationDate\":\"2026-03-28T01:37:34.0688266+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-python-3wro_7308590b-f88e-4610-80e0-b6189b46f1f6_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Python-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83009471-0000-0200-0000-69c731e00000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Java-3wro\",\"name\":\"Functions-Flex-Java-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Java-3wro\",\"AppId\":\"bba8b51a-196f-4938-bcf4-5387d44ac633\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"0c757c3f-a532-4bae-bb47-52c485ac89e9\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Java-3wro\",\"CreationDate\":\"2026-03-28T01:41:40.1581305+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-java-3wro_bba8b51a-196f-4938-bcf4-5387d44ac633_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Java-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300fe75-0000-0200-0000-69c7325f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-PowerShell-3wro\",\"name\":\"Functions-Flex-PowerShell-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-PowerShell-3wro\",\"AppId\":\"73904fad-1a42-4b9e-9cec-5a2dd95b15bf\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"20b0b8c4-d784-4c4d-92b5-184ae96fd401\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-PowerShell-3wro\",\"CreationDate\":\"2026-03-28T01:43:46.2304096+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-powershell-3wro_73904fad-1a42-4b9e-9cec-5a2dd95b15bf_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-PowerShell-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300077a-0000-0200-0000-69c732de0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Flex-Custom-3wro\",\"name\":\"Functions-Flex-Custom-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Flex-Custom-3wro\",\"AppId\":\"e7a47d21-94e6-449e-bd13-9449dbefaeb4\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"432b8997-07fd-4065-9829-15a790aea57b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Flex-Custom-3wro\",\"CreationDate\":\"2026-03-28T01:45:56.4069579+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-flex-custom-3wro_e7a47d21-94e6-449e-bd13-9449dbefaeb4_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Flex-Custom-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83003d7e-0000-0200-0000-69c733630000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Python-Flex-Scaling-3wro\",\"name\":\"Functions-Python-Flex-Scaling-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Python-Flex-Scaling-3wro\",\"AppId\":\"fe0bf9e1-e792-4261-b393-e3ba64f4d439\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"c7de0ca4-daeb-46e7-a234-be192320c59b\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Python-Flex-Scaling-3wro\",\"CreationDate\":\"2026-03-28T01:48:07.3021356+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-python-flex-scaling-3wro_fe0bf9e1-e792-4261-b393-e3ba64f4d439_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Python-Flex-Scaling-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"83008b82-0000-0200-0000-69c733e20000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Node-SystemIdentity-3wro\",\"name\":\"Functions-Node-SystemIdentity-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Node-SystemIdentity-3wro\",\"AppId\":\"6204ab8c-066f-4e9a-b178-fbd25025d2eb\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"b27e8ff1-5974-4045-b674-61b0a02b59ea\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Node-SystemIdentity-3wro\",\"CreationDate\":\"2026-03-28T01:50:14.6450366+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-node-systemidentity-3wro_6204ab8c-066f-4e9a-b178-fbd25025d2eb_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Node-SystemIdentity-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300fe90-0000-0200-0000-69c734610000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Pwsh-UserAssignedIdentity-3wro\",\"name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"AppId\":\"8246032b-6760-4b17-b153-1d537360aa73\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"896e0183-aa26-40cb-b79c-fb06527cef45\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Pwsh-UserAssignedIdentity-3wro\",\"CreationDate\":\"2026-03-28T01:52:23.3544597+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-pwsh-userassignedidentity-3wro_8246032b-6760-4b17-b153-1d537360aa73_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Pwsh-UserAssignedIdentity-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300ee9a-0000-0200-0000-69c734e40000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-PS-CustomConfig-3wro\",\"name\":\"Functions-PS-CustomConfig-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-PS-CustomConfig-3wro\",\"AppId\":\"02cf1800-6f0c-4306-8714-7ce3c4a0111d\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"a147199a-4cbd-4299-a45b-cfb3caefc6a9\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-PS-CustomConfig-3wro\",\"CreationDate\":\"2026-03-28T01:54:31.4253345+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-ps-customconfig-3wro_02cf1800-6f0c-4306-8714-7ce3c4a0111d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PS-CustomConfig-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}},{\"kind\":\"web\",\"etag\":\"\\\"8300e1a4-0000-0200-0000-69c7360f0000\\\"\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/microsoft.insights/components/Functions-Remove-FlexPlan-3wro\",\"name\":\"Functions-Remove-FlexPlan-3wro\",\"type\":\"microsoft.insights/components\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"ApplicationId\":\"Functions-Remove-FlexPlan-3wro\",\"AppId\":\"0d7f65d7-04dc-443f-88f5-dde336f6f137\",\"Application_Type\":\"web\",\"Flow_Type\":null,\"Request_Source\":\"AzurePowerShell\",\"InstrumentationKey\":\"885e05f8-091d-4ba0-9418-80f36c28cfad\",\"ConnectionString\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"Name\":\"Functions-Remove-FlexPlan-3wro\",\"CreationDate\":\"2026-03-28T01:59:31.5079707+00:00\",\"TenantId\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"provisioningState\":\"Succeeded\",\"SamplingPercentage\":null,\"RetentionInDays\":90,\"WorkspaceResourceId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-remove-flexplan-3wro_0d7f65d7-04dc-443f-88f5-dde336f6f137_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-Remove-FlexPlan-3wro-ws\",\"IngestionMode\":\"LogAnalytics\",\"publicNetworkAccessForIngestion\":\"Enabled\",\"publicNetworkAccessForQuery\":\"Enabled\",\"Ver\":\"v2\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+69": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+71": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-1xmbohf4tc\"\r\n },\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"AI-INSTRUMENTATION-KEY-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPINSIGHTS_INSTRUMENTATIONKEY\",\r\n \"value\": \"c1581c14-e25d-4dd6-9ada-b984bc86eb46\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest5-koe843ap0h\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -6230,43 +6410,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB9265CE76B\"" ], + "ETag": [ "\"1DCBE5A6587B980\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "65782a91-6a72-470e-8197-dd656cbcc676" ], + "x-ms-request-id": [ "5816effa-b7f7-4437-b056-a94eac4e9d1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7385e408-51a9-4323-8b4c-a6798433a9e6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/759d6f52-0053-44ee-9a3f-ff39685450bd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ae4a5747-e90e-4eb5-9f86-536da9c1c24c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004108Z:ae4a5747-e90e-4eb5-9f86-536da9c1c24c" ], + "x-ms-correlation-request-id": [ "63495729-6514-4565-b2ec-ea147f751af3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022755Z:63495729-6514-4565-b2ec-ea147f751af3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 783A01E865F543969226B4264D0DA165 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:06Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:07 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1F6453B3E6AF4099B6F99953749B230F Ref B: MWH011020809062 Ref C: 2026-03-28T02:27:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:27:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8682" ], + "Content-Length": [ "8687" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:54.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+70": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+72": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "607" ], - "x-ms-client-request-id": [ "82cbe43a-561f-44de-9664-2f5697282a2f" ], + "x-ms-unique-id": [ "981" ], + "x-ms-client-request-id": [ "5720b0f9-445f-4fe7-b48e-f967b1e3e682" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -6276,42 +6456,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB93C1D5840" ], + "ETag": [ "1DCBE5A7B7C0B95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1369dc65-d262-4c24-8f17-ee6b6ca1f801" ], + "x-ms-request-id": [ "298f8f80-b43b-4eb3-8bff-d16b68d74703" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "70fb36c8-57ef-43c3-9dcc-6d24088c3c97" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:70fb36c8-57ef-43c3-9dcc-6d24088c3c97" ], + "x-ms-correlation-request-id": [ "5620bb76-db81-41ba-a3e5-3eadf032b570" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022825Z:5620bb76-db81-41ba-a3e5-3eadf032b570" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7311504428E841ED981C7D93FEFDD250 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 64E6BEA3B5AA451E8134E68D3EEA08AD Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8478" ], + "Content-Length": [ "8483" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:54.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+71": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+73": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "608" ], - "x-ms-client-request-id": [ "c84e52a6-97fc-4d00-ad5b-3b3e1f459486" ], + "x-ms-unique-id": [ "982" ], + "x-ms-client-request-id": [ "2001c7e6-1205-4c4a-a32e-5dcebdf305a1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6323,40 +6503,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f525cf95-646c-4a0e-b1ac-84a1fe82208c" ], + "x-ms-request-id": [ "7bc152a4-934f-4839-b73f-4e1fbc2604c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3708d532-cd1c-4b86-8f8b-efc2a73d754d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/505d37b6-6757-461f-8106-4abadb72385d" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "40dc8eef-d42d-44a6-91a9-fe78793e555c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:40dc8eef-d42d-44a6-91a9-fe78793e555c" ], + "x-ms-correlation-request-id": [ "992ba456-734b-4487-b9bd-1a84f3c28c6d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022826Z:992ba456-734b-4487-b9bd-1a84f3c28c6d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 62548B8BD4634069909A5EFE3A8D386E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7FD4D384B1A44D5BAE1E245428FFF20 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c1581c14-e25d-4dd6-9ada-b984bc86eb46\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+72": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+74": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "609" ], - "x-ms-client-request-id": [ "46e279cd-1760-4379-b84c-999ec5109af4" ], + "x-ms-unique-id": [ "983" ], + "x-ms-client-request-id": [ "38cb5d00-4de0-4e43-abc1-8ce6a044ca9b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6367,42 +6547,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB93C1D5840" ], + "ETag": [ "1DCBE5A7B7C0B95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "94621305-1ae9-4b66-994b-773ae94801d7" ], + "x-ms-request-id": [ "10391071-ec9c-48b8-8a5d-0ca6325da8ba" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5da4b2b1-26fe-4779-ad64-0fe656922f7f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:5da4b2b1-26fe-4779-ad64-0fe656922f7f" ], + "x-ms-correlation-request-id": [ "95a6fc64-04db-4943-9c30-7c9f5a34e606" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022826Z:95a6fc64-04db-4943-9c30-7c9f5a34e606" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6DFC54F2E6C74F2088EDA544ABC31089 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F94E3883E584FB392257C7DB9D8D9F7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8478" ], + "Content-Length": [ "8483" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:54.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+73": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+75": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "610" ], - "x-ms-client-request-id": [ "6578ddf4-60fa-4d17-9fc5-56d74300924d" ], + "x-ms-unique-id": [ "984" ], + "x-ms-client-request-id": [ "52eebf48-416d-4d76-b31d-ae0b5308bcf9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6414,40 +6594,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2129a43a-2ab0-463c-b008-42ee80572aa0" ], + "x-ms-request-id": [ "99e62adb-b90d-4fdb-8e32-bf93f21bff1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/50ab94bc-1422-4791-888f-13c8f9aa4b02" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1765af25-ed4b-40b0-bf8e-44331e6875bb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d5d92045-89d6-4e8b-9dfa-1304b3721ea0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004139Z:d5d92045-89d6-4e8b-9dfa-1304b3721ea0" ], + "x-ms-correlation-request-id": [ "188510eb-3666-4fea-8438-0f089a0ee0d9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022826Z:188510eb-3666-4fea-8438-0f089a0ee0d9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B74B9D686C0748DFA29ECE08FF04EDD3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 821EC87B32FD4248A9409700D2A65F70 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c1581c14-e25d-4dd6-9ada-b984bc86eb46\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+74": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+76": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "611" ], - "x-ms-client-request-id": [ "67ea94b4-c2fa-4d66-8bdf-7e233e2e65d5" ], + "x-ms-unique-id": [ "985" ], + "x-ms-client-request-id": [ "f8a345c4-38ab-4fdc-85e7-541fc9d631d7" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6459,41 +6639,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2206af72-ac95-42b7-8f45-b53efdef5e39" ], + "x-ms-request-id": [ "1b654774-b8d3-4c44-ae4c-73ad19e16885" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ad237d3a-80dc-4cff-9db0-0938dffe1619" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e9f46404-013b-4504-a983-62d9e6dfd963" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "578e674c-45dd-4f2b-bce0-2df6419e95c8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:578e674c-45dd-4f2b-bce0-2df6419e95c8" ], + "x-ms-correlation-request-id": [ "81abc864-4ec7-4ba8-a27f-a1ecaef2b95a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022827Z:81abc864-4ec7-4ba8-a27f-a1ecaef2b95a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1721C840BFE543B0A8D0CCDB98EC16FB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDBFBF504F144C919C96952AB9916854 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01+75": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01+77": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "612" ], - "x-ms-client-request-id": [ "be7d962f-c2e7-4af5-b8d6-70b0677b4452" ], + "x-ms-unique-id": [ "986" ], + "x-ms-client-request-id": [ "d0a11595-e41d-4bfd-9b70-734f47f65828" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6504,42 +6684,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB93C1D5840" ], + "ETag": [ "1DCBE5A7B7C0B95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f86858f8-ada9-4040-a3d5-8ffe6f705046" ], + "x-ms-request-id": [ "f45ebe50-bfce-462a-8ce8-5d1eaabd2856" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "27635b74-10b6-4ba1-b47a-eabc8a80ef30" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:27635b74-10b6-4ba1-b47a-eabc8a80ef30" ], + "x-ms-correlation-request-id": [ "badc22d2-f256-4527-8b9e-b4f297262acf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022827Z:badc22d2-f256-4527-8b9e-b4f297262acf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 770C09B721FC44FA899C0A8808628951 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5881BCAB690048F585CD83123899B7E1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8478" ], + "Content-Length": [ "8483" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest5-1xmbohf4tc\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-1xmbohf4tc.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:41:07.78\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest5-1xmbohf4tc\\\\$Func-PowerShell-NewTest5-1xmbohf4tc\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest5-1xmbohf4tc.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest5-koe843ap0h\",\"repositorySiteName\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest5-koe843ap0h.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:27:54.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest5-koe843ap0h\\\\$Func-PowerShell-NewTest5-koe843ap0h\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest5-koe843ap0h.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01+76": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01+78": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "613" ], - "x-ms-client-request-id": [ "b58e4856-94b3-4386-aaa7-e0435de51c56" ], + "x-ms-unique-id": [ "987" ], + "x-ms-client-request-id": [ "62ff42be-af8b-4810-95a3-f9ba427078c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6551,40 +6731,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14d18753-340d-4b56-bd94-e2dd963fc19a" ], + "x-ms-request-id": [ "16297887-c9dd-48fb-8c0a-1a8dbc4a0096" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4335b434-9f4f-4fed-93eb-3a8eb6c95e58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4cd149e1-3273-4ccc-87c1-58573073954b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ba173383-d9ce-4e66-a952-5cadae6228db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:ba173383-d9ce-4e66-a952-5cadae6228db" ], + "x-ms-correlation-request-id": [ "68037adc-2e4a-4e1c-aa9e-c223384cff83" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022827Z:68037adc-2e4a-4e1c-aa9e-c223384cff83" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C2D02E37787A47FBB793F9C21C482039 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0B31B6FC58BD466CB9650B8637BEEFE8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1311" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-1xmbohf4tc\",\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"AI-INSTRUMENTATION-KEY-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"APPINSIGHTS_INSTRUMENTATIONKEY\":\"c1581c14-e25d-4dd6-9ada-b984bc86eb46\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest5-koe843ap0h\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01+77": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01+79": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "614" ], - "x-ms-client-request-id": [ "64881026-9c01-40b9-9798-065bb9765197" ], + "x-ms-unique-id": [ "988" ], + "x-ms-client-request-id": [ "77f168de-b1fa-4c23-827c-ee5502508ce9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6596,41 +6776,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf6e2dd3-340d-4ddd-8336-4329c3c253e2" ], + "x-ms-request-id": [ "7c080ad7-9fd7-42d5-a2a4-53f3b856d384" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e4be004d-1a40-4c8c-8cdc-42c55bf99b39" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/031ea1df-207c-4c6e-a280-9d07cd1152bc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7354ba53-7159-446a-a690-bded73dee0fd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004140Z:7354ba53-7159-446a-a690-bded73dee0fd" ], + "x-ms-correlation-request-id": [ "7ea3fa2f-1870-4556-9a4c-56398ba10957" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022828Z:7ea3fa2f-1870-4556-9a4c-56398ba10957" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A0AD2AB9E2E6487B95F9C14D91AB9AEF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 23B9D03B86CF4FD8BBE0E9139BBF5AA6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4248" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc/config/web\",\"name\":\"Func-PowerShell-NewTest5-1xmbohf4tc\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h/config/web\",\"name\":\"Func-PowerShell-NewTest5-koe843ap0h\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+78": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+80": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "615" ], - "x-ms-client-request-id": [ "c653512a-6a92-4055-a7d5-c2c972e007e8" ], + "x-ms-unique-id": [ "989" ], + "x-ms-client-request-id": [ "ef660127-9201-4563-a574-e40892eb8685" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6642,40 +6822,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fedc0630-3eb2-4bfb-9fe6-d5a305e2c9ba" ], + "x-ms-request-id": [ "b767fe9d-7bba-46b8-b131-eaa7a8a0d4c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e619c40f-b693-4d07-b81c-21313270406a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004141Z:e619c40f-b693-4d07-b81c-21313270406a" ], + "x-ms-correlation-request-id": [ "9a228205-30cf-41e3-8373-8895462ef085" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022828Z:9a228205-30cf-41e3-8373-8895462ef085" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56BEE87D10A2423F8FDD66FB7EB080EF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0EB15C3FF0654A679DF78CAD6FEE2A92 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+79": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+81": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-1xmbohf4tc?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest5-koe843ap0h?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "616" ], - "x-ms-client-request-id": [ "c490d498-acc1-4c3e-80cb-46ad770f5e0b" ], + "x-ms-unique-id": [ "990" ], + "x-ms-client-request-id": [ "e9b36dd4-55cc-42ef-b577-287c7e522537" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6686,20 +6866,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB93C1D5840\"" ], + "ETag": [ "\"1DCBE5A7B7C0B95\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "be34f322-98a7-4c5d-b233-3014f1f473dc" ], + "x-ms-request-id": [ "cf4ca2df-e209-48dd-be08-53a952898ec0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd4e9083-2c9d-4c7f-b007-c5b35d59b0a7" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], - "x-ms-correlation-request-id": [ "27a6564a-b886-4528-88bb-43baf0901387" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004149Z:27a6564a-b886-4528-88bb-43baf0901387" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0964f005-dfc2-4628-bf9a-78aaa23e521d" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-correlation-request-id": [ "d5c5075f-36e1-4c39-8efd-00c468d50c0e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022836Z:d5c5075f-36e1-4c39-8efd-00c468d50c0e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3EDEED080924982877122E9EA1FCD4D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 02F924D97E8B4C839F47BB088D6A3AA2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6709,19 +6889,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+80": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+82": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "617" ], - "x-ms-client-request-id": [ "28f47389-0dff-4cf3-b1c4-68a20caa423c" ], + "x-ms-unique-id": [ "991" ], + "x-ms-client-request-id": [ "53af76e5-4842-407a-aba2-c47aad24e632" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6733,40 +6913,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32cdbcca-ee8e-453e-bcc3-165a12f4c002" ], + "x-ms-request-id": [ "4f1c6e11-b984-4f58-9ea0-62994834c4a0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "47087e81-cad6-4e80-9548-67f57b5e531e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004149Z:47087e81-cad6-4e80-9548-67f57b5e531e" ], + "x-ms-correlation-request-id": [ "dd174173-c7a7-4bd1-ae57-d5221ec5ded5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022836Z:dd174173-c7a7-4bd1-ae57-d5221ec5ded5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5C631F3CC50543E2B8C2CBB1243C4A36 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2B312536FEF34785A33403482827D50D Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo\",\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115034,\"name\":\"Func-Windows-Premium-New3-gzxfvo\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115034\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:37:16.89\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro\",\"name\":\"Func-Windows-Premium-New3-icpwro\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123844,\"name\":\"Func-Windows-Premium-New3-icpwro\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":6,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123844\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:23:56.84\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01+81": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01+83": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-gzxfvo?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New3-icpwro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "618" ], - "x-ms-client-request-id": [ "de4367ef-7885-4d00-b3b1-2deb50ac6e17" ], + "x-ms-unique-id": [ "992" ], + "x-ms-client-request-id": [ "c9df1657-8424-409a-a300-7063adc3dd82" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6778,18 +6958,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9e3b70c5-ec9c-45b7-9266-090ca4618e6b" ], + "x-ms-request-id": [ "15ce9ed4-fef2-44b2-8ac4-401fa71e3669" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb2d6a18-6647-4f68-8af8-c7ee6fc1d803" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28abf94d-f6cd-48d0-ac18-34039190ee7e" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "a4ce55f5-5742-4254-a915-393cbe6bd0c0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004154Z:a4ce55f5-5742-4254-a915-393cbe6bd0c0" ], + "x-ms-correlation-request-id": [ "5ada2cc1-61be-4def-adb5-825ec4e2006e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022842Z:5ada2cc1-61be-4def-adb5-825ec4e2006e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E5B171C1807412997BB237923C56123 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:49Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1626F01C27D432E9D631C5C6309946D Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6799,19 +6979,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+82": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+84": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "619" ], - "x-ms-client-request-id": [ "8beed760-5b75-4933-8fbf-28c1cd5cf800" ], + "x-ms-unique-id": [ "993" ], + "x-ms-client-request-id": [ "7c82a4fe-7174-428e-8347-3045a991e266" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6823,40 +7003,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18593111-a64f-49e3-8fdc-3e6401a4364f" ], + "x-ms-request-id": [ "240a0087-e26b-4e78-af4c-4742ef06c3a5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1450b667-ddf2-40f7-853b-06f7e232b15b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004155Z:1450b667-ddf2-40f7-853b-06f7e232b15b" ], + "x-ms-correlation-request-id": [ "9967511a-ab01-4469-b962-25a00a8a2395" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022842Z:9967511a-ab01-4469-b962-25a00a8a2395" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6296ABE9123843CAAC2F11DF049F7344 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:54Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 39F582921BB14C4B8CEFE56B81BD77DE Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1825" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115035,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115035\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:39:17.2166667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123846,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123846\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:25:59.7533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+83": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionApp and Remove-AzFunctionApp+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+85": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "620" ], - "x-ms-client-request-id": [ "bd47f2be-ecc5-4d9f-84f7-e72f40ad3a2c" ], + "x-ms-unique-id": [ "994" ], + "x-ms-client-request-id": [ "b9582fdc-60ad-46aa-8802-164d87bf8074" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6868,18 +7048,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23d930e2-5d37-48e3-964a-1a7608fe74a9" ], + "x-ms-request-id": [ "3b75fa10-f187-4f54-9aad-56853f5af7d8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/64803931-3132-43d3-9784-92314a0f6a28" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28f3e3f2-fcb5-46ad-a07b-1691081f56ba" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "49674eb8-80ef-43ad-9ad4-83cd58956e86" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004200Z:49674eb8-80ef-43ad-9ad4-83cd58956e86" ], + "x-ms-correlation-request-id": [ "de3cfb8d-d31e-4f3d-9ce1-d97775b02436" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022847Z:de3cfb8d-d31e-4f3d-9ce1-d97775b02436" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3924AEC02999422893A2383F92E15200 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:41:55Z" ], - "Date": [ "Thu, 26 Mar 2026 00:41:59 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F15EE22AE19D43E9B0BD3D820D6EEBA0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:46 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -6893,7 +7073,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest7-7nvoe2hfym\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -6908,18 +7088,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7ce502d6-1bb9-4553-b587-7eeab18c9ff0" ], + "x-ms-request-id": [ "4c322196-8273-478e-8260-438b323839e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/1080e301-a470-4688-859f-f7cc0bd77817" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/20e6c939-fe68-4322-ab89-e6ee26e5768d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "400352d0-1d4f-427a-bc8b-1c8d0d66dc65" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004201Z:400352d0-1d4f-427a-bc8b-1c8d0d66dc65" ], + "x-ms-correlation-request-id": [ "e3508147-13b2-45d7-b919-a9df66dd4e4a" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022847Z:e3508147-13b2-45d7-b919-a9df66dd4e4a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7008CB24012C4D75A9D211A84D62BDE6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2D6496DF851E409AA6D536235F2E6C37 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -6937,12 +7117,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "622" ], - "x-ms-client-request-id": [ "5f79cdf8-36ea-4ed5-baae-123045579a34" ], + "x-ms-unique-id": [ "996" ], + "x-ms-client-request-id": [ "1820ab05-85b5-42d0-a6e0-04f198e246fd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6953,40 +7133,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "76ee3c87-70ee-4036-be53-8cf2cbc03fe9", "ccea6571-2b01-473b-b767-b5aefcd16172" ], + "x-ms-original-request-ids": [ "8f3ed303-9211-482c-9b3b-6cfb4c29db83", "ae312ad0-43ec-4c22-b325-e8ee3f42dbe2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "3904526a-0ac8-4c55-8e2a-862df28e7b6c" ], - "x-ms-correlation-request-id": [ "3904526a-0ac8-4c55-8e2a-862df28e7b6c" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004201Z:3904526a-0ac8-4c55-8e2a-862df28e7b6c" ], + "x-ms-request-id": [ "86186374-9daf-4e97-b443-34623feab6db" ], + "x-ms-correlation-request-id": [ "86186374-9daf-4e97-b443-34623feab6db" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022848Z:86186374-9daf-4e97-b443-34623feab6db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F78A20E571144E0BDED01C66D211BE3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38F80A4F4FC64E79B088E03F9CB08CA3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "15498" ], + "Content-Length": [ "17130" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055965,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "623" ], - "x-ms-client-request-id": [ "d590f395-a893-44a6-90a0-accb464d801c" ], + "x-ms-unique-id": [ "997" ], + "x-ms-client-request-id": [ "0ba2f448-7519-42f7-b502-ee74e4a6ad1c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -6998,40 +7178,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "96b7ad4c-f061-42a2-a199-f4f4e844f858" ], + "x-ms-request-id": [ "c8c2ca89-bb13-4448-a230-07257252761b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2ae895ae-2ea7-4660-8188-3d2246d9bea6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:2ae895ae-2ea7-4660-8188-3d2246d9bea6" ], + "x-ms-correlation-request-id": [ "973be22e-57e1-43dd-85cc-f16955d5b379" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022848Z:973be22e-57e1-43dd-85cc-f16955d5b379" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 777CB327B1F54E189DD3CA62B5D44EA9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C34E04F5FA644BA8A829F862BF0F4445 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "624" ], - "x-ms-client-request-id": [ "322aa0c5-a675-4d73-bbe6-e690e2e0889d" ], + "x-ms-unique-id": [ "998" ], + "x-ms-client-request-id": [ "e3d168c5-6916-4f79-bd97-a58eb74337da" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7043,40 +7223,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4c45416-1414-4da7-abf5-31816ca10c82" ], + "x-ms-request-id": [ "85aa361b-f8f4-412a-8821-ec84b148aa19" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d941487e-d778-490d-bcb2-5d73e6e8241e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:d941487e-d778-490d-bcb2-5d73e6e8241e" ], + "x-ms-correlation-request-id": [ "a79699f8-2e64-44f0-b621-c1a3b15b2bd8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022849Z:a79699f8-2e64-44f0-b621-c1a3b15b2bd8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C85381A75536452084D68975DFF25040 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 503DBBC98B7D4071BEBD11BA68DAB086 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+5": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "625" ], - "x-ms-client-request-id": [ "063e6a0d-e31e-4d6c-9410-7503c64a7e18" ], + "x-ms-unique-id": [ "999" ], + "x-ms-client-request-id": [ "ca257341-d225-421e-ae85-2c6aa4048ff3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7088,40 +7268,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f4ee181e-2c3b-4a85-b72f-b56d7bf37906" ], + "x-ms-request-id": [ "ef6a4dd0-3107-425a-932e-7e24e36009fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "45c83797-de66-4fc0-a63e-c6e933ccb6b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:45c83797-de66-4fc0-a63e-c6e933ccb6b1" ], + "x-ms-correlation-request-id": [ "8d25db45-9236-42f6-9ef8-e4def219c84c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022849Z:8d25db45-9236-42f6-9ef8-e4def219c84c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED532E27C4E0495EADA1F52287EAE5E3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 986BB733E5EC4426840C31C882E8D5B7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":91524,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_91524\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:21:17.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+6": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "626" ], - "x-ms-client-request-id": [ "8c1c2992-7efe-4121-85b4-1d932c5e04fe" ], + "x-ms-unique-id": [ "1000" ], + "x-ms-client-request-id": [ "8566e199-3292-40ea-a3f8-0e1b63033a00" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7133,40 +7313,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d6efe57a-76f6-4fbe-8217-a554fbf99522" ], + "x-ms-request-id": [ "724eea98-e414-40ae-8468-808fbe984943" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ac3d6c19-9a4f-43c8-8527-338894d22e0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004202Z:ac3d6c19-9a4f-43c8-8527-338894d22e0d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ddced016-cff9-4fa0-acbb-b3ded3682440" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022849Z:ddced016-cff9-4fa0-acbb-b3ded3682440" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D77D60FD6A7049988B0A19A2A1AC48D5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2627405282204034B8EB13C3D2726A41 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1754" ], + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+7": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "627" ], - "x-ms-client-request-id": [ "26e91e3a-ac54-4659-906c-5545811dcc0b" ], + "x-ms-unique-id": [ "1001" ], + "x-ms-client-request-id": [ "d179f927-b567-4077-ba6b-592349e2ff29" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7178,40 +7358,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7b8ffde4-8822-46d0-9651-de7cc896bc52" ], + "x-ms-request-id": [ "52a24784-d3cc-466a-b07c-1ac79e84f94d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5e5838cc-c94d-455d-8829-0edc3818d0ff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:5e5838cc-c94d-455d-8829-0edc3818d0ff" ], + "x-ms-correlation-request-id": [ "64f051df-f67d-47cd-9d50-fae808678c23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022850Z:64f051df-f67d-47cd-9d50-fae808678c23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4BC676A00E544129B9B01FAC88B13297 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 06796CB8AB6240F796192C2E86CA568E Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":4,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":4,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+8": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "628" ], - "x-ms-client-request-id": [ "e087e8c4-7354-4604-9b93-83f9097782cc" ], + "x-ms-unique-id": [ "1002" ], + "x-ms-client-request-id": [ "c22f89a9-f2a8-4f08-97bd-db0c788a47c3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7223,40 +7403,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bc267d5a-bcb7-44f6-9260-e9a136da2692" ], + "x-ms-request-id": [ "d8ac6d40-2f9c-4769-a216-5c844d83826b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7fccb453-a93a-4a33-a6bc-28e69acebac2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:7fccb453-a93a-4a33-a6bc-28e69acebac2" ], + "x-ms-correlation-request-id": [ "c6488fda-4ed8-4f04-a338-8b48df5da318" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022850Z:c6488fda-4ed8-4f04-a338-8b48df5da318" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 927BFB73DD0A41DB894BB1684C19A987 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:50 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1742" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "isContentBase64": false + } + }, + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1003" ], + "x-ms-client-request-id": [ "4a630503-92c9-4dbf-96a0-efc942916b0e" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "71d43e40-a799-4c0b-8b4b-f123fb4bd8a4" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "84883f61-d3f3-473c-8b85-c67376bcc5c7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022850Z:84883f61-d3f3-473c-8b85-c67376bcc5c7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FD51467F136141129689DB59F49743A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 788DFCA04A9745409E3C739187D97C77 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+9": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "629" ], - "x-ms-client-request-id": [ "312a1be5-6059-42b1-b4ad-f34d5c0b2fa3" ], + "x-ms-unique-id": [ "1004" ], + "x-ms-client-request-id": [ "a6011bad-a7a3-481f-aed7-cb1c5a796e3e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7268,40 +7493,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d09b32e7-1e16-4c2d-babf-9dff62c92b6b" ], + "x-ms-request-id": [ "68c17cbe-87ea-442f-80d1-3edc39cb3860" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "398d718d-d712-4f50-b476-3544e1e1286c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:398d718d-d712-4f50-b476-3544e1e1286c" ], + "x-ms-correlation-request-id": [ "f7e6f25e-e201-4bce-ba82-0f67e694909c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022850Z:f7e6f25e-e201-4bce-ba82-0f67e694909c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F8AB350A5DC042B5BE9E4575D8834085 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 36F8B78876C14F2992CE7EE72D307566 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+10": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "630" ], - "x-ms-client-request-id": [ "c1be0a16-ee07-4d42-b1c0-a7172a8ab92f" ], + "x-ms-unique-id": [ "1005" ], + "x-ms-client-request-id": [ "9023b9c8-e942-44c5-b857-bcd0aec6a26a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7313,40 +7538,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b329b5c7-4081-41b1-9c8a-17826a30e36b" ], + "x-ms-request-id": [ "cb9e419a-2991-47f9-b6de-e77bf978111e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "db083c2a-ea45-4938-bf20-d47283564ddd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004203Z:db083c2a-ea45-4938-bf20-d47283564ddd" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "b7627563-0d5b-4e07-bf62-bc2676062163" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022851Z:b7627563-0d5b-4e07-bf62-bc2676062163" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DE4EA50EECE84865B6AA4476BD61D9FE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7802DC6331A0431386E2B2A290633AFA Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+11": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "631" ], - "x-ms-client-request-id": [ "107be8c6-1e6e-4b57-84cb-de16c814b170" ], + "x-ms-unique-id": [ "1006" ], + "x-ms-client-request-id": [ "3bd42fcf-9047-42da-8f78-40930fa15f22" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7358,40 +7583,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c6b5a22-58fd-4f46-bc14-332fd8e35c32" ], + "x-ms-request-id": [ "cc5249bd-2b0b-40f3-8669-a4317df2943f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3489b200-56ca-4b9e-8ff8-26e5b7552e1f" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T004203Z:3489b200-56ca-4b9e-8ff8-26e5b7552e1f" ], + "x-ms-correlation-request-id": [ "67b972d5-0aea-4443-8707-cf8c464afc06" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T022851Z:67b972d5-0aea-4443-8707-cf8c464afc06" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6967D3AD6EFC4803AEE32DDCEF69A1C6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0D84DF53137B4F6EBD49690007CE2CDE Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+12": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+13": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "632" ], - "x-ms-client-request-id": [ "4353ab53-ca4a-48d1-83ea-4e8cfe6a0a01" ], + "x-ms-unique-id": [ "1007" ], + "x-ms-client-request-id": [ "e1fe8be5-bae8-4323-91d1-9ad118dd8b37" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7402,40 +7627,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "38024b4b-a12e-490a-a086-bf5f21cc86f0", "87865985-48c6-45dc-b52d-c25a26801c33", "a5ff2dcc-5ca1-44bf-88b6-a9d168d1e183" ], + "x-ms-original-request-ids": [ "b94a60e5-7bb4-42db-bd25-ab825246a4e6", "e3b4a119-ca97-4ff2-9e63-8e9bee017007", "e07a70d0-9eca-4b92-a88f-e26d2eb56e3b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "b4570808-a697-4cc1-be3f-a3a43be3ab96" ], - "x-ms-correlation-request-id": [ "b4570808-a697-4cc1-be3f-a3a43be3ab96" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004204Z:b4570808-a697-4cc1-be3f-a3a43be3ab96" ], + "x-ms-request-id": [ "0aac7a4c-7bd3-43b2-a369-d3e193cfd6be" ], + "x-ms-correlation-request-id": [ "0aac7a4c-7bd3-43b2-a369-d3e193cfd6be" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T022852Z:0aac7a4c-7bd3-43b2-a369-d3e193cfd6be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DE99B45F1A24008B23A54984AC99465 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C0A8FDFCDE59420C9F3D2CB7A97525C2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+13": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+14": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "633" ], - "x-ms-client-request-id": [ "02aaee1b-9e2b-4fce-b2f4-f9e87eab69a5" ], + "x-ms-unique-id": [ "1008" ], + "x-ms-client-request-id": [ "15062717-ec20-4ea7-95f8-a03006ad508b" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7446,16 +7671,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "6d25e6f5-dac3-4921-af75-75adf87ce817" ], + "x-ms-request-id": [ "03eed1cb-2f34-474f-b8f4-ace87e2888aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08697075-ebbc-4960-83f3-282c7c4de65b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e8ab3688-42dd-4fc1-bc2a-2955feb2378f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a507506b-4f19-46b2-9684-17379f0f4a3b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004204Z:a507506b-4f19-46b2-9684-17379f0f4a3b" ], + "x-ms-correlation-request-id": [ "7846040e-7e6c-4168-b5f0-9072cec6538d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022852Z:7846040e-7e6c-4168-b5f0-9072cec6538d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9F82D47FCF8497F928C4655FF68C76E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 761C7ED6151045C783B255DEC9C6B904 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -7466,10 +7691,10 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2015-05-01+14": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2015-05-01+15": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -7489,30 +7714,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c195bf5-1f18-4605-85b3-e235240c22df" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56987a0f-fc47-4e37-82fb-4611fb174b45" ], "x-ms-ratelimit-remaining-subscription-writes": [ "800" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "12000" ], - "x-ms-request-id": [ "5b90f69b-d95a-475a-87a3-8079e88e8496" ], - "x-ms-correlation-request-id": [ "5b90f69b-d95a-475a-87a3-8079e88e8496" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004212Z:5b90f69b-d95a-475a-87a3-8079e88e8496" ], + "x-ms-request-id": [ "9a4d58bf-e5ac-43cb-b298-f8f05ca4ceb1" ], + "x-ms-correlation-request-id": [ "9a4d58bf-e5ac-43cb-b298-f8f05ca4ceb1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022859Z:9a4d58bf-e5ac-43cb-b298-f8f05ca4ceb1" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0EE9B78BBA88460395A80B61B61861FE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 380BBA30D7CB4F10805602D65109B8A2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:28:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1684" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c302d50a-0000-0300-0000-69c480e40000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"name\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"AppId\": \"8540f30a-57b1-47d9-aeb9-056bf2ad4dd3\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"03f79769-b6f5-460f-a2aa-dfcdd94ab402\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest7-pz8c2l4wbk\",\r\n \"CreationDate\": \"2026-03-26T00:42:05.3686453+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest7-pz8c2l4wbk_8540f30a-57b1-47d9-aeb9-056bf2ad4dd3_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest7-pz8c2l4wbk-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6e036ea7-0000-0300-0000-69c73ceb0000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest7-7nvoe2hfym\",\r\n \"name\": \"Func-PowerShell-NewTest7-7nvoe2hfym\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest7-7nvoe2hfym\",\r\n \"AppId\": \"b2143f1d-ce06-448c-ac22-897791e77df9\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"89c139a6-c54a-4b7d-9146-b4a2a1a99e54\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest7-7nvoe2hfym\",\r\n \"CreationDate\": \"2026-03-28T02:28:53.1530834+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest7-7nvoe2hfym_b2143f1d-ce06-448c-ac22-897791e77df9_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest7-7nvoe2hfym-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+15": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+16": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest7-pz8c2l4wbk\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest7-7nvoe2hfym\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7526,43 +7751,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB963F75F00\"" ], + "ETag": [ "\"1DCBE5AA39D4780\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f00c4eb6-83e2-4644-bb30-1dc72bf69fe7" ], + "x-ms-request-id": [ "22aa96f6-8925-4d30-8d26-4f18b8f78c47" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bd68a0ae-b396-49b8-bced-18bcf763e905" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5e082a68-0187-4a49-b63d-361ddc63b43f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "a7cfc160-997b-44be-a5f9-fda9f056dd3e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004255Z:a7cfc160-997b-44be-a5f9-fda9f056dd3e" ], + "x-ms-correlation-request-id": [ "3ad92820-6bbb-44aa-aef0-d9c0eed0fde6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T022940Z:3ad92820-6bbb-44aa-aef0-d9c0eed0fde6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8C0A9054EF24142879889E13B51D0E4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:42:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:42:54 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 42CC27A9A78C4A9B990B01F74130D635 Ref B: MWH011020809062 Ref C: 2026-03-28T02:28:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:29:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8581" ], + "Content-Length": [ "8586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:13.98\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:29:00.6566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+16": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "636" ], - "x-ms-client-request-id": [ "7423f66c-a677-4e9c-a572-f33d1cca2f75" ], + "x-ms-unique-id": [ "1011" ], + "x-ms-client-request-id": [ "0117bd64-9515-41b5-bf10-ab60e9e2ea49" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -7572,42 +7797,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB97BFBA555" ], + "ETag": [ "1DCBE5ABAE24F80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "604300ab-314b-4b1c-ac0e-c6494bfba27d" ], + "x-ms-request-id": [ "0f7a7a97-e61d-46a2-8229-f84b2a823201" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ae2f0c50-12d0-4dcb-b0e4-d9409bfa2942" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004325Z:ae2f0c50-12d0-4dcb-b0e4-d9409bfa2942" ], + "x-ms-correlation-request-id": [ "1ee68386-7e17-40c4-9243-9faafa4aa682" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023018Z:1ee68386-7e17-40c4-9243-9faafa4aa682" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A84E1885F83431B84715B1E821F0574 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7100D12601B41BAA216544C3DFAD792 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:11Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8376" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:54.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:29:40.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+17": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+18": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "637" ], - "x-ms-client-request-id": [ "cd4ae5d8-2c73-40a6-aeb5-e6e6c46105b8" ], + "x-ms-unique-id": [ "1012" ], + "x-ms-client-request-id": [ "87a89e09-4c9c-41b5-bfdf-08ac8453eaa9" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7618,42 +7843,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB97BFBA555" ], + "ETag": [ "1DCBE5ABAE24F80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "14be2e10-5484-45c1-9022-518b1ff0d83f" ], + "x-ms-request-id": [ "12f7a79b-4743-4611-b0e3-1dc6d1efab46" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2bdee92a-2446-46a6-b589-17b28716fb6c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004326Z:2bdee92a-2446-46a6-b589-17b28716fb6c" ], + "x-ms-correlation-request-id": [ "f414fab6-918e-4701-8261-1a4b86c4e6a6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023020Z:f414fab6-918e-4701-8261-1a4b86c4e6a6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04CEB72F32694DE48767309A46BCADD3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53989F7131634750B67E3F0311209B17 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:19 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8376" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:54.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:29:40.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+18": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "638" ], - "x-ms-client-request-id": [ "c3e4206d-35d7-4e84-85b8-9faeebcbf665" ], + "x-ms-unique-id": [ "1013" ], + "x-ms-client-request-id": [ "3128bf89-c786-476e-81e1-9649a653ed44" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7665,40 +7890,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "706e3496-4b8a-4633-bc4c-5465a8b77450" ], + "x-ms-request-id": [ "7522ffa5-44dd-4942-8766-1aece2188dab" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc28d0d7-23f4-4c3f-aade-542c2969a5d6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bd003bd5-8af4-4937-b299-74d3ca1410e9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004326Z:bd003bd5-8af4-4937-b299-74d3ca1410e9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a06b28f9-cf4a-4116-a7b1-5374059fced2" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], + "x-ms-correlation-request-id": [ "d720996a-a8f3-4390-a7e1-81bf256b476a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023027Z:d720996a-a8f3-4390-a7e1-81bf256b476a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 99AD4C858F9B46DD8C5C7608D1439674 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9CF8DC04AC6C475F8D9FFF9FBEFC15F3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-7nvoe2hfym\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+19": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01+20": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "639" ], - "x-ms-client-request-id": [ "586c56de-a865-44ab-8a8e-6e1c116d9bbc" ], + "x-ms-unique-id": [ "1014" ], + "x-ms-client-request-id": [ "f751406a-b440-4254-ad00-d9f35768013b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7710,41 +7935,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f856ea9-ce4d-42a1-a870-9684f3216770" ], + "x-ms-request-id": [ "39d2c493-bd7b-4d7a-9ab0-cb77650970f5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0ddc1004-0283-4b16-9ef5-bb4a75194f6d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f3cca954-4c0d-43c2-9cb5-10f1fbc0582d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6314329a-c978-4937-813a-2f05beb113a5" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004326Z:6314329a-c978-4937-813a-2f05beb113a5" ], + "x-ms-correlation-request-id": [ "be4d569f-d89a-426b-aca6-0306b320082d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023027Z:be4d569f-d89a-426b-aca6-0306b320082d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64C599B6FE854F6E9C6609066CA5CF28 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6E2480DFB4D442BC9D63CA3A7CF875A3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+20": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "640" ], - "x-ms-client-request-id": [ "923acfd1-dda1-42c9-af67-a255e80f10ad" ], + "x-ms-unique-id": [ "1015" ], + "x-ms-client-request-id": [ "dede2e7b-8756-460a-97ff-5551daf6a549" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7755,42 +7980,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB97BFBA555" ], + "ETag": [ "1DCBE5ABAE24F80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "377b2122-9375-4ef9-b6b2-f52a0eb12765" ], + "x-ms-request-id": [ "77a6e5e0-71c8-4564-bad8-f76df15e10c2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1a099a62-e7d3-42b7-81a6-a9b8eab0785b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004327Z:1a099a62-e7d3-42b7-81a6-a9b8eab0785b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "26b78543-3f51-46be-95b6-80d584c25e23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023029Z:26b78543-3f51-46be-95b6-80d584c25e23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32937631750B440AA2521BE23794E315 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D961E1ABAC114C4593C405EC8C52B764 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:29 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8382" ], + "Content-Length": [ "8376" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:42:54.9333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:29:40.6\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+21": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01+22": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "641" ], - "x-ms-client-request-id": [ "11ee9534-5b2e-4680-91f6-c369c1ba4aa5" ], + "x-ms-unique-id": [ "1016" ], + "x-ms-client-request-id": [ "c47ae2c8-9689-42b3-833a-48884ebc901c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7802,40 +8027,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3641612f-ba4c-4fef-88fa-adf9c590a191" ], + "x-ms-request-id": [ "e31ad743-92cc-415a-9478-f38f9be7ff1b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6491e4c-41d5-4436-ac04-56eb016a0c20" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/98eb1b3c-8073-4250-af43-3aadb84e5ab5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "4113d84e-5dad-4416-a6b8-8dcf87df8f4f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004327Z:4113d84e-5dad-4416-a6b8-8dcf87df8f4f" ], + "x-ms-correlation-request-id": [ "76efeae2-d7df-4ac3-b130-8196f28f1f85" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023029Z:76efeae2-d7df-4ac3-b130-8196f28f1f85" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E43A506AFC844B3183D1148964497675 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3292AB7A0954436DA0E6C9B829AD8F68 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-7nvoe2hfym\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+22": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "642" ], - "x-ms-client-request-id": [ "7596703f-941c-40bb-b860-bb777c18af4d" ], + "x-ms-unique-id": [ "1017" ], + "x-ms-client-request-id": [ "3576c0a7-a5b5-4332-9c04-182fb7decf5f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7847,41 +8072,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "827151cf-b3d4-4af9-b56f-d4bb9e054120" ], + "x-ms-request-id": [ "0cda1465-dbed-4952-963a-ecdcda6c5342" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a0bcf62-92ec-4758-92d6-0e89b25191ff" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fa4666d1-2888-43c3-8a7f-8c35a74761e7" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b130302e-e18d-4698-819b-db5366fc42e4" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004327Z:b130302e-e18d-4698-819b-db5366fc42e4" ], + "x-ms-correlation-request-id": [ "d1477c4e-0b7f-44ce-8629-133d9d9c6b23" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023030Z:d1477c4e-0b7f-44ce-8629-133d9d9c6b23" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DD363595A1E24B13AF932A75DCEAAA29 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 889262FBB721497DAD068E624464154D Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+23": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+24": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "643" ], - "x-ms-client-request-id": [ "d7055e27-ba19-426c-a596-f948e724da62" ], + "x-ms-unique-id": [ "1018" ], + "x-ms-client-request-id": [ "75fa0f6e-54e5-409e-b726-02a4faadc3b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7893,40 +8118,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dd64f2b6-8497-45d0-a513-e847157028fe" ], + "x-ms-request-id": [ "72d97a2b-1a89-4062-bc32-f4699a479db2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "ae77c2b9-9b55-4b4a-bb08-a04ff35cdea9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004328Z:ae77c2b9-9b55-4b4a-bb08-a04ff35cdea9" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "99afe0e6-fc25-481b-96f1-9de4fe6bf941" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023030Z:99afe0e6-fc25-481b-96f1-9de4fe6bf941" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 531486FD93B64C16B4EB214FE7F2C38E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A4D97D7FE40746C1A2AE3D9E8620CE11 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+24": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01+25": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "644" ], - "x-ms-client-request-id": [ "811c62a9-d3d9-4e06-91d5-ea6beae8fa24" ], + "x-ms-unique-id": [ "1019" ], + "x-ms-client-request-id": [ "906c5eec-97ef-4e17-a928-ae486a2d25cd" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -7938,32 +8163,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b3be2d88-479b-4f3a-bcda-c4cb89da8aa2" ], + "x-ms-request-id": [ "ef7035f3-55ee-4327-ae7a-92e1da955c52" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7123cc31-ed07-4abd-ad7e-69557eba5c58" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2c691510-09dc-4af7-9062-c9e02a0dc3cc" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "3e95d963-5e07-4a7c-a9e0-310b00efa7d8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004328Z:3e95d963-5e07-4a7c-a9e0-310b00efa7d8" ], + "x-ms-correlation-request-id": [ "4028d349-656c-4991-95a5-a05484aa9966" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023031Z:4028d349-656c-4991-95a5-a05484aa9966" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C313B47BC364A19B77F37121912036B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0CDCC9BEDD274842AF83F4F2BABEE246 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-7nvoe2hfym\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+25": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+26": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest7-pz8c2l4wbk\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\r\n \"reserved\": false,\r\n \"siteConfig\": {\r\n \"powerShellVersion\": \"7.4\",\r\n \"linuxFxVersion\": \"\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest7-7nvoe2hfym\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n }\r\n ],\r\n \"alwaysOn\": false,\r\n \"javaVersion\": \"\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\": {\r\n }\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -7977,43 +8202,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB97BFBA555\"" ], + "ETag": [ "\"1DCBE5ABAE24F80\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "da2ef8db-b6ee-4239-a191-e09657026522" ], + "x-ms-request-id": [ "245074d3-71b8-46ce-8c33-39e7a1dbad02" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/341aeb50-edd9-4725-8b81-1851346fc429" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/415558b6-aeb3-452e-af35-e4e39635fa59" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0a731055-2f46-4622-afa0-2d5ccf3a02ff" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004331Z:0a731055-2f46-4622-afa0-2d5ccf3a02ff" ], + "x-ms-correlation-request-id": [ "47ed4438-be09-4190-afd1-9ce6c0be14c2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023035Z:47ed4438-be09-4190-afd1-9ce6c0be14c2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 89B25E09F4EA4CFB8673AA8302E91369 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:43:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:43:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9FAB410336F3498F8A2DFB96A6603D65 Ref B: MWH011020809062 Ref C: 2026-03-28T02:30:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:30:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9042" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:30:33.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f2c4594a-df4a-4d1c-acc3-fbc18471ac8e\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+26": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+27": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "646" ], - "x-ms-client-request-id": [ "0b8f3873-5602-4635-b480-88e24716e0d3" ], + "x-ms-unique-id": [ "1021" ], + "x-ms-client-request-id": [ "b617d01c-f0d1-49c1-b3c5-1a05413c8833" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionApp" ], "FullCommandName": [ "Set-AzFunctionApp_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -8023,42 +8248,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9916620F5" ], + "ETag": [ "1DCBE5ADAB3F5F5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f0e661d7-17da-4c51-85ed-37191f606369" ], + "x-ms-request-id": [ "be483399-21b1-493a-8f5b-5587e86ded3e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0031cbe7-591f-4224-85f2-656a431942a3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:0031cbe7-591f-4224-85f2-656a431942a3" ], + "x-ms-correlation-request-id": [ "49dbd282-fb00-47b4-95ed-0c46edd4eb5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023105Z:49dbd282-fb00-47b4-95ed-0c46edd4eb5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C58553226AC148DBB0AD1D5ACDC8A24A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 90F51999FC4A4D709B44318D5AE709CB Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:05Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8838" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:30:33.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f2c4594a-df4a-4d1c-acc3-fbc18471ac8e\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+27": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "647" ], - "x-ms-client-request-id": [ "95e76b73-c970-4e05-8770-9ad5df27b84a" ], + "x-ms-unique-id": [ "1022" ], + "x-ms-client-request-id": [ "7bf5d763-cd8d-4413-b49c-4f78f0b88c17" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8069,42 +8294,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9916620F5" ], + "ETag": [ "1DCBE5ADAB3F5F5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a0036cfa-fb00-4f53-867f-f69d7e23c0c7" ], + "x-ms-request-id": [ "679b1be9-c1d6-4103-9b01-aff1709a28b4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2c41e782-b577-490b-ab6b-66e66f812267" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:2c41e782-b577-490b-ab6b-66e66f812267" ], + "x-ms-correlation-request-id": [ "a4e26ed4-7d7c-4ade-9f34-57dd0fb71a9a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023106Z:a4e26ed4-7d7c-4ade-9f34-57dd0fb71a9a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 176070383B8C4B37B1C2261DD8CF71B2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 464EFC42968B4904A9C7B1568316B0C8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:05 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8838" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:30:33.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f2c4594a-df4a-4d1c-acc3-fbc18471ac8e\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+28": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01+29": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "648" ], - "x-ms-client-request-id": [ "af90e53e-3ade-4476-8595-360989861e16" ], + "x-ms-unique-id": [ "1023" ], + "x-ms-client-request-id": [ "f93268ea-2776-4045-b83a-57bd5c6b84fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8116,40 +8341,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8db08cce-bd3a-4c63-a158-aa0016e2a41b" ], + "x-ms-request-id": [ "04f28e66-6540-4eff-8a5c-e660f885d670" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1f2550c-8509-489c-9ad9-32e52ef13c84" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b2667e37-f876-48f5-a1d6-424c8ca78835" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9027a7aa-c0bd-4d02-a420-7c7a8a9aa9cc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:9027a7aa-c0bd-4d02-a420-7c7a8a9aa9cc" ], + "x-ms-correlation-request-id": [ "8253d2b0-f28b-4d53-93bb-ebf092f397cc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023106Z:8253d2b0-f28b-4d53-93bb-ebf092f397cc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8EE13914549247E19E475D2239C2F0AF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2F32CDA557E4BDB9D139AA1A82EEAB4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-7nvoe2hfym\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+29": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01+30": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "649" ], - "x-ms-client-request-id": [ "8838cb7a-9ac8-4854-9edd-5e0778726c75" ], + "x-ms-unique-id": [ "1024" ], + "x-ms-client-request-id": [ "e9acd705-7b23-494b-9fa0-caab4a61a996" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8161,41 +8386,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0fad9537-c0ad-4c56-a4b9-444ad6847516" ], + "x-ms-request-id": [ "3ea01776-ab24-42b4-af10-6c2cc2d1d18d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9aa3df4d-5893-4d3d-adbd-44b1f115c66b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40475183-af55-4e4a-8856-db5e0647c9c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7ef04c54-c54d-480e-8d88-ffe1dae24258" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004402Z:7ef04c54-c54d-480e-8d88-ffe1dae24258" ], + "x-ms-correlation-request-id": [ "f0afed5d-a010-4e1b-9d26-7d3a77542252" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023106Z:f0afed5d-a010-4e1b-9d26-7d3a77542252" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0300957D665D4550868B34B29FAFF3B8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FC44A2BABD74DCCB0FD99511FDE2D4C Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88200,\"xManagedServiceIdentityId\":88201,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94764,\"xManagedServiceIdentityId\":94765,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+30": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "650" ], - "x-ms-client-request-id": [ "30ce3ad0-a6e2-437d-8448-524cd1c1f6a8" ], + "x-ms-unique-id": [ "1025" ], + "x-ms-client-request-id": [ "6fd6038f-e39e-4aef-b98f-1ba86bc82b8e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8206,42 +8431,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9916620F5" ], + "ETag": [ "1DCBE5ADAB3F5F5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "805bb5a1-1fb5-4ef4-af85-b4e81b0cf89f" ], + "x-ms-request-id": [ "08858d55-c180-401f-8502-f7b14ac0003c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "50cad2fa-fc9c-4349-87a0-ef6575c049ac" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:50cad2fa-fc9c-4349-87a0-ef6575c049ac" ], + "x-ms-correlation-request-id": [ "4afee289-5be1-47ed-972e-d286f2f883be" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023107Z:4afee289-5be1-47ed-972e-d286f2f883be" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B4897981F3F94356B3858F9CFD1E07F0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4C1DCFA47B474C629B770947208CF014 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8838" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-pz8c2l4wbk.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:43:30.8633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\\\\$Func-PowerShell-NewTest7-pz8c2l4wbk\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest7-pz8c2l4wbk.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"397417e5-30bb-435e-9005-f826b83f6b58\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"491cde4e-f8e2-4fd9-a008-c7f56684132d\",\"clientId\":\"9117d8bd-9ee2-4972-8373-fd719cde24ad\"}}}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest7-7nvoe2hfym\",\"repositorySiteName\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest7-7nvoe2hfym.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:30:33.9833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest7-7nvoe2hfym\\\\$Func-PowerShell-NewTest7-7nvoe2hfym\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest7-7nvoe2hfym.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null},\"identity\":{\"type\":\"SystemAssigned, UserAssigned\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"principalId\":\"f2c4594a-df4a-4d1c-acc3-fbc18471ac8e\",\"userAssignedIdentities\":{\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1\":{\"principalId\":\"fb84fc42-205c-43a2-9956-b759de3a01da\",\"clientId\":\"128aaf20-234d-46b2-9e8a-b0f38542edbd\"}}}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01+31": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01+32": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "651" ], - "x-ms-client-request-id": [ "9185b06f-47ac-4e92-bf07-4662a7549129" ], + "x-ms-unique-id": [ "1026" ], + "x-ms-client-request-id": [ "41d71430-956d-438e-a648-4e0ce5b61fc9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8253,40 +8478,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6c5f5a68-1b58-44b7-944a-0e723267da60" ], + "x-ms-request-id": [ "e9cf31b1-edef-4939-8db2-5decd4970378" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d11826ee-a990-473a-b8c5-283d454fbcfa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c1054fb3-3a7f-4b8f-9c81-155b4df58bd6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c8451cfa-0808-47cd-b8d7-4c48b4e4cf64" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:c8451cfa-0808-47cd-b8d7-4c48b4e4cf64" ], + "x-ms-correlation-request-id": [ "07fa1d0e-24c3-4e56-a14b-a86264e5cf31" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023107Z:07fa1d0e-24c3-4e56-a14b-a86264e5cf31" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ED388ACFB8DD4E3083163AA413B03E02 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EA41E016AD334792BE875B2F71DEA07A Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-pz8c2l4wbk\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest7-7nvoe2hfym\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01+32": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "652" ], - "x-ms-client-request-id": [ "1cd2a722-a3b2-416f-93e0-a276bb068c17" ], + "x-ms-unique-id": [ "1027" ], + "x-ms-client-request-id": [ "de3c6e18-7ff9-4d0a-bae5-466a0f0d04b4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8298,41 +8523,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5baf9ffe-b6eb-4aad-968b-a4be81175c25" ], + "x-ms-request-id": [ "31e5cf79-38f1-43b6-a8be-ebb5b63ae187" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56011f6b-f304-4b14-88d2-825dbc8c31d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1c78e48a-1759-4174-b700-36043716cbdf" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b6716298-8356-4ac1-9ae7-d71bef423180" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:b6716298-8356-4ac1-9ae7-d71bef423180" ], + "x-ms-correlation-request-id": [ "7ccd99c6-2564-4e5f-ad75-e5bd2f2e735e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023107Z:7ccd99c6-2564-4e5f-ad75-e5bd2f2e735e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16C7EBA7E8AE4531BE83414AD6B3BC5B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:02 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F1FA5548127492588E70C23D8EA5C7C Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4193" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk/config/web\",\"name\":\"Func-PowerShell-NewTest7-pz8c2l4wbk\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":88200,\"xManagedServiceIdentityId\":88201,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym/config/web\",\"name\":\"Func-PowerShell-NewTest7-7nvoe2hfym\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":94764,\"xManagedServiceIdentityId\":94765,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+33": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+34": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "653" ], - "x-ms-client-request-id": [ "72c184d7-a5b2-4141-b920-50a4793d1e01" ], + "x-ms-unique-id": [ "1028" ], + "x-ms-client-request-id": [ "d0fc5a46-b3ff-4b18-9568-4e9cc6966069" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8344,40 +8569,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "284495b1-e0ca-4bd0-bc47-df42658a20d1" ], + "x-ms-request-id": [ "48de14b4-7def-4a57-8c46-7b013231ffc0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "21d6186f-5ecd-43bf-82eb-25aef28b903d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004403Z:21d6186f-5ecd-43bf-82eb-25aef28b903d" ], + "x-ms-correlation-request-id": [ "4a51254e-d3c9-4b94-9acc-6c86b9664a88" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023107Z:4a51254e-d3c9-4b94-9acc-6c86b9664a88" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F53EA79F948A4FB7B66C398F50F5D824 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:03Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CC6A5648A7CC4FCDB20673EFFAC39419 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:07Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+34": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+35": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "654" ], - "x-ms-client-request-id": [ "d58b136c-c7b5-4e06-9042-c86deb787d02" ], + "x-ms-unique-id": [ "1029" ], + "x-ms-client-request-id": [ "671027cc-d877-4e59-a482-243cc922016c" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8388,20 +8613,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCB9916620F5\"" ], + "ETag": [ "\"1DCBE5ADAB3F5F5\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "767bdbdf-76b9-4539-a8fd-228fc7aaf420" ], + "x-ms-request-id": [ "ed95b779-0235-4695-b7a7-064df68ee137" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/eff6b21d-e177-4b45-888b-245c4efdd32e" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "0dc0f4b1-e17f-47f6-bc86-cb28b585fb09" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004411Z:0dc0f4b1-e17f-47f6-bc86-cb28b585fb09" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d576365-4c0d-4957-8082-2086644e8cf8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "63a9aa08-7f9e-4fac-93f6-7a8911028aba" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023116Z:63a9aa08-7f9e-4fac-93f6-7a8911028aba" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 39B3F240D1DE490B80FA150EE87B8CD2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:04Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 613645CB2D1D42F6A3449953F997A27C Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:08Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:16 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -8411,19 +8636,19 @@ "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+35": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+36": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "655" ], - "x-ms-client-request-id": [ "4eeef7b1-999a-45b9-84ad-46bc3a79bf5b" ], + "x-ms-unique-id": [ "1030" ], + "x-ms-client-request-id": [ "566031f1-0995-440c-949a-774737f4035f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8435,37 +8660,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "e2fd5f37-de4a-4942-8e36-db02212aaa07" ], - "x-ms-correlation-request-id": [ "e2fd5f37-de4a-4942-8e36-db02212aaa07" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004411Z:e2fd5f37-de4a-4942-8e36-db02212aaa07" ], + "x-ms-request-id": [ "d1d25816-2a8e-4f4e-979e-7479dd5b65ca" ], + "x-ms-correlation-request-id": [ "d1d25816-2a8e-4f4e-979e-7479dd5b65ca" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023116Z:d1d25816-2a8e-4f4e-979e-7479dd5b65ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E20CD3B55BC46A489B717F4FA4CD0B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 31BFED87A8864736B31B1D148CE9F08C Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01+36": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update a function app to enable both SystemAssigned and UserAssigned managed identities+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01+37": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "656" ], - "x-ms-client-request-id": [ "72bff9a2-0ca4-4a8b-b1a6-029c9a002350" ], + "x-ms-unique-id": [ "1031" ], + "x-ms-client-request-id": [ "fd4df0f2-fed8-4444-b11f-a1c21db5060b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8477,37 +8702,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "4b4ca2c7-92a5-40e5-9a56-8cf3ab6325db" ], - "x-ms-correlation-request-id": [ "4b4ca2c7-92a5-40e5-9a56-8cf3ab6325db" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004411Z:4b4ca2c7-92a5-40e5-9a56-8cf3ab6325db" ], + "x-ms-request-id": [ "e2685569-13a3-48e4-83ea-31cc9809cef6" ], + "x-ms-correlation-request-id": [ "e2685569-13a3-48e4-83ea-31cc9809cef6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023117Z:e2685569-13a3-48e4-83ea-31cc9809cef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FAD06994C9E441D1B892F20B5D15073C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6AC9E78822384D5791C901580D18A955 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:16Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest7-pz8c2l4wbk\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest7-7nvoe2hfym\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y?api-version=2023-12-01+1": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "657" ], - "x-ms-client-request-id": [ "61ca132c-7ce6-4587-af9f-02dac2eeb574" ], + "x-ms-unique-id": [ "1032" ], + "x-ms-client-request-id": [ "6b61c672-4ded-416a-81cc-9d0635ee901a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8518,42 +8743,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB52971D260" ], + "ETag": [ "1DCBE5264DA5C20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3da2556-ec61-49e0-bec4-a58776b9cef6" ], + "x-ms-request-id": [ "79bdadf2-2cb5-4d63-915d-25122bfe7616" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c39d13ca-7193-4bd9-9ed4-4df084c2a5ce" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T004412Z:c39d13ca-7193-4bd9-9ed4-4df084c2a5ce" ], + "x-ms-correlation-request-id": [ "de644745-b8de-43aa-9852-0c3cefa31fc4" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T023117Z:de644745-b8de-43aa-9852-0c3cefa31fc4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5EF92CB5794F4CE89E6511D2856BCE95 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53A89FCCE2274BAFB6AE0792E56F9FD6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "9381" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-a50y\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-a50y.azurewebsites.net\"],\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace/sites/Flex-PowerShell-a50y\",\"repositorySiteName\":\"Flex-PowerShell-a50y\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-a50y.azurewebsites.net\",\"flex-powershell-a50y.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-a50y.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-a50y.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:11:58.47\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsaa50y.blob.core.windows.net/app-package-flexpowershella50y-0196397\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-a50y\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-a50y\\\\$Flex-PowerShell-a50y\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"defaultHostName\":\"flex-powershell-a50y.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro\",\"name\":\"Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"East Asia\",\"properties\":{\"name\":\"Flex-PowerShell-3wro\",\"state\":\"Running\",\"hostNames\":[\"flex-powershell-3wro.azurewebsites.net\"],\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"selfLink\":\"https://waws-prod-hk1-055.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace/sites/Flex-PowerShell-3wro\",\"repositorySiteName\":\"Flex-PowerShell-3wro\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":true,\"afdEnabled\":false,\"enabledHostNames\":[\"flex-powershell-3wro.azurewebsites.net\",\"flex-powershell-3wro.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"flex-powershell-3wro.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"flex-powershell-3wro.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:30:00.29\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":{\"deployment\":{\"storage\":{\"type\":\"blobcontainer\",\"value\":\"https://flexapppowershellsa3wro.blob.core.windows.net/app-package-flexpowershell3wro-9099015\",\"authentication\":{\"type\":\"storageaccountconnectionstring\",\"userAssignedIdentityResourceId\":null,\"storageAccountConnectionStringName\":\"DEPLOYMENT_STORAGE_CONNECTION_STRING\"}}},\"runtime\":{\"name\":\"powershell\",\"version\":\"7.4\"},\"scaleAndConcurrency\":{\"alwaysReady\":null,\"maximumInstanceCount\":100,\"instanceMemoryMB\":2048,\"triggers\":null},\"siteUpdateStrategy\":{\"type\":\"Recreate\"}},\"daprConfig\":null,\"deploymentId\":\"Flex-PowerShell-3wro\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"FlexConsumption\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.205.69.87\",\"possibleInboundIpAddresses\":\"20.205.69.87\",\"inboundIpv6Address\":\"2603:1040:207:3::41e\",\"possibleInboundIpv6Addresses\":\"2603:1040:207:3::41e\",\"ftpUsername\":\"Flex-PowerShell-3wro\\\\$Flex-PowerShell-3wro\",\"ftpsHostName\":\"ftps://waws-prod-hk1-055.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.205.69.87\",\"possibleOutboundIpAddresses\":\"20.187.161.60,20.187.163.128,20.187.164.27,20.187.165.144,20.187.166.5,20.187.166.169,20.255.205.53,20.255.205.111,20.255.205.117,20.255.205.135,20.255.205.201,20.255.205.238,20.255.206.2,20.255.206.57,20.255.206.89,20.255.206.100,20.255.206.147,20.2.56.137,20.2.56.202,20.2.58.65,20.2.59.169,20.2.61.23,20.2.62.58,20.2.62.103,20.2.62.118,20.2.63.46,20.6.144.10,20.24.125.44,20.24.125.116,20.239.124.22,20.205.69.87\",\"outboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"possibleOutboundIpv6Addresses\":\"2603:1040:204:3::1a5,2603:1040:204:3::1a7,2603:1040:204:3::1a9,2603:1040:204:3::1ab,2603:1040:204:3::1ad,2603:1040:204:3::1af,2603:1040:204:3::17e,2603:1040:204:3::182,2603:1040:204:3::183,2603:1040:204:3::186,2603:1040:204:3::188,2603:1040:204:3::189,2603:1040:204:3::18c,2603:1040:204:3::18d,2603:1040:204:3::18f,2603:1040:204:3::192,2603:1040:204:3::194,2603:1040:204:3::196,2603:1040:204:3::198,2603:1040:204:3::199,2603:1040:204:3::19b,2603:1040:204:3::19c,2603:1040:204:3::19d,2603:1040:204:3::19e,2603:1040:204:3::19f,2603:1040:204:3::1a0,2603:1040:204:3::1a1,2603:1040:204:3::1a2,2603:1040:204:3::1a3,2603:1040:204:3::1a4,2603:1040:207:3::41e,2603:10e1:100:2::14cd:4557,2603:1040:207:2::418,2603:10e1:100:2::14cd:4608\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-hk1-055\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"defaultHostName\":\"flex-powershell-3wro.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01+2": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "658" ], - "x-ms-client-request-id": [ "c689c1bc-c8ab-43da-80f7-8f6050369906" ], + "x-ms-unique-id": [ "1033" ], + "x-ms-client-request-id": [ "42b026c6-dff0-4f2b-85e2-8945127475b1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8565,40 +8790,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "258cec25-d608-499d-b916-a57d370f6d3b" ], + "x-ms-request-id": [ "9d31c39c-de93-4b3a-a492-576dc7bd2c4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/79a274e3-2c9a-40d4-972c-5fdad5db493e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/f735ece8-d30d-4fb8-ac23-2a2866d59075" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "44a0b6d3-3129-49d7-ad31-4a41b6d2d81e" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T004412Z:44a0b6d3-3129-49d7-ad31-4a41b6d2d81e" ], + "x-ms-correlation-request-id": [ "ee401ce9-c859-4879-a01a-f29311b42f26" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T023117Z:ee401ce9-c859-4879-a01a-f29311b42f26" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E501EDDCBFBA48F3A3DE26352B5B90F8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 00BE1596DAF84F81B9A26EAFE379BBE8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1011" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"DEPLOYMENT_STORAGE_CONNECTION_STRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01+3": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "659" ], - "x-ms-client-request-id": [ "c1d14c6b-4eaa-4126-8a34-30c0fb2d8017" ], + "x-ms-unique-id": [ "1034" ], + "x-ms-client-request-id": [ "bb40b81d-8e5f-45bc-b592-eab8dc333c78" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8610,41 +8835,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "791e3996-8271-40df-97bb-66c43fac6360" ], + "x-ms-request-id": [ "50a6a0e8-8cc5-42a7-9c3c-18f75b1bae11" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/bb135904-0717-404f-973c-1b7ef5f9cbfd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/eastasia/4cf2f8c8-fab4-4233-86cf-debffd38f174" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "540799f2-f672-4736-ac25-be1d371bbb2a" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T004413Z:540799f2-f672-4736-ac25-be1d371bbb2a" ], + "x-ms-correlation-request-id": [ "ff490234-a42e-41ec-816d-fb17236f3714" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T023118Z:ff490234-a42e-41ec-816d-fb17236f3714" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 41A93E4E2AEA40A199F9CD6784EA8A7E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 14A613D5A9A6417E9029BA39BF3295CB Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4141" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/sites/Flex-PowerShell-a50y/config/web\",\"name\":\"Flex-PowerShell-a50y\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/sites/Flex-PowerShell-3wro/config/web\",\"name\":\"Flex-PowerShell-3wro\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"East Asia\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":100,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+4": { + "New-AzFunctionApp, Update-AzFunctionApp, and Remove-AzFunctionApp E2E+[NoContext]+Update-AzFunctionApp should error for Flex Consumption apps+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "660" ], - "x-ms-client-request-id": [ "340b460f-65c0-4772-a2b8-4ab7276b33ff" ], + "x-ms-unique-id": [ "1035" ], + "x-ms-client-request-id": [ "22f679dd-a7a7-4ee9-96c9-6009afad3f03" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -8656,24 +8881,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "79299c3f-7c55-48a0-ad96-9c40107f4f27" ], + "x-ms-request-id": [ "f6670f6a-8d85-42e4-80ac-7bef598bf8e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "f2ee4977-03cb-4e73-90df-0260d045077b" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T004413Z:f2ee4977-03cb-4e73-90df-0260d045077b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "0dec3eed-c244-403c-8bdf-6560379a0013" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T023118Z:0dec3eed-c244-403c-8bdf-6560379a0013" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC431B1F094E4E08A4EFFC07C52FCE60 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 572FC3402FEC451B90C7D38DE983DB92 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:18Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:18 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json index ddb835fbb094..e394299e922a 100644 --- a/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json +++ b/src/Functions/Functions.Autorest/test/New-Update-Remove-AzFunctionAppPlan.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "661" ], - "x-ms-client-request-id": [ "0d2a20d6-4bb3-4089-97b3-ab0619ec397b" ], + "x-ms-unique-id": [ "1036" ], + "x-ms-client-request-id": [ "0fed4041-9782-416a-95c7-6ce6f5894dd3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a854327-7fe8-4010-bfea-f67c3632caf4" ], + "x-ms-request-id": [ "6ec66332-a138-4e2c-868f-31857c1e1e78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/8a20a7fd-3946-45bc-8640-a2a083e46c10" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ce7ecfe5-6cec-4e5a-8dde-6063aa96e803" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "553f9cbe-e279-4e37-af4f-2121e4210fc5" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004414Z:553f9cbe-e279-4e37-af4f-2121e4210fc5" ], + "x-ms-correlation-request-id": [ "f46e03a6-837b-4015-8ceb-7ef6a9585f70" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T023119Z:f46e03a6-837b-4015-8ceb-7ef6a9585f70" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 238E16A97293468E9CDDE32C43D5E8F6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 190993A5796141CAAB5523F40FFBBEC3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:18 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -45,10 +45,10 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -63,44 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9AC274A60" ], + "ETag": [ "1DCBE5AF6D7A295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d715e7f6-033f-4e8b-8f70-29bd87441fb1" ], + "x-ms-request-id": [ "01744f47-81ee-49a2-ac08-fe59a9173080" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12fe736f-8a47-48a4-ba32-ec05ac049de7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f10cdad7-d120-4428-9a3b-14b1d381d2a7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "6f1b097b-2971-4db2-ae0b-5823d876caf0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004416Z:6f1b097b-2971-4db2-ae0b-5823d876caf0" ], + "x-ms-correlation-request-id": [ "94122d84-ac93-4294-ab4b-7157522fa738" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023122Z:94122d84-ac93-4294-ab4b-7157522fa738" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1C755F141E2A4857B808A89DC2ECB25B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8B055861B0E045F5930DC6C121DE9B57 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1913" ], + "Content-Length": [ "1908" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "663" ], - "x-ms-client-request-id": [ "df078812-dc4e-40d1-92eb-84f6e4b73197" ], + "x-ms-unique-id": [ "1038" ], + "x-ms-client-request-id": [ "42b70f16-0edd-447c-9a6c-4e0b5093e4c7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9586e8c5-2025-4505-adca-c125f1f16d92" ], + "x-ms-request-id": [ "f51e7e8a-f30f-4356-bf48-c2a44374584f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3322e0e7-16e3-4891-8a38-b534b09223b8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:3322e0e7-16e3-4891-8a38-b534b09223b8" ], + "x-ms-correlation-request-id": [ "0634bdde-d114-4f0f-a9fa-192a64ddde3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023152Z:0634bdde-d114-4f0f-a9fa-192a64ddde3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E0BCFDA04F24FE1AEA4D0E27B01D472 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1802895812DE4FC2B24AB79DB50468DA Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "664" ], - "x-ms-client-request-id": [ "df078812-dc4e-40d1-92eb-84f6e4b73197" ], + "x-ms-unique-id": [ "1039" ], + "x-ms-client-request-id": [ "42b70f16-0edd-447c-9a6c-4e0b5093e4c7" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -156,40 +156,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e8f8aad-4d09-4356-98ae-21517aefbfa6" ], + "x-ms-request-id": [ "621639fa-55bc-4a5f-97b4-942fbad62e3a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c0c9eee2-f3d8-4571-8f8d-ac346b92a5ba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:c0c9eee2-f3d8-4571-8f8d-ac346b92a5ba" ], + "x-ms-correlation-request-id": [ "2fcb1830-ad69-4db7-8715-d19776c7f2de" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023153Z:2fcb1830-ad69-4db7-8715-d19776c7f2de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4AB76F2AF82E4806B73F60353EED66B4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5EA8455A85FF432D92A4D53B1E47FCB5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "665" ], - "x-ms-client-request-id": [ "b8c6a10f-db49-4b56-94e8-0997c57b6e4a" ], + "x-ms-unique-id": [ "1040" ], + "x-ms-client-request-id": [ "9ce862bd-a8dc-480d-b8b1-2378bce2c6bd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -201,40 +201,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bcd0b4d6-01b1-421a-93e2-10d5132b5f6e" ], + "x-ms-request-id": [ "b6b333c3-9b7c-4cff-a65b-192f467b6798" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5219365e-7186-47c5-a25d-d97f8dc5ef44" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:5219365e-7186-47c5-a25d-d97f8dc5ef44" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "db954a04-ff35-4216-9846-18eaf1387b51" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023153Z:db954a04-ff35-4216-9846-18eaf1387b51" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E1AF1BBBF6DD4A82B48FFEF2ACE46CF4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3ACFDF35B484A3791725700210124BF Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "666" ], - "x-ms-client-request-id": [ "3d04fa42-6fbf-4bb8-b769-3a334577dc2f" ], + "x-ms-unique-id": [ "1041" ], + "x-ms-client-request-id": [ "c07b759d-4728-4aae-8d85-ed3e62db1b17" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -246,31 +246,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70ffa223-2f7e-4ef6-ba4f-80aaa2de9c1c" ], + "x-ms-request-id": [ "bb6c8173-1898-4262-a856-95ed3c1a57e5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "47afbcc8-dd50-40cf-a31f-b8356f6e0dc1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004447Z:47afbcc8-dd50-40cf-a31f-b8356f6e0dc1" ], + "x-ms-correlation-request-id": [ "e8907c46-e042-45a0-ba8e-f7de3dcddabe" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023153Z:e8907c46-e042-45a0-ba8e-f7de3dcddabe" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5DA6DEB59D1840E78434E1EF558BADF4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 69E6F1FDD5AF40619C05B1BAEB0185F9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 5,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP3\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -286,42 +286,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "32715046-e149-47ab-8d6d-cfb9e86f616b" ], + "x-ms-request-id": [ "252707d6-326c-468d-bac4-7413ed5039cf" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef118b66-5c58-4822-8a8d-3f262d1ec3fa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ba1cf93-3290-47ae-99ce-7d8d77f6a070" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e9b6d1b6-64bd-4c87-bdbb-1932ed495fcb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004449Z:e9b6d1b6-64bd-4c87-bdbb-1932ed495fcb" ], + "x-ms-correlation-request-id": [ "2a8d14e4-ab99-4739-b9df-023b303e1791" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023155Z:2a8d14e4-ab99-4739-b9df-023b303e1791" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2CDAE94399A24D0396B5D5E631C7CDAC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:44:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:44:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 38A3CC50630F4FF289773B02F03365F8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:31:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:31:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+8": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "668" ], - "x-ms-client-request-id": [ "fd2dbbec-dcb6-42cf-aed6-98e8421475d4" ], + "x-ms-unique-id": [ "1043" ], + "x-ms-client-request-id": [ "692b8eb7-72e4-40df-8637-42478174199f" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -332,41 +332,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "70b11c31-bc98-4fe4-964d-f4adb02274bf" ], + "x-ms-request-id": [ "bbfd4f81-5569-46df-930a-8a093f161839" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "5db82760-bb20-48ef-8d0f-dcb538a221d9" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004520Z:5db82760-bb20-48ef-8d0f-dcb538a221d9" ], + "x-ms-correlation-request-id": [ "4c63233a-a2e6-4370-8da4-3e8a07389397" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023226Z:4c63233a-a2e6-4370-8da4-3e8a07389397" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABA446A857E04FE292CA923F12504A51 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:45:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 98D34C9352EA4F11B276EB3078317751 Ref B: MWH011020809062 Ref C: 2026-03-28T02:32:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:32:25 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+9": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "669" ], - "x-ms-client-request-id": [ "fd2dbbec-dcb6-42cf-aed6-98e8421475d4" ], + "x-ms-unique-id": [ "1044" ], + "x-ms-client-request-id": [ "692b8eb7-72e4-40df-8637-42478174199f" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -377,40 +377,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8b96fdc2-4696-4e7c-af2d-5d0a0c3ff7ff" ], + "x-ms-request-id": [ "a2c49e4e-7c0e-409f-abaa-128167d6cc3d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f502aeb2-fa82-4a6f-bb7a-69d12ee42f83" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004522Z:f502aeb2-fa82-4a6f-bb7a-69d12ee42f83" ], + "x-ms-correlation-request-id": [ "5fc8f8e0-f639-4040-ad1c-5d4d39c6b4b8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023226Z:5fc8f8e0-f639-4040-ad1c-5d4d39c6b4b8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E8C6BC1A841A4B5A900F34D3EEE348C0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:45:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C98F251A55514DEC9D4E8490794D01FD Ref B: MWH011020809062 Ref C: 2026-03-28T02:32:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:32:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+10": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "670" ], - "x-ms-client-request-id": [ "9e50f0c4-b8c4-4c69-b5bf-ae7ced98b823" ], + "x-ms-unique-id": [ "1045" ], + "x-ms-client-request-id": [ "6e4c9b30-ba0b-4a09-bc83-69d03ca885f7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -422,40 +422,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "20e47389-e69a-4495-beb7-1153809a04d1" ], + "x-ms-request-id": [ "a63bbc26-9bb0-498b-a8d1-ce4a2dd448bb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ea13635d-62f7-41c0-8c6e-3293bef9a441" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004522Z:ea13635d-62f7-41c0-8c6e-3293bef9a441" ], + "x-ms-correlation-request-id": [ "6b198e38-167f-4073-803a-28f66739f645" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023226Z:6b198e38-167f-4073-803a-28f66739f645" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 341BA032CA134299AB0E3C7C7CBCA8DC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:45:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 048E1AAB39ED4253A2DAC304A047E873 Ref B: MWH011020809062 Ref C: 2026-03-28T02:32:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:32:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+11": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "671" ], - "x-ms-client-request-id": [ "a83b3a9f-c1c4-4661-a92d-7c8d5c814b95" ], + "x-ms-unique-id": [ "1046" ], + "x-ms-client-request-id": [ "70362bc3-a1f4-450d-ae75-94d01bdde649" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -467,40 +467,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1e1f7727-7676-4899-b695-e3af63e2b525" ], + "x-ms-request-id": [ "2bd0c61b-6475-4937-9e74-cc6f91f18ae6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "70408b73-d766-47bb-b3f9-e98bb61b7616" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004522Z:70408b73-d766-47bb-b3f9-e98bb61b7616" ], + "x-ms-correlation-request-id": [ "767139e9-4020-4b7d-9a19-264ce533298e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023227Z:767139e9-4020-4b7d-9a19-264ce533298e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C527B61139AE464D91DAFECC7B6E41C5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:45:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1634F0B574BC41B59010E51593D80DC6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:32:26Z" ], + "Date": [ "Sat, 28 Mar 2026 02:32:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115036,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115036\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:44:15.0333333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123848,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D3\",\"workerSizeId\":5,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D3\",\"currentWorkerSizeId\":5,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":5,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123848\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:31:20.32\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP3\",\"tier\":\"ElasticPremium\",\"size\":\"EP3\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+12": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+12": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "672" ], - "x-ms-client-request-id": [ "6a22b29d-6adf-43df-a9b4-bf67d04344d3" ], + "x-ms-unique-id": [ "1047" ], + "x-ms-client-request-id": [ "9fe2f884-73a8-4e74-8244-a3c4a66229dc" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -512,18 +512,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "72fe2ed7-42f1-4107-ba60-1169edc286ba" ], + "x-ms-request-id": [ "e8c75b57-72ab-4f06-b715-c47b9b23ea04" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2ed7bd40-a130-46c1-8262-40bb6aeefe8a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/760b9183-0a2e-4c61-a40a-7fe95994aca3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "d750742f-1e70-493e-8cde-edff509fc880" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004528Z:d750742f-1e70-493e-8cde-edff509fc880" ], + "x-ms-correlation-request-id": [ "a6a12350-70cf-472f-9ddc-2d746d928a5f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023231Z:a6a12350-70cf-472f-9ddc-2d746d928a5f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 783BB135ED8E4C1FB45A21480D822736 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:45:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A722C658B8F1453C80632E558F78BD8C Ref B: MWH011020809062 Ref C: 2026-03-28T02:32:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:32:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -540,12 +540,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "673" ], - "x-ms-client-request-id": [ "f58a248b-84f2-4d7b-8f3d-f4d937c6eccf" ], + "x-ms-unique-id": [ "1048" ], + "x-ms-client-request-id": [ "de9dce19-f038-40cc-b9d5-f8693fad8067" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -557,18 +557,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "afc09fe9-cf69-4333-ad49-e2f38f973572" ], + "x-ms-request-id": [ "210a6f6f-c800-46eb-871e-414a19169d09" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/6d662d39-2d67-4cae-ade4-36c6e2300b06" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/ee6a4578-bf6c-47b5-92ae-1b4ed10433a1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a172159-d47d-4db5-9557-3e49c19381e0" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004528Z:4a172159-d47d-4db5-9557-3e49c19381e0" ], + "x-ms-correlation-request-id": [ "6c4b5b40-c8de-43d5-ac2c-cae9bcc99be9" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T023232Z:6c4b5b40-c8de-43d5-ac2c-cae9bcc99be9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 239995605A9042F4A251F939BBA36846 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:45:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62441D68135C49AE847AFAC32ADB21EB Ref B: MWH011020809062 Ref C: 2026-03-28T02:32:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:32:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -579,10 +579,10 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -597,44 +597,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB9D8C275AB" ], + "ETag": [ "1DCBE5B225C95EB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b591d1bb-a228-449a-9b9e-5638a17841da" ], + "x-ms-request-id": [ "eef4bf80-19f0-43fa-9f8d-654770172030" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7469bf4c-26f8-4c9c-af71-75d232190e88" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/94bac3eb-0f5b-47f2-b1bd-6486defb9406" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "88c51c6f-5c18-4284-ba77-a61a1d3396d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004531Z:88c51c6f-5c18-4284-ba77-a61a1d3396d7" ], + "x-ms-correlation-request-id": [ "ea3a8613-1c78-491d-91a8-4df8318fef3d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023234Z:ea3a8613-1c78-491d-91a8-4df8318fef3d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55965BCE069A42458825CF51706BD900 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:45:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:45:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62B45CAF0E0D446FB041A743D25D8333 Ref B: MWH011020809062 Ref C: 2026-03-28T02:32:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:32:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1913" ], + "Content-Length": [ "1908" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "675" ], - "x-ms-client-request-id": [ "0e627b3a-6538-469d-a80a-a6de02e6dae7" ], + "x-ms-unique-id": [ "1050" ], + "x-ms-client-request-id": [ "9f230827-4dbd-4b86-a8e7-e1c32178c4e4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -645,41 +645,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e49db175-cb0d-416d-820c-cc0bc0754406" ], + "x-ms-request-id": [ "7ce8a49c-1704-43a7-be25-373be8f947da" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1872f4e7-b85b-4498-802c-860e238ffe41" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004601Z:1872f4e7-b85b-4498-802c-860e238ffe41" ], + "x-ms-correlation-request-id": [ "72bc966d-f1a8-4533-a0d8-161f66f34228" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023305Z:72bc966d-f1a8-4533-a0d8-161f66f34228" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C983B6690081402CA6F514DB532C497A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B78AC9FE189548C8B64983335896C662 Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:05Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "676" ], - "x-ms-client-request-id": [ "0e627b3a-6538-469d-a80a-a6de02e6dae7" ], + "x-ms-unique-id": [ "1051" ], + "x-ms-client-request-id": [ "9f230827-4dbd-4b86-a8e7-e1c32178c4e4" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -690,40 +690,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6cf5191c-104c-44e3-8f5e-814ab7949d03" ], + "x-ms-request-id": [ "02ca5620-d35c-430b-910a-99b643fb5a2c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7cb8f18f-9c73-412b-b093-36f27c089d57" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004602Z:7cb8f18f-9c73-412b-b093-36f27c089d57" ], + "x-ms-correlation-request-id": [ "fa8d1949-08b4-4098-94f6-ade83b96db16" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023305Z:fa8d1949-08b4-4098-94f6-ade83b96db16" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A51F974131E747ABB85D7701DF842D76 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 17C11F27CDED46CD8DCC615F9373B952 Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:05Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "677" ], - "x-ms-client-request-id": [ "ddcd1edf-a868-4fb2-bf00-ea40d269d80b" ], + "x-ms-unique-id": [ "1052" ], + "x-ms-client-request-id": [ "ff79e8f9-ce40-4433-b602-c99f1600e83d" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -735,31 +735,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "816b62f6-0c3a-487e-b825-0d635001b5f3" ], + "x-ms-request-id": [ "4166342f-edb7-4353-adf0-30e42e44fa39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ce8fca44-a823-46c7-be1d-393e1441a8b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004602Z:ce8fca44-a823-46c7-be1d-393e1441a8b7" ], + "x-ms-correlation-request-id": [ "4f3e0f34-968b-48e2-9606-d71ce9d30f2e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023306Z:4f3e0f34-968b-48e2-9606-d71ce9d30f2e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E710C5F07EA470CA2A0D6E6F818C9B7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 82F7BA87507147238FB45CFC272DF4A3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:05Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1824" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+6": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 7,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP2\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -775,42 +775,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e98e7c01-d061-426b-900f-cd7159cac853" ], + "x-ms-request-id": [ "4d0f0af5-d7bd-4485-9a66-a7e4c7ae5e35" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0dbdd69b-c050-41a2-9d69-1240fb31e274" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e5c2704-c12f-476e-9d51-8159f9bd3d89" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "15f169b2-0d45-4038-a0c8-6ab0c8b56cdc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004603Z:15f169b2-0d45-4038-a0c8-6ab0c8b56cdc" ], + "x-ms-correlation-request-id": [ "bf0d0fe9-e363-42d3-bf01-0fc539f07bea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023308Z:bf0d0fe9-e363-42d3-bf01-0fc539f07bea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 370A714DE9A64103BD0C90EE652F27AD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:02Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:03 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07CB6322CBD24E17AE79B80895657388 Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:06Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1907" ], + "Content-Length": [ "1902" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "679" ], - "x-ms-client-request-id": [ "7cac1af0-fc87-4af7-afd2-9fdda86ab482" ], + "x-ms-unique-id": [ "1054" ], + "x-ms-client-request-id": [ "3432d2e8-44e3-46ef-9bd4-4ae31ff69f84" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -821,41 +821,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f124a4b0-0187-4f0b-8b1c-02993cdec6ce" ], + "x-ms-request-id": [ "0770ea92-122b-4c18-9e45-a28c8337042d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "cdbadcb2-55ae-4520-976d-d8d379d73e75" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004634Z:cdbadcb2-55ae-4520-976d-d8d379d73e75" ], + "x-ms-correlation-request-id": [ "0fc0ce0c-c4d7-447b-a760-bb1f3cf5dbb9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023338Z:0fc0ce0c-c4d7-447b-a760-bb1f3cf5dbb9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 16F01E24DDE34B10BA99B4DD649902E5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BB13E3A151D44D34A096B2FE4D14B491 Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+8": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "680" ], - "x-ms-client-request-id": [ "7cac1af0-fc87-4af7-afd2-9fdda86ab482" ], + "x-ms-unique-id": [ "1055" ], + "x-ms-client-request-id": [ "3432d2e8-44e3-46ef-9bd4-4ae31ff69f84" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -866,40 +866,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "037df80d-01c1-4639-a8c4-873083f1418c" ], + "x-ms-request-id": [ "40a22a8e-a0a4-47a0-9695-be8ceb0a76c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "58acfa29-58c8-4e74-9240-81fe52cf075e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004634Z:58acfa29-58c8-4e74-9240-81fe52cf075e" ], + "x-ms-correlation-request-id": [ "4a5e0889-ed23-480e-83d5-38f3555a813c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023339Z:4a5e0889-ed23-480e-83d5-38f3555a813c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3BC8FB18A5994CE69D4D58514233712A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1A57BC2DC2E4A9F879306A0946C91ED Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+9": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "681" ], - "x-ms-client-request-id": [ "80772101-9cc6-4af8-919f-02df1e745c45" ], + "x-ms-unique-id": [ "1056" ], + "x-ms-client-request-id": [ "3871b3d8-dd05-4e1e-975f-22bc55238d18" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -911,40 +911,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "442343e6-3be0-4d61-8d0f-7e4062f6a716" ], + "x-ms-request-id": [ "6b77446f-d021-4b0b-8361-bdb9b9bdc87b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "74a45a7c-db49-4582-aaec-926679656784" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004634Z:74a45a7c-db49-4582-aaec-926679656784" ], + "x-ms-correlation-request-id": [ "374a66c6-5997-4b35-83fc-c4203ebf33b4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023339Z:374a66c6-5997-4b35-83fc-c4203ebf33b4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6F5D971DDB24DD694D7C6C81C76BB16 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 01B91111F01F4414AB0BB96E8A535C20 Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1822" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115037,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115037\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:45:29.9266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123849,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":7,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123849\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:32:33.28\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+10": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+10": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "682" ], - "x-ms-client-request-id": [ "be2887f0-9389-43a1-b935-60ed38928c06" ], + "x-ms-unique-id": [ "1057" ], + "x-ms-client-request-id": [ "0ad574e5-6433-4901-8da0-aa623ca4e832" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -956,18 +956,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5bc22089-ef53-4334-8f48-68d01fcc79a3" ], + "x-ms-request-id": [ "7ea2e67d-af1e-41da-915d-a232230bbaeb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/871f7aa2-a8bf-4a4b-b7ef-6593170809c4" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a474735b-7adf-4b12-b9fa-c88d8a317763" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "b0539855-97e4-4613-ac45-72f66feb1b76" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004639Z:b0539855-97e4-4613-ac45-72f66feb1b76" ], + "x-ms-correlation-request-id": [ "e0bb84fb-02e4-4643-bcdc-a1a7e8024885" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023343Z:e0bb84fb-02e4-4643-bcdc-a1a7e8024885" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ABC94B3BA57D4AB59EB6FD13EC5AD87A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 459D2BCC44B0413A9AA9B3036FD61B5C Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:43 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -977,19 +977,19 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+11": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "683" ], - "x-ms-client-request-id": [ "c5cbb1ac-6db5-4ed6-8bf3-6c0a1f948d47" ], + "x-ms-unique-id": [ "1058" ], + "x-ms-client-request-id": [ "3ea981b8-a82f-4d08-9adf-33d697c0ca2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1001,37 +1001,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "e991e52b-b74c-4b09-9bdb-a6da95b86ed6" ], - "x-ms-correlation-request-id": [ "e991e52b-b74c-4b09-9bdb-a6da95b86ed6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004639Z:e991e52b-b74c-4b09-9bdb-a6da95b86ed6" ], + "x-ms-request-id": [ "04702d24-1e4d-4d9d-ac60-bb40973f4da0" ], + "x-ms-correlation-request-id": [ "04702d24-1e4d-4d9d-ac60-bb40973f4da0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023344Z:04702d24-1e4d-4d9d-ac60-bb40973f4da0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2988263B07F746BC8394E0C22DCA51B5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 62C4B36C3C2E4F54A7535F473DE4D979 Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-zdwf3g\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+12": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate New-AzFunctionAppPlan, Update-AzFunctionAppPlan and Remove-AzFunctionAppPlan with piping (specifying InputObject)+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "684" ], - "x-ms-client-request-id": [ "cb2f37b0-9335-4ac7-80c8-c1f900c7d9e3" ], + "x-ms-unique-id": [ "1059" ], + "x-ms-client-request-id": [ "56d91f26-ce5e-4cd4-af8c-a7d034950d87" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1043,21 +1043,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "dc664376-c7ad-45e9-9b05-6340c00f4cbe" ], - "x-ms-correlation-request-id": [ "dc664376-c7ad-45e9-9b05-6340c00f4cbe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004640Z:dc664376-c7ad-45e9-9b05-6340c00f4cbe" ], + "x-ms-request-id": [ "1e606069-5453-4694-be84-7f8339bcba73" ], + "x-ms-correlation-request-id": [ "1e606069-5453-4694-be84-7f8339bcba73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023344Z:1e606069-5453-4694-be84-7f8339bcba73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C46812F72B7F49E29E97597EB7D5858A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DDEE73A2271A4E70926E0EBA06CFBB6E Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-zdwf3g\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, @@ -1068,12 +1068,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "685" ], - "x-ms-client-request-id": [ "ae7407cb-2a28-4ca3-9723-ec2bad2d8ec9" ], + "x-ms-unique-id": [ "1060" ], + "x-ms-client-request-id": [ "3e281ab1-7419-4bfc-92dd-24c46bed03c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1085,18 +1085,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "940b58bc-e80d-4769-ac65-8ec326ba4f5e" ], + "x-ms-request-id": [ "6447fa33-3d92-436c-b3ee-6de1db7b0ce8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/680db81e-6195-43c9-a267-3fdcba3e41b7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/71f2561d-3de9-4fac-b2fa-9ff5b6e4061e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9fd84ca0-95a4-4d81-932e-13ebbaecea24" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004640Z:9fd84ca0-95a4-4d81-932e-13ebbaecea24" ], + "x-ms-correlation-request-id": [ "c69ab692-5786-4305-a6e3-3942b38b3bed" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T023344Z:c69ab692-5786-4305-a6e3-3942b38b3bed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7F369A747D34E759F13F3C1B96FFA8F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5CEB34782E04E4FA66709AD420F7CDC Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -1107,11 +1107,11 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+2": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", - "Content": "{\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag1\": \"MyTag1Value1\",\r\n \"MyTag2\": \"MyTag1Value2\"\r\n },\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", + "Content": "{\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"MyTag2\": \"MyTag1Value2\",\r\n \"MyTag1\": \"MyTag1Value1\"\r\n },\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -1125,44 +1125,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA033BDF6B" ], + "ETag": [ "1DCBE5B4D615CC0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a86e75f2-6c8d-407c-9e20-273912e9e12d" ], + "x-ms-request-id": [ "23a15892-dcc4-4e2a-803b-4a83a6a75642" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/89557a40-a690-4990-b414-ad112680bffa" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ae5c373e-5675-4d9d-99bd-8e0ff011ea8c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "33662609-44a1-4fc5-9282-8995fd394cf3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004642Z:33662609-44a1-4fc5-9282-8995fd394cf3" ], + "x-ms-correlation-request-id": [ "b3beaa09-a256-4917-a386-4bc60ea813d8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023347Z:b3beaa09-a256-4917-a386-4bc60ea813d8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FFDEA56711E64E2FB9E5903A8C6A3948 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:46:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:46:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F3EDCACEC7714F9C9CD564CD596F51AE Ref B: MWH011020809062 Ref C: 2026-03-28T02:33:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:33:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2015" ], + "Content-Length": [ "2009" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+3": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "687" ], - "x-ms-client-request-id": [ "e56af594-f89a-4507-8459-860f8fc775f0" ], + "x-ms-unique-id": [ "1062" ], + "x-ms-client-request-id": [ "836b1649-30fd-44e5-8f2a-e90e8de8f829" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1173,41 +1173,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ba96c602-20b2-4ae9-b89d-ab1e7b90a172" ], + "x-ms-request-id": [ "b9bbbcdb-d7b1-4543-95a0-0e79b3ce9e6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "13751dfa-8e49-41ae-9489-364fd560d218" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:13751dfa-8e49-41ae-9489-364fd560d218" ], + "x-ms-correlation-request-id": [ "db9ec740-6ecc-4b7b-a43a-402fabcde372" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023417Z:db9ec740-6ecc-4b7b-a43a-402fabcde372" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C62C3D39FFF41C3A7CE92875C882E3B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2A529575241544FFA83D0EC66A230CDC Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1926" ], + "Content-Length": [ "1920" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+4": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "688" ], - "x-ms-client-request-id": [ "e56af594-f89a-4507-8459-860f8fc775f0" ], + "x-ms-unique-id": [ "1063" ], + "x-ms-client-request-id": [ "836b1649-30fd-44e5-8f2a-e90e8de8f829" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1218,40 +1218,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "93f81795-fe2f-427a-a534-457b8d7cc544" ], + "x-ms-request-id": [ "44f32c1d-43c6-4f11-8ccf-9bc806c3e4c0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "518acde5-8842-498c-8948-3e3c0748405b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:518acde5-8842-498c-8948-3e3c0748405b" ], + "x-ms-correlation-request-id": [ "af16ed1f-bbd9-46eb-8084-df0853408cd7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023418Z:af16ed1f-bbd9-46eb-8084-df0853408cd7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EA2672EF675E46E0B8FDA26927135A29 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5870DDA481AF40D8B65B26C6715D9626 Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:17Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:17 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1926" ], + "Content-Length": [ "1920" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+5": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "689" ], - "x-ms-client-request-id": [ "e5b098f1-6a45-461d-b1e1-89e981df9f92" ], + "x-ms-unique-id": [ "1064" ], + "x-ms-client-request-id": [ "490e0bd9-bf0b-46f6-839f-9a8c9d2f3a23" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1263,40 +1263,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e301241-2caf-4bd6-9e3f-229d0d230e6d" ], + "x-ms-request-id": [ "847c71ee-d927-4847-8e9e-074fd231cb0b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "01c7ee12-fc15-42fd-8338-71e4bc88642d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:01c7ee12-fc15-42fd-8338-71e4bc88642d" ], + "x-ms-correlation-request-id": [ "5f107029-cfb4-4c9d-906e-f046ccb80c66" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023421Z:5f107029-cfb4-4c9d-906e-f046ccb80c66" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F58F79B40BE4D6391F07F54AE30A59C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8A81A7FF8D6438CBB3635EDB6B65AEC Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1926" ], + "Content-Length": [ "1920" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+6": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "690" ], - "x-ms-client-request-id": [ "a78fd997-4f2d-4c9e-a8cb-bd09b7e14c04" ], + "x-ms-unique-id": [ "1065" ], + "x-ms-client-request-id": [ "dc697b59-8a8a-4ec7-a651-268d33c6c671" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1308,31 +1308,31 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "135507ba-22e5-47a1-8f29-429eeee68bb5" ], + "x-ms-request-id": [ "82b46cab-c428-4a13-a152-0995cf039ef7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2826431c-4b78-4ae5-8f59-0e5a5d1c52d6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004713Z:2826431c-4b78-4ae5-8f59-0e5a5d1c52d6" ], + "x-ms-correlation-request-id": [ "7a969b1a-cef4-4737-94b6-f02c11d31593" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023421Z:7a969b1a-cef4-4737-94b6-f02c11d31593" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F61C07102CE74CD490E2769AACD62AF6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5AFA8D0FAC843BA90D9A5E6F1C036F5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:21 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1926" ], + "Content-Length": [ "1920" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+7": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+7": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP2\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -1348,42 +1348,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ad1a964e-41a0-49d3-b1e4-21215979bc2d" ], + "x-ms-request-id": [ "6c78f8a7-cbbd-48d3-9c6e-a3e7432f0964" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/df7e58ba-e49c-471f-8ca3-7438af114e13" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8dd6a075-210a-4f85-b407-ff6b6701488c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8eac33f5-d70e-4728-b28d-1baa6aab3873" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004715Z:8eac33f5-d70e-4728-b28d-1baa6aab3873" ], + "x-ms-correlation-request-id": [ "e8738cca-baee-40af-a277-b7953c5d19ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023423Z:e8738cca-baee-40af-a277-b7953c5d19ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 53DDEA29106A4E65998B43F3DDF8DF9B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72F537628358436495EFF4B720488C60 Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:23 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2009" ], + "Content-Length": [ "2003" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+8": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "692" ], - "x-ms-client-request-id": [ "36771d7b-6bfc-4d74-8c51-6988156aaacc" ], + "x-ms-unique-id": [ "1067" ], + "x-ms-client-request-id": [ "b987ed27-ae2c-443d-8a65-fbbed9852dd1" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1394,41 +1394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c68474ae-79dd-42a5-84ac-50907eae1d8c" ], + "x-ms-request-id": [ "f01bf621-0667-4638-88ea-ba019b8aa7c1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "33c5ed0b-ecc6-4be0-8436-fd891ab33665" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004746Z:33c5ed0b-ecc6-4be0-8436-fd891ab33665" ], + "x-ms-correlation-request-id": [ "d98e8449-ff5f-49ee-868f-ee98a3e933f8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023454Z:d98e8449-ff5f-49ee-868f-ee98a3e933f8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2C65688CB2A94738A84285B8A1862AC8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC981D3071FE4ECABADD5FCD9469CA4A Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1924" ], + "Content-Length": [ "1918" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+9": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "693" ], - "x-ms-client-request-id": [ "36771d7b-6bfc-4d74-8c51-6988156aaacc" ], + "x-ms-unique-id": [ "1068" ], + "x-ms-client-request-id": [ "b987ed27-ae2c-443d-8a65-fbbed9852dd1" ], "CommandName": [ "Az.Functions.internal\\Set-AzFunctionAppPlan" ], "FullCommandName": [ "Set-AzFunctionAppPlan_Update" ], "ParameterSetName": [ "" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -1439,40 +1439,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1c01bccb-30e0-41f7-ab15-a41fc9a7f9d8" ], + "x-ms-request-id": [ "af5e3f11-02a4-42e2-8fe4-b0f5fb54f595" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9afc3acb-970f-4c04-ac5c-6dfb8e35d50a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004746Z:9afc3acb-970f-4c04-ac5c-6dfb8e35d50a" ], + "x-ms-correlation-request-id": [ "bf232633-7386-4d93-9126-52407970239a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023455Z:bf232633-7386-4d93-9126-52407970239a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AAB4C96E0AED41F1A85F7BE321970AAF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 091C0CCBEBDB4B4089A8DF68EA8CD583 Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1924" ], + "Content-Length": [ "1918" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+10": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "694" ], - "x-ms-client-request-id": [ "5e3a35dd-e825-4fc5-a0d2-6a46a14457ce" ], + "x-ms-unique-id": [ "1069" ], + "x-ms-client-request-id": [ "06387069-9b4c-42a9-a810-fdc8692f1635" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1484,40 +1484,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4347fe90-c483-4897-9626-16aa7e4abf63" ], + "x-ms-request-id": [ "edfbfe4f-9c22-4b71-8d66-65ab275ea0e0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "06a88881-16c4-4e84-bf97-046d0ed5351c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004747Z:06a88881-16c4-4e84-bf97-046d0ed5351c" ], + "x-ms-correlation-request-id": [ "fa012e76-c475-4c39-9b0c-1df4d726779a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023457Z:fa012e76-c475-4c39-9b0c-1df4d726779a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F99AF7990FFC4E70AD19304D3DA85235 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 775E2E16A5B1482A816E95BA57007530 Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:34:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1924" ], + "Content-Length": [ "1918" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6\",\"name\":\"Func-Windows-Premium-New-i9enm6\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"properties\":{\"serverFarmId\":115038,\"name\":\"Func-Windows-Premium-New-i9enm6\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag1\":\"MyTag1Value1\",\"MyTag2\":\"MyTag1Value2\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115038\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:46:41.2866667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g\",\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"properties\":{\"serverFarmId\":123850,\"name\":\"Func-Windows-Premium-New-zdwf3g\",\"workerSize\":\"D2\",\"workerSizeId\":4,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D2\",\"currentWorkerSizeId\":4,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":{\"MyTag2\":\"MyTag1Value2\",\"MyTag1\":\"MyTag1Value1\"},\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123850\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":\"\",\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:33:45.5\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP2\",\"tier\":\"ElasticPremium\",\"size\":\"EP2\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+11": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+11": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "695" ], - "x-ms-client-request-id": [ "df255a0b-a03f-4e6f-9284-5e03f3433ddb" ], + "x-ms-unique-id": [ "1070" ], + "x-ms-client-request-id": [ "97450d5f-4a0c-4cd4-ad34-d48c0207f447" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1529,18 +1529,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e417f103-f871-462c-967d-fb1ff175ca69" ], + "x-ms-request-id": [ "e32ebfe6-b1ac-4aef-a570-347bfdd7a57e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/db10ba08-178a-418d-afae-d254ba11bdeb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6643473b-0fbf-448d-b5a8-6f7e69ec9e83" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "6f4e6d4e-e60d-410e-8c87-da8ecb5d720c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004753Z:6f4e6d4e-e60d-410e-8c87-da8ecb5d720c" ], + "x-ms-correlation-request-id": [ "c427620f-18bf-4a30-a7e1-32e63fccdadd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023504Z:c427620f-18bf-4a30-a7e1-32e63fccdadd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7A6AD55734DD4BB8AD0AC9AA9ED882CE Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A5691655732F446D9C76AC8490E336CC Ref B: MWH011020809062 Ref C: 2026-03-28T02:34:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:04 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1550,19 +1550,19 @@ "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+12": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "696" ], - "x-ms-client-request-id": [ "131b2c53-1a1b-488b-ba03-1bcc3e16a5a1" ], + "x-ms-unique-id": [ "1071" ], + "x-ms-client-request-id": [ "01c7c169-3186-46da-bb76-bb17026d9156" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1574,37 +1574,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "f81b74f3-9faf-45c4-a280-875127af249f" ], - "x-ms-correlation-request-id": [ "f81b74f3-9faf-45c4-a280-875127af249f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004753Z:f81b74f3-9faf-45c4-a280-875127af249f" ], + "x-ms-request-id": [ "6d9d0b43-cb9b-484d-84c7-6f80eb5dccc2" ], + "x-ms-correlation-request-id": [ "6d9d0b43-cb9b-484d-84c7-6f80eb5dccc2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023504Z:6d9d0b43-cb9b-484d-84c7-6f80eb5dccc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 48B0AE874F084A8D8F1253E91D4360A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A24FEE33AEB4C33893E9A755B1789F2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:04Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-zdwf3g\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01+13": { + "New-AzFunctionAppPlan, Update-AzFunctionAppPlan, and Remove-AzFunctionAppPlan E2E+[NoContext]+Validate \u0027New-AzFunctionAppPlan -AsJob\u0027, \u0027Update-AzFunctionAppPlan -AsJob\u0027 and \u0027Remove-AzFunctionAppPlan -Force\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-i9enm6?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Func-Windows-Premium-New-zdwf3g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "697" ], - "x-ms-client-request-id": [ "6ab5a1b1-a81a-47f1-bed7-cfa1b2f9d900" ], + "x-ms-unique-id": [ "1072" ], + "x-ms-client-request-id": [ "b49033e9-ffb2-4e97-9b7b-612521277930" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1616,21 +1616,21 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "119b4664-e497-43be-a05e-d5aaf191c693" ], - "x-ms-correlation-request-id": [ "119b4664-e497-43be-a05e-d5aaf191c693" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004753Z:119b4664-e497-43be-a05e-d5aaf191c693" ], + "x-ms-request-id": [ "fab52b6e-0fe6-4610-89e2-44e9bf569857" ], + "x-ms-correlation-request-id": [ "fab52b6e-0fe6-4610-89e2-44e9bf569857" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023504Z:fab52b6e-0fe6-4610-89e2-44e9bf569857" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A127E9DE24043009FFD4EDE836DD38F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5F4F567004ED421886DE9D7B596F625C Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:04Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "266" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-i9enm6\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/serverFarms/Func-Windows-Premium-New-zdwf3g\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json index 1e1b1bf0be02..581bc3142844 100644 --- a/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Remove-AzFunctionApp.Recording.json @@ -6,12 +6,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "698" ], - "x-ms-client-request-id": [ "c82f5f74-73af-4aeb-a3ed-3ac58347aaf9" ], + "x-ms-unique-id": [ "1073" ], + "x-ms-client-request-id": [ "30978842-5e15-4eb0-a93c-6ea03de1e08c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppAvailableLocation" ], "FullCommandName": [ "Get-AzFunctionAppAvailableLocation_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7cbc2f2e-a1e9-439f-ac56-6b15deeaadbb" ], + "x-ms-request-id": [ "c9944306-0a17-4339-ae61-94ec7386e843" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/9e08aa71-3890-43f8-8ebc-562371718aa6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/f84082ef-f50a-4d47-9a98-185c2b57cb50" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "90cd174c-db25-4364-9ced-8934d66b2218" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004753Z:90cd174c-db25-4364-9ced-8934d66b2218" ], + "x-ms-correlation-request-id": [ "d4d6b697-90d0-4dc0-b56d-5cad76e0a563" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T023505Z:d4d6b697-90d0-4dc0-b56d-5cad76e0a563" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B47CB8DA31EE48C2A9E1C9DAF2531CE3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 496E68CDA5A0464C84057B1D0906EADF Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:05Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "38055" ], @@ -45,10 +45,10 @@ "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+2": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": "{\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"maximumElasticWorkerCount\": 3,\r\n \"reserved\": false\r\n },\r\n \"sku\": {\r\n \"name\": \"EP1\",\r\n \"tier\": \"ElasticPremium\",\r\n \"capacity\": 1\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -63,44 +63,44 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA2F610A60" ], + "ETag": [ "1DCBE5B7DC5F920" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b1b99b4e-3821-4a05-8548-6a082ee420f4" ], + "x-ms-request-id": [ "875ef7f9-14c5-45c4-9092-af9f2c00ce69" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/83fcc397-2a81-4127-9128-598d32ac422e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7e42657c-8fc6-4fa3-a303-cda71bce52d3" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "b06d7da3-e3ba-4e41-9687-1d9bec5dc922" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004757Z:b06d7da3-e3ba-4e41-9687-1d9bec5dc922" ], + "x-ms-correlation-request-id": [ "8531eb56-14ef-41d9-b4f1-566693251fcc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023508Z:8531eb56-14ef-41d9-b4f1-566693251fcc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E106CE1936A34B29BA86910A4D2DE4AA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:47:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:47:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B7C2BCB1D3741ACA3FD2A52EF8FC927 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:05Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:08 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1910" ], + "Content-Length": [ "1911" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"centralus\",\"properties\":{\"serverFarmId\":123852,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1},\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123852\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"2026-03-28T02:35:06.61\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+3": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "700" ], - "x-ms-client-request-id": [ "c956f8b5-ca45-46f2-bb1c-b38826030a6f" ], + "x-ms-unique-id": [ "1075" ], + "x-ms-client-request-id": [ "24275992-8f37-4738-8f8b-12d632e49337" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -111,41 +111,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5db509cc-3b16-4c6c-87f6-e467f7794a42" ], + "x-ms-request-id": [ "fd51e126-8a66-449f-9d95-78c8d11b9e2e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "632a9c2a-9752-4fdf-9c45-e46c0b29a792" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004827Z:632a9c2a-9752-4fdf-9c45-e46c0b29a792" ], + "x-ms-correlation-request-id": [ "422bad6c-cf7a-4004-8041-5d7130071d9c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023539Z:422bad6c-cf7a-4004-8041-5d7130071d9c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00F46F69AE8B488FB2DF0887CBF2FFDC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4FD9F99004B4AED81837CAEE8A79C51 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:38 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123852,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123852\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:35:06.61\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+4": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "701" ], - "x-ms-client-request-id": [ "c956f8b5-ca45-46f2-bb1c-b38826030a6f" ], + "x-ms-unique-id": [ "1076" ], + "x-ms-client-request-id": [ "24275992-8f37-4738-8f8b-12d632e49337" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionAppPlan" ], "FullCommandName": [ "New-AzFunctionAppPlan_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -156,24 +156,24 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e8e624c-7778-4b51-aeaf-1240f9dc9b20" ], + "x-ms-request-id": [ "143eb729-275e-4ace-9941-e6bda82dbe44" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aa7b78f0-7e1a-495f-8109-848b70cf0132" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004828Z:aa7b78f0-7e1a-495f-8109-848b70cf0132" ], + "x-ms-correlation-request-id": [ "0acabe3d-227c-4518-90ec-43bc50b38999" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023539Z:0acabe3d-227c-4518-90ec-43bc50b38999" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 639FF594C4B049449566BA32A4A9FD91 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1FFE2C81CEE45C5839106AE5C0AD690 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123852,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123852\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:35:06.61\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, @@ -181,7 +181,7 @@ "Request": { "Method": "POST", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Web/checknameavailability?api-version=2023-12-01", - "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"type\": \"Site\"\r\n}", + "Content": "{\r\n \"name\": \"Func-PowerShell-NewTest4-dx36e52rpl\",\r\n \"type\": \"Site\"\r\n}", "isContentBase64": false, "Headers": { }, @@ -196,18 +196,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2602b58e-908a-486e-8e54-a1fb6e7767bf" ], + "x-ms-request-id": [ "8c926d1b-2998-4c5d-aea0-c16e50359192" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/c438d9b9-2a3b-47cd-b3c9-ee7bad82985e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/westus2/d18a05dc-821d-430a-b289-6b70d2a33c90" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "92f831aa-2a46-4c8c-8abd-a06830734938" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004828Z:92f831aa-2a46-4c8c-8abd-a06830734938" ], + "x-ms-correlation-request-id": [ "defd7681-b863-4e7c-9977-d27c171da247" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T023540Z:defd7681-b863-4e7c-9977-d27c171da247" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F528ABD8A36B488EB304823E8E838454 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0EB9F165326470C8D81BA1624CDC2E8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "47" ], @@ -225,12 +225,12 @@ "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "703" ], - "x-ms-client-request-id": [ "484ed214-1259-4733-9427-093ea1073a45" ], + "x-ms-unique-id": [ "1078" ], + "x-ms-client-request-id": [ "649e3d87-c4eb-4672-9232-a13f141e2599" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -241,40 +241,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "d2d0f8bc-8ee0-46ff-acdd-ac884bb4b902", "2bed07f5-872d-47b6-837f-3bcec640c8d5" ], + "x-ms-original-request-ids": [ "246e7d41-0a8b-4a68-9236-396c4d416fb2", "9f04332b-1584-4b13-b729-f46a0da37818" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "1c9dc1ae-0359-4fd4-9596-0fd6587acf7e" ], - "x-ms-correlation-request-id": [ "1c9dc1ae-0359-4fd4-9596-0fd6587acf7e" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004829Z:1c9dc1ae-0359-4fd4-9596-0fd6587acf7e" ], + "x-ms-request-id": [ "e1735356-dad7-4029-9fa2-af2e5304d327" ], + "x-ms-correlation-request-id": [ "e1735356-dad7-4029-9fa2-af2e5304d327" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T023540Z:e1735356-dad7-4029-9fa2-af2e5304d327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 685C0D9C179D41ABB89AF14BE97DB4D3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8EB3D67BE6CC42868C0A6805D3C3A2D3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "17263" ], + "Content-Length": [ "18895" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046098,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046096,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046140,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046161,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046136,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046151,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046081,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046240,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7046078,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1620768,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055838,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055836,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055965,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055950,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055876,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055944,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055821,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055997,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":7055818,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624841,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}},{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":1624862,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":null,\"currentWorkerSizeId\":null,\"currentNumberOfWorkers\":null,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":null,\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":null,\"elasticScaleEnabled\":null,\"maximumElasticWorkerCount\":null,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":null,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":null,\"isXenon\":null,\"hyperV\":null,\"mdmId\":null,\"targetWorkerCount\":null,\"targetWorkerSizeId\":null,\"targetWorkerSku\":null,\"provisioningState\":null,\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":null,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":null,\"vnetConnectionsMax\":null,\"createdTime\":\"0001-01-01T00:00:00\",\"asyncScalingEnabled\":null,\"isCustomMode\":null,\"powerState\":null,\"eligibleLogCategories\":null},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "704" ], - "x-ms-client-request-id": [ "e814fb50-efcb-4964-8697-ac11acc303df" ], + "x-ms-unique-id": [ "1079" ], + "x-ms-client-request-id": [ "2f5e529d-9641-456a-a106-782cd772cce0" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -286,40 +286,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "37a72134-7ac5-4a31-bc2e-707fb97bec57" ], + "x-ms-request-id": [ "9c47d5af-2449-4e9e-a78a-6d9da75fd0b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1039390a-a073-4695-b74a-535119cb9724" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:1039390a-a073-4695-b74a-535119cb9724" ], + "x-ms-correlation-request-id": [ "2165e2af-1329-450b-8b36-02216cece3d5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023541Z:2165e2af-1329-450b-8b36-02216cece3d5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 642435478B734E1EB4C8C7522D799D59 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D45C29C505D943AFB93310AC242E21CA Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1819" ], + "Content-Length": [ "1817" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":134773,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-157_134773\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:06:26.1533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"name\":\"CentralUSLinuxDynamicPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":74418,\"name\":\"CentralUSLinuxDynamicPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-081_74418\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:23:35.5366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "705" ], - "x-ms-client-request-id": [ "7e7d15d2-e617-4e40-84b2-490701851887" ], + "x-ms-unique-id": [ "1080" ], + "x-ms-client-request-id": [ "0e689e2b-6083-4ea3-8f45-795d63203d34" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -331,40 +331,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f2d9d68a-7d0e-4f06-bd18-850f1294843a" ], + "x-ms-request-id": [ "48092570-480b-4dd4-898f-2dc3fb87f86b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "949e62b0-1a8d-475c-8e79-06a82e0ad388" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:949e62b0-1a8d-475c-8e79-06a82e0ad388" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "9591df91-cb93-4cc3-8a29-3e6814985d9c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023541Z:9591df91-cb93-4cc3-8a29-3e6814985d9c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C2EAF7493B049579A444BEF92487F37 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C5FB28CC6F254A20BE5F9C20B6FB1DEF Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1782" ], + "Content-Length": [ "1784" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96234,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96234\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:05:00.9533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"name\":\"CentralUSPlan\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139022,\"name\":\"CentralUSPlan\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139022\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:22:10.4566667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"Y1\",\"tier\":\"Dynamic\",\"size\":\"Y1\",\"family\":\"Y\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01+9": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01+9": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "706" ], - "x-ms-client-request-id": [ "668ea38c-6c0d-49b6-9d71-1a2044c45be7" ], + "x-ms-unique-id": [ "1081" ], + "x-ms-client-request-id": [ "1c49d4e8-7f76-4572-be3b-7dabde4a2bf4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -376,40 +376,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "71c2eb33-4c1a-4a83-a6f2-17d186bee9a4" ], + "x-ms-request-id": [ "dd3b9444-f209-4d37-a41e-b855f3713d32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "015ff9bf-567f-49ea-80fa-3a7db0660a05" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:015ff9bf-567f-49ea-80fa-3a7db0660a05" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "1c0a298f-49ed-4538-b019-530ceb92b099" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023541Z:1c0a298f-49ed-4538-b019-530ceb92b099" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32133D76F4C84487AA2FD3E1C311E23B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0A525134B65B482695640637649F7560 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1740" ], + "Content-Length": [ "1747" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Default1at\",\"name\":\"Default1at\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":98319,\"name\":\"Default1at\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-309_98319\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:25:45.6033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/Default1ha\",\"name\":\"Default1ha\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":91524,\"name\":\"Default1ha\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-247_91524\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:21:17.38\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01+10": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "707" ], - "x-ms-client-request-id": [ "6351b652-f837-4479-8a67-eada81a1ba98" ], + "x-ms-unique-id": [ "1082" ], + "x-ms-client-request-id": [ "90b5d7a1-1fb4-4341-bbd2-e6a9704bb689" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -421,40 +421,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "85775fa2-4967-4b4f-a1d2-b63f32670617" ], + "x-ms-request-id": [ "6509af93-68e1-4f67-b33a-ff1e0c46cf14" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7be6aa05-2526-4d0d-a706-33e366ca61e6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:7be6aa05-2526-4d0d-a706-33e366ca61e6" ], + "x-ms-correlation-request-id": [ "e0b84420-6fca-41fd-9209-afd0327a0db4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023541Z:e0b84420-6fca-41fd-9209-afd0327a0db4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B28D2FB6DE641CA90FA1F9E42F41332 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B38C936458664172B394B3C0FC3A3495 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1754" ], + "Content-Length": [ "1755" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/Default1gx\",\"name\":\"Default1gx\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":104689,\"name\":\"Default1gx\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":3,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-297_104689\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:34:19.6666667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/Default1iv\",\"name\":\"Default1iv\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139027,\"name\":\"Default1iv\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-039_139027\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:15:02.11\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01+11": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01+11": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "708" ], - "x-ms-client-request-id": [ "88d78a8a-8c5b-4fdf-874e-25c471d18051" ], + "x-ms-unique-id": [ "1083" ], + "x-ms-client-request-id": [ "7fe846d6-b366-46bf-91e0-2d580174a4ba" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -466,40 +466,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3db4cedf-e3df-4d1e-ad8f-fe0b7358d54f" ], + "x-ms-request-id": [ "1ce0527a-346d-4b10-9542-b3bfd0c228eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f9be34c2-c398-4281-bc09-14ee31bbe5d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004830Z:f9be34c2-c398-4281-bc09-14ee31bbe5d7" ], + "x-ms-correlation-request-id": [ "d1607600-24b6-402a-a6e5-f6bb3e020a6e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023541Z:d1607600-24b6-402a-a6e5-f6bb3e020a6e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B556C29B38AC431CA0541F1D04F45ABA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 67C2DFC631F341A6A2081A8CCB40BAE1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1743" ], + "Content-Length": [ "1748" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Default1qb\",\"name\":\"Default1qb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115029,\"name\":\"Default1qb\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":7,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115029\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:24:19.01\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Default1vh\",\"name\":\"Default1vh\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123839,\"name\":\"Default1vh\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":7,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123839\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:42:38.7366667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01+12": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "709" ], - "x-ms-client-request-id": [ "0a40ec88-0612-4fea-81ff-76ab91cf45ec" ], + "x-ms-unique-id": [ "1084" ], + "x-ms-client-request-id": [ "00cae88a-2526-4c4e-b900-dc5ed5383ee4" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -511,40 +511,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e9260728-d6e6-4c6a-bf93-646323cb5be3" ], + "x-ms-request-id": [ "201ab0ae-0c4c-4480-9a7a-69952070438d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9ec121f1-90e7-4c75-9b86-9a7b56f644ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:9ec121f1-90e7-4c75-9b86-9a7b56f644ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "cac5b7de-8dd0-4ade-bf18-752d493a0c21" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023541Z:cac5b7de-8dd0-4ade-bf18-752d493a0c21" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2246F36338324B13B9430DEB9F42B79C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 80FB074BD2E74949A89A66B9F18A1FF0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1753" ], + "Content-Length": [ "1742" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/Default1yw\",\"name\":\"Default1yw\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":96240,\"name\":\"Default1yw\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-259_96240\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:29:09.47\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Default1zq\",\"name\":\"Default1zq\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":108969,\"name\":\"Default1zq\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":2,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-215_108969\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:12:09.0933333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01+13": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01+13": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "710" ], - "x-ms-client-request-id": [ "0062a939-7d22-4bd0-b8b5-602627c999b5" ], + "x-ms-unique-id": [ "1085" ], + "x-ms-client-request-id": [ "fca4ebbf-a120-4f98-a448-dff021850f30" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -556,40 +556,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ea1a69ce-4fd8-44c2-86be-ad80ac604732" ], + "x-ms-request-id": [ "5624f05c-df36-46b8-8dd2-16abfdc33b94" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9b76d0bb-a16a-47ca-9889-5b3daa026ffa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:9b76d0bb-a16a-47ca-9889-5b3daa026ffa" ], + "x-ms-correlation-request-id": [ "8a5fcdfe-1ecd-4cba-b650-8ae568d18f6b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023541Z:8a5fcdfe-1ecd-4cba-b650-8ae568d18f6b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D7FA28BE11944BAB7AB6E0127507B99 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 47E1938347764C7289F6319310EE1215 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1819" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"name\":\"Functions-Linux-Premium-sjhkza\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":139090,\"name\":\"Functions-Linux-Premium-sjhkza\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-171_139090\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:46.3533333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"name\":\"Functions-Linux-Premium-n36iqr\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":54089,\"name\":\"Functions-Linux-Premium-n36iqr\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-135_54089\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:19:04.0766667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+14": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "711" ], - "x-ms-client-request-id": [ "d23c17a0-b7e7-4396-881f-9c2fa1a21529" ], + "x-ms-unique-id": [ "1086" ], + "x-ms-client-request-id": [ "72b93268-f42e-494d-b590-729e9fc22ff2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -601,40 +601,85 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4636a200-5cf4-467d-8008-aa73ab13d14c" ], + "x-ms-request-id": [ "b5ca9dc9-398d-4efa-979a-b7e82ad955c1" ], + "X-AspNet-Version": [ "4.0.30319" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "5b90d315-21d7-4b3f-8a2b-2bc89eec9e81" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023542Z:5b90d315-21d7-4b3f-8a2b-2bc89eec9e81" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5F0C993579034E809C8B1B418A5D6CF8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1822" ], + "Content-Type": [ "application/json" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123852,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123852\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:35:06.61\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "isContentBase64": false + } + }, + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01+15": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg?api-version=2023-12-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "1087" ], + "x-ms-client-request-id": [ "9accbebf-97ab-422c-9979-14d1426e3acd" ], + "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], + "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "2f3e53c9-4c78-4029-8ccb-9edd528be09f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4a4d822d-cf73-4c37-b34d-cbd8ff37c69f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:4a4d822d-cf73-4c37-b34d-cbd8ff37c69f" ], + "x-ms-correlation-request-id": [ "05afc39a-5ab5-4a3e-8148-c9fe1693797a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023542Z:05afc39a-5ab5-4a3e-8148-c9fe1693797a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BC6A287786764C289327446A1AA287F7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44F73E834F42445EACB15137F3EA7DFE Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:41 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1823" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"name\":\"Functions-Windows-Premium-iqzomg\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123837,\"name\":\"Functions-Windows-Premium-iqzomg\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123837\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:18:26.77\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01+15": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01+16": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "712" ], - "x-ms-client-request-id": [ "83341b85-f21f-46a2-8583-cbd4dc59ce75" ], + "x-ms-unique-id": [ "1088" ], + "x-ms-client-request-id": [ "afe1ae11-c97c-42c8-9c5c-11b9a178b413" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -646,40 +691,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2c2d6df7-7279-435b-8e5f-d1b791f2de2d" ], + "x-ms-request-id": [ "f7bd7c62-926e-400a-94a0-e7256af7a2fc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "3427c3ab-23f2-4951-ac15-b2b00f893b61" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004831Z:3427c3ab-23f2-4951-ac15-b2b00f893b61" ], + "x-ms-correlation-request-id": [ "7291a7b1-6554-41a0-9e67-e35b5fa8ee84" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T023542Z:7291a7b1-6554-41a0-9e67-e35b5fa8ee84" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C97626FBEB7040B99D7A5DEABF6A9137 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 823D2B1FF412431387D4C72FA036087D Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1828" ], + "Content-Length": [ "1816" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"name\":\"Functions-Windows-Premium-iklz1o\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115018,\"name\":\"Functions-Windows-Premium-iklz1o\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":10,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115018\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:01:09.6466667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRG3wro-4f39\",\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77750,\"name\":\"ASP-FunctionsFlexRG3wro-4f39\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-f538b384981ed3310fae0a3f709f1ab6a8c1a85e3c7dae63db64209c5dc2ce8a-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77750\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:28:47.1033333\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01+16": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "713" ], - "x-ms-client-request-id": [ "c8cde0f4-8b9d-439b-bce5-d12189495088" ], + "x-ms-unique-id": [ "1089" ], + "x-ms-client-request-id": [ "aabb469f-d006-4df5-a1e3-8ea6aedd7bd6" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -691,40 +736,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fb735a25-28b7-43ff-ac94-7d36ddfe36f9" ], + "x-ms-request-id": [ "1dfa36a8-9c45-464c-a211-952f01e6e635" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f35efad5-b0e4-445e-9d3b-05c071f07c1b" ], - "x-ms-routing-request-id": [ "EASTASIA:20260326T004831Z:f35efad5-b0e4-445e-9d3b-05c071f07c1b" ], + "x-ms-correlation-request-id": [ "a8ac729e-bdee-41ab-be69-08f390b46c28" ], + "x-ms-routing-request-id": [ "EASTASIA:20260328T023542Z:a8ac729e-bdee-41ab-be69-08f390b46c28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 78F835B6D9AC4B6DB4556FC9F3387013 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 242D060585874BEDAE8AB5D674A39264 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1811" ], + "Content-Length": [ "1697" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Web/serverfarms/ASP-FunctionsFlexRGa50y-829b\",\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"functionapp\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":77455,\"name\":\"ASP-FunctionsFlexRGa50y-829b\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"flex-e083ab501b48a02b09f822e31431d4aaecbd6d98dd41c81dbc22bb4607f49b18-webspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":0,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dynamic\",\"siteMode\":null,\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"functionapp\",\"resourceGroup\":\"Functions-Flex-RG-a50y\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-055_77455\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":3,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:10:39.59\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"FC1\",\"tier\":\"FlexConsumption\",\"size\":\"FC1\",\"family\":\"FC\",\"capacity\":0}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Web/serverfarms/Default1vm\",\"name\":\"Default1vm\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"app\",\"location\":\"East Asia\",\"properties\":{\"serverFarmId\":9206,\"name\":\"Default1vm\",\"workerSize\":\"Small\",\"workerSizeId\":0,\"workerTierName\":null,\"numberOfWorkers\":0,\"currentWorkerSize\":\"Small\",\"currentWorkerSizeId\":0,\"currentNumberOfWorkers\":0,\"status\":\"Ready\",\"webSpace\":\"Functions-Flex-RG-3wro-EastAsiawebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":1,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Shared\",\"siteMode\":\"Limited\",\"geoRegion\":\"East Asia\",\"perSiteScaling\":false,\"elasticScaleEnabled\":false,\"maximumElasticWorkerCount\":1,\"numberOfSites\":12,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"app\",\"resourceGroup\":\"Functions-Flex-RG-3wro\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-hk1-087_9206\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":2,\"currentNumberOfZonesUtilized\":0,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T01:44:35.7266667\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"F1\",\"tier\":\"Free\",\"size\":\"F1\",\"family\":\"F\",\"capacity\":0}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+17": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01+18": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "714" ], - "x-ms-client-request-id": [ "b194dddb-b92f-44e7-ba00-843428bdb2ff" ], + "x-ms-unique-id": [ "1090" ], + "x-ms-client-request-id": [ "295a6801-b0c5-4a0a-86fd-426552771737" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccount" ], "FullCommandName": [ "Get-AzStorageAccount_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -735,40 +780,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "636d99a1-911a-4422-b2a8-5c848d231e9e", "14011ea2-88e6-4016-a614-a36f25b7e2e4", "f2ea0b5d-3792-4cec-a283-f0fcbc975b74" ], + "x-ms-original-request-ids": [ "96307d10-ba43-4309-a063-81fa1fff68f4", "7e62046f-5e4b-412a-950c-9d71ecf3c625", "5523456b-2711-4d19-a2fc-6f9c29056346" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "d27d7f8f-1cae-4960-b127-fd6037e7b44e" ], - "x-ms-correlation-request-id": [ "d27d7f8f-1cae-4960-b127-fd6037e7b44e" ], - "x-ms-routing-request-id": [ "WESTUS2:20260326T004832Z:d27d7f8f-1cae-4960-b127-fd6037e7b44e" ], + "x-ms-request-id": [ "b9cb2c1d-7d49-4cb5-954e-0255d8c58f8c" ], + "x-ms-correlation-request-id": [ "b9cb2c1d-7d49-4cb5-954e-0255d8c58f8c" ], + "x-ms-routing-request-id": [ "WESTUS2:20260328T023543Z:b9cb2c1d-7d49-4cb5-954e-0255d8c58f8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 685304E0E465435984BD9B873AFC181A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C07E1179F3F84A9D9DB212152C845807 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "12363" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappcustomsaa50y\",\"name\":\"flexappcustomsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:10:10.1103687Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:10:10.0090283Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsaa50y.queue.core.windows.net/\",\"table\":\"https://flexappcustomsaa50y.table.core.windows.net/\",\"file\":\"https://flexappcustomsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsaa\",\"name\":\"flexappdotnetisolatedsaa\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:57.3087386Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:57.2052541Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsaa.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsaa.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsaa.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsaa.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsaa.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsaa.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappjavasaa50y\",\"name\":\"flexappjavasaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:49.9602607Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:49.8456168Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappjavasaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappjavasaa50y.queue.core.windows.net/\",\"table\":\"https://flexappjavasaa50y.table.core.windows.net/\",\"file\":\"https://flexappjavasaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexappnodesaa50y\",\"name\":\"flexappnodesaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:08:24.9125248Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:08:24.8100125Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesaa50y.dfs.core.windows.net/\",\"web\":\"https://flexappnodesaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesaa50y.blob.core.windows.net/\",\"queue\":\"https://flexappnodesaa50y.queue.core.windows.net/\",\"table\":\"https://flexappnodesaa50y.table.core.windows.net/\",\"file\":\"https://flexappnodesaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppowershellsaa50y\",\"name\":\"flexapppowershellsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:15.6290298Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:15.5319909Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppowershellsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-a50y/providers/Microsoft.Storage/storageAccounts/flexapppythonsaa50y\",\"name\":\"flexapppythonsaa50y\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:09:45.4426998Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:09:45.3241238Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsaa50y.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsaa50y.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsaa50y.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsaa50y.queue.core.windows.net/\",\"table\":\"https://flexapppythonsaa50y.table.core.windows.net/\",\"file\":\"https://flexapppythonsaa50y.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Storage/storageAccounts/functionslinuxstorage5f3\",\"name\":\"functionslinuxstorage5f3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:45.2463305Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:44.9634320Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorage5f3.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorage5f3.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorage5f3.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorage5f3.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorage5f3.table.core.windows.net/\",\"file\":\"https://functionslinuxstorage5f3.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d\",\"name\":\"functionswinstorageh7d\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:00:24.2269720Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:00:23.9486081Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorageh7d.dfs.core.windows.net/\",\"web\":\"https://functionswinstorageh7d.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorageh7d.blob.core.windows.net/\",\"queue\":\"https://functionswinstorageh7d.queue.core.windows.net/\",\"table\":\"https://functionswinstorageh7d.table.core.windows.net/\",\"file\":\"https://functionswinstorageh7d.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-kbew/providers/Microsoft.Storage/storageAccounts/funcacastotoragekbew\",\"name\":\"funcacastotoragekbew\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-26T00:07:33.1408532Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-26T00:07:33.0251767Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotoragekbew.dfs.core.windows.net/\",\"web\":\"https://funcacastotoragekbew.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotoragekbew.blob.core.windows.net/\",\"queue\":\"https://funcacastotoragekbew.queue.core.windows.net/\",\"table\":\"https://funcacastotoragekbew.table.core.windows.net/\",\"file\":\"https://funcacastotoragekbew.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", + "Content": "{\"value\":[{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappcustomsa3wro\",\"name\":\"flexappcustomsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:28:13.6683582Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:28:13.5558899Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappcustomsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappcustomsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappcustomsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappcustomsa3wro.queue.core.windows.net/\",\"table\":\"https://flexappcustomsa3wro.table.core.windows.net/\",\"file\":\"https://flexappcustomsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappdotnetisolatedsa3\",\"name\":\"flexappdotnetisolatedsa3\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:06.7055518Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:06.5924157Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappdotnetisolatedsa3.dfs.core.windows.net/\",\"web\":\"https://flexappdotnetisolatedsa3.z7.web.core.windows.net/\",\"blob\":\"https://flexappdotnetisolatedsa3.blob.core.windows.net/\",\"queue\":\"https://flexappdotnetisolatedsa3.queue.core.windows.net/\",\"table\":\"https://flexappdotnetisolatedsa3.table.core.windows.net/\",\"file\":\"https://flexappdotnetisolatedsa3.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappjavasa3wro\",\"name\":\"flexappjavasa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:00.0792137Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:59.9719402Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappjavasa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappjavasa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappjavasa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappjavasa3wro.queue.core.windows.net/\",\"table\":\"https://flexappjavasa3wro.table.core.windows.net/\",\"file\":\"https://flexappjavasa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexappnodesa3wro\",\"name\":\"flexappnodesa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:25:34.2379955Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:25:34.1350953Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexappnodesa3wro.dfs.core.windows.net/\",\"web\":\"https://flexappnodesa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexappnodesa3wro.blob.core.windows.net/\",\"queue\":\"https://flexappnodesa3wro.queue.core.windows.net/\",\"table\":\"https://flexappnodesa3wro.table.core.windows.net/\",\"file\":\"https://flexappnodesa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppowershellsa3wro\",\"name\":\"flexapppowershellsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:26:55.3965367Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:26:55.2941242Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppowershellsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppowershellsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppowershellsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppowershellsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppowershellsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppowershellsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Flex-RG-3wro/providers/Microsoft.Storage/storageAccounts/flexapppythonsa3wro\",\"name\":\"flexapppythonsa3wro\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"eastasia\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:27:49.6949142Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:27:49.5972678Z\",\"primaryEndpoints\":{\"dfs\":\"https://flexapppythonsa3wro.dfs.core.windows.net/\",\"web\":\"https://flexapppythonsa3wro.z7.web.core.windows.net/\",\"blob\":\"https://flexapppythonsa3wro.blob.core.windows.net/\",\"queue\":\"https://flexapppythonsa3wro.queue.core.windows.net/\",\"table\":\"https://flexapppythonsa3wro.table.core.windows.net/\",\"file\":\"https://flexapppythonsa3wro.file.core.windows.net/\"},\"primaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"southeastasia\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Storage/storageAccounts/functionslinuxstorageypr\",\"name\":\"functionslinuxstorageypr\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:18:02.0219067Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:18:01.7270397Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionslinuxstorageypr.dfs.core.windows.net/\",\"web\":\"https://functionslinuxstorageypr.z19.web.core.windows.net/\",\"blob\":\"https://functionslinuxstorageypr.blob.core.windows.net/\",\"queue\":\"https://functionslinuxstorageypr.queue.core.windows.net/\",\"table\":\"https://functionslinuxstorageypr.table.core.windows.net/\",\"file\":\"https://functionslinuxstorageypr.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4\",\"name\":\"functionswinstorage0r4\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"centralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:17:10.0423413Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:17:09.7189591Z\",\"primaryEndpoints\":{\"dfs\":\"https://functionswinstorage0r4.dfs.core.windows.net/\",\"web\":\"https://functionswinstorage0r4.z19.web.core.windows.net/\",\"blob\":\"https://functionswinstorage0r4.blob.core.windows.net/\",\"queue\":\"https://functionswinstorage0r4.queue.core.windows.net/\",\"table\":\"https://functionswinstorage0r4.table.core.windows.net/\",\"file\":\"https://functionswinstorage0r4.file.core.windows.net/\"},\"primaryLocation\":\"centralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"eastus2\",\"statusOfSecondary\":\"available\"}},{\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"kind\":\"StorageV2\",\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-ACA-Test-uhwf/providers/Microsoft.Storage/storageAccounts/funcacastotorageuhwf\",\"name\":\"funcacastotorageuhwf\",\"type\":\"Microsoft.Storage/storageAccounts\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"minimumTlsVersion\":\"TLS1_2\",\"allowBlobPublicAccess\":false,\"networkAcls\":{\"bypass\":\"AzureServices\",\"virtualNetworkRules\":[],\"ipRules\":[],\"defaultAction\":\"Allow\"},\"supportsHttpsTrafficOnly\":true,\"encryption\":{\"services\":{\"file\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"},\"blob\":{\"enabled\":true,\"lastEnabledTime\":\"2026-03-28T01:24:41.8524374Z\"}},\"keySource\":\"Microsoft.Storage\"},\"accessTier\":\"Hot\",\"provisioningState\":\"Succeeded\",\"creationTime\":\"2026-03-28T01:24:41.7427572Z\",\"primaryEndpoints\":{\"dfs\":\"https://funcacastotorageuhwf.dfs.core.windows.net/\",\"web\":\"https://funcacastotorageuhwf.z4.web.core.windows.net/\",\"blob\":\"https://funcacastotorageuhwf.blob.core.windows.net/\",\"queue\":\"https://funcacastotorageuhwf.queue.core.windows.net/\",\"table\":\"https://funcacastotorageuhwf.table.core.windows.net/\",\"file\":\"https://funcacastotorageuhwf.file.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"statusOfPrimary\":\"available\",\"secondaryLocation\":\"westus2\",\"statusOfSecondary\":\"available\"}}]}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01+18": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01+19": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Storage/storageAccounts/functionswinstorageh7d/listKeys?api-version=2019-04-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Storage/storageAccounts/functionswinstorage0r4/listKeys?api-version=2019-04-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "715" ], - "x-ms-client-request-id": [ "26d0329d-049a-424a-aa75-fcc3a03176c4" ], + "x-ms-unique-id": [ "1091" ], + "x-ms-client-request-id": [ "0275f705-c845-4b14-b408-3b3f11502ab8" ], "CommandName": [ "Az.Functions.internal\\Get-AzStorageAccountKey" ], "FullCommandName": [ "Get-AzStorageAccountKey_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -779,16 +824,16 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-request-id": [ "7519150b-e6ee-4d29-8c3d-818868a2d909" ], + "x-ms-request-id": [ "dd45b8e6-5b1d-4e42-9807-14315ee89b51" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/281e723e-10d5-47e1-8a06-5d3bbe659410" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/07269cf2-aabc-44a1-bdb4-0bd46ac62dcd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "55a50f96-1fc0-499e-8c78-dc64b1825c37" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004832Z:55a50f96-1fc0-499e-8c78-dc64b1825c37" ], + "x-ms-correlation-request-id": [ "f27744be-9c29-4ecd-989b-3326c2dc6e0f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023543Z:f27744be-9c29-4ecd-989b-3326c2dc6e0f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3A0C376BE88B4709AFE1D7D2B6A0E9CC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B5D570D0E944B31BBC36B4078D14DB1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "288" ], @@ -799,10 +844,10 @@ "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2015-05-01+19": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2015-05-01+20": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Insights/components/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2015-05-01", "Content": "{\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"kind\": \"web\"\r\n}", "isContentBase64": false, "Headers": { @@ -822,30 +867,30 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70b9070b-8d00-44dc-9b7d-074425e6ac61" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2134051d-41aa-452f-b65c-bc3014764e9b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-request-id": [ "eca03004-e2e2-495f-ae59-3b12e7fa6072" ], - "x-ms-correlation-request-id": [ "eca03004-e2e2-495f-ae59-3b12e7fa6072" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004838Z:eca03004-e2e2-495f-ae59-3b12e7fa6072" ], + "x-ms-request-id": [ "38e0f873-0f38-4795-8191-726b62414850" ], + "x-ms-correlation-request-id": [ "38e0f873-0f38-4795-8191-726b62414850" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023549Z:38e0f873-0f38-4795-8191-726b62414850" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6D54D9F0A0104F98AC6E84D8F391AE42 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:48:37 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1CE3CD8C16304D66A0184274F1699CE5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:35:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1683" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"c3029539-0000-0300-0000-69c482660000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"name\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"AppId\": \"085f874f-ead2-462c-8470-ff4b3ffa4297\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"3675b64b-6001-40f3-ac71-8697ec12215f\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest4-t5dnwqpf7r\",\r\n \"CreationDate\": \"2026-03-26T00:48:33.553951+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest4-t5dnwqpf7r_085f874f-ead2-462c-8470-ff4b3ffa4297_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-t5dnwqpf7r-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", + "Content": "{\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"6e03f7fd-0000-0300-0000-69c73e850000\\\"\",\r\n \"id\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Func-PowerShell-NewTest4-dx36e52rpl\",\r\n \"name\": \"Func-PowerShell-NewTest4-dx36e52rpl\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"ApplicationId\": \"Func-PowerShell-NewTest4-dx36e52rpl\",\r\n \"AppId\": \"0dd80850-62e8-4901-9fa5-f8f75a6d2fb7\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"2f3985bd-0f4a-4057-a837-91a0599cd4e7\",\r\n \"ConnectionString\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\",\r\n \"Name\": \"Func-PowerShell-NewTest4-dx36e52rpl\",\r\n \"CreationDate\": \"2026-03-28T02:35:44.214008+00:00\",\r\n \"TenantId\": \"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"WorkspaceResourceId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_func-powershell-newtest4-dx36e52rpl_0dd80850-62e8-4901-9fa5-f8f75a6d2fb7_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Func-PowerShell-NewTest4-dx36e52rpl-ws\",\r\n \"IngestionMode\": \"LogAnalytics\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\",\r\n \"Ver\": \"v2\"\r\n }\r\n}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+20": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$PUT+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01+21": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", - "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-t5dnwqpf7r\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01", + "Content": "{\r\n \"kind\": \"functionapp\",\r\n \"location\": \"Central US\",\r\n \"properties\": {\r\n \"serverFarmId\": \"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\r\n \"siteConfig\": {\r\n \"netFrameworkVersion\": \"v8.0\",\r\n \"powerShellVersion\": \"7.4\",\r\n \"appSettings\": [\r\n {\r\n \"name\": \"FUNCTIONS_WORKER_RUNTIME\",\r\n \"value\": \"powershell\"\r\n },\r\n {\r\n \"name\": \"AzureWebJobsStorage\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"FUNCTIONS_EXTENSION_VERSION\",\r\n \"value\": \"~4\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\",\r\n \"value\": \"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\"\r\n },\r\n {\r\n \"name\": \"WEBSITE_CONTENTSHARE\",\r\n \"value\": \"func-powershell-newtest4-dx36e52rpl\"\r\n },\r\n {\r\n \"name\": \"APPLICATIONINSIGHTS_CONNECTION_STRING\",\r\n \"value\": \"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"\r\n }\r\n ],\r\n \"use32BitWorkerProcess\": true\r\n }\r\n }\r\n}", "isContentBase64": false, "Headers": { }, @@ -859,43 +904,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCBA4A4BE8E0\"" ], + "ETag": [ "\"1DCBE5B983DE48B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c4664567-4551-4634-9911-601a98911e0e" ], + "x-ms-request-id": [ "85512692-6794-4eda-b57a-9d562ad31f22" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90a34c83-68be-4a5c-a9e9-faa1fbb8ed63" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cf53d0ff-4176-4239-be38-60fa5c8530c6" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "800" ], - "x-ms-correlation-request-id": [ "ca34107d-95e0-4236-a264-a7d06bc207de" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004920Z:ca34107d-95e0-4236-a264-a7d06bc207de" ], + "x-ms-correlation-request-id": [ "bda072d4-2ef3-4d0b-a4b4-d76b0fcd6fb7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023631Z:bda072d4-2ef3-4d0b-a4b4-d76b0fcd6fb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B3E64FDFF11D4140A039582E421B71FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:48:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1150391219A84B91998360D8ECC8FFD1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:35:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:36:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8581" ], + "Content-Length": [ "8586" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:48:40.29\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:454/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:35:51.1166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest4-dx36e52rpl\\\\$Func-PowerShell-NewTest4-dx36e52rpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":null,\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+21": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01+22": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "718" ], - "x-ms-client-request-id": [ "4a9da575-9a58-467d-b714-05ea8bb8cca4" ], + "x-ms-unique-id": [ "1094" ], + "x-ms-client-request-id": [ "43f5e391-99a5-4357-a676-dbbd78b04419" ], "CommandName": [ "Az.Functions.internal\\New-AzFunctionApp" ], "FullCommandName": [ "New-AzFunctionApp_Create" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ] + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ] }, "ContentHeaders": { } @@ -905,42 +950,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA61D28DC0" ], + "ETag": [ "1DCBE5BAF93B56B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d8865472-d5ab-4b63-9484-9396c15711c1" ], + "x-ms-request-id": [ "1dbc7815-607f-442c-8085-a40d3d26aa01" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dd221cb8-36b0-4aec-917c-7e3615d1ac25" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004951Z:dd221cb8-36b0-4aec-917c-7e3615d1ac25" ], + "x-ms-correlation-request-id": [ "be9681cb-6475-471e-8961-66399b03ff33" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023702Z:be9681cb-6475-471e-8961-66399b03ff33" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9EF947C44B124C9EA7A882E3B91544BD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 486747C884BE4DBA846BC7A5A901CFAE Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:02Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:49:20.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:36:31.1266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest4-dx36e52rpl\\\\$Func-PowerShell-NewTest4-dx36e52rpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+22": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01+23": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "719" ], - "x-ms-client-request-id": [ "0347ff16-df93-4415-ae48-3d930b9ad27d" ], + "x-ms-unique-id": [ "1095" ], + "x-ms-client-request-id": [ "feccd670-41db-4cca-b703-8ab7ce6e8fe8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -951,42 +996,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA61D28DC0" ], + "ETag": [ "1DCBE5BAF93B56B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0ade0378-0d58-4434-b3e0-c4f2b85b6c24" ], + "x-ms-request-id": [ "a912ce0c-cd7a-4a20-856f-a9a2e0feb4dd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "dabfa9ad-c89c-4640-85e6-b2df92b8720e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004951Z:dabfa9ad-c89c-4640-85e6-b2df92b8720e" ], + "x-ms-correlation-request-id": [ "d8a5fd3c-95b6-47a3-a261-c35070b3391b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023702Z:d8a5fd3c-95b6-47a3-a261-c35070b3391b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C008D0729D55461E81A24C515A8A29F6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FC15132BB3914175B9C19BD2C41B7966 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:02Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:49:20.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:36:31.1266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest4-dx36e52rpl\\\\$Func-PowerShell-NewTest4-dx36e52rpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01+23": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/appsettings/list?api-version=2023-12-01+24": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "720" ], - "x-ms-client-request-id": [ "02edfc2f-e751-41eb-a775-c9aad42c3572" ], + "x-ms-unique-id": [ "1096" ], + "x-ms-client-request-id": [ "e6ee1798-2106-439e-bed8-d5d17c833aaf" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -998,40 +1043,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c5f3ed98-1525-480d-80f0-03697908751c" ], + "x-ms-request-id": [ "c6c09692-abcd-43e7-bca9-ed3523bd12c5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24a72b93-2c04-4cf5-b8d3-05d56cfff462" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4c0a0b9f-be27-4ac0-969b-ea220a5ba0c4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "73ce3fba-fb19-4d0d-94f7-ffc2fcd7ced8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004951Z:73ce3fba-fb19-4d0d-94f7-ffc2fcd7ced8" ], + "x-ms-correlation-request-id": [ "2b1ae1f3-00f7-42df-95a0-46dfe1890414" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023702Z:2b1ae1f3-00f7-42df-95a0-46dfe1890414" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E7EDC5DC805A48D88899ECEE4C4B3614 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:51 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2CC301B6D3C04D93B12A2DA38ECCED28 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:02Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-t5dnwqpf7r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-dx36e52rpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01+24": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/web?api-version=2023-12-01+25": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "721" ], - "x-ms-client-request-id": [ "67f27abb-6f75-47bf-9f83-e1816652d2ac" ], + "x-ms-unique-id": [ "1097" ], + "x-ms-client-request-id": [ "864db4f7-ccbd-4208-92ce-373401a3d364" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1043,41 +1088,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4e6be626-aa92-4748-bd0b-4fb335f934e0" ], + "x-ms-request-id": [ "63e6c1a5-3298-44a2-b6f8-4cca8ca2c446" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9a8849c5-9faf-45ef-a821-dd8bf6e431e9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c0aa7fda-8124-40f2-aafa-5a75c02598ad" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1406877f-d925-4f7a-a5fa-cd0b1c2f5ec6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:1406877f-d925-4f7a-a5fa-cd0b1c2f5ec6" ], + "x-ms-correlation-request-id": [ "40fcbf4f-0bcd-4629-be17-8038176eb1cf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023703Z:40fcbf4f-0bcd-4629-be17-8038176eb1cf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D0EE8144645047D8B71317CD7D8E5592 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:51Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BFFA5BF5F850476999D20E89ADDEE32E Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:03Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:02 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/web\",\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+25": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01+26": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "722" ], - "x-ms-client-request-id": [ "fae98c07-48e1-4b9f-80ca-1581377cbac4" ], + "x-ms-unique-id": [ "1098" ], + "x-ms-client-request-id": [ "20f9bd42-160f-4ef7-8728-0f0519a7d802" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1088,42 +1133,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA61D28DC0" ], + "ETag": [ "1DCBE5BAF93B56B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c9c737a1-5738-4f5e-80ee-677dd5942278" ], + "x-ms-request-id": [ "55af4fef-3964-4446-8f6e-8c29d6d0e1f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b3cd3954-27e3-4627-8b62-7075b04e11f7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:b3cd3954-27e3-4627-8b62-7075b04e11f7" ], + "x-ms-correlation-request-id": [ "055a657f-7af0-483a-96c2-4b9f3f8a2ee4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023703Z:055a657f-7af0-483a-96c2-4b9f3f8a2ee4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D226A6B897140BA9D6B695FF3E79BD9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1E590776E595407A8D1802DA2433B8BD Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:03Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8377" ], + "Content-Length": [ "8382" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-t5dnwqpf7r.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:49:20.54\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\\\\$Func-PowerShell-NewTest4-t5dnwqpf7r\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"func-powershell-newtest4-t5dnwqpf7r.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"state\":\"Running\",\"hostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Func-PowerShell-NewTest4-dx36e52rpl\",\"repositorySiteName\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"func-powershell-newtest4-dx36e52rpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:36:31.1266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Func-PowerShell-NewTest4-dx36e52rpl\\\\$Func-PowerShell-NewTest4-dx36e52rpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"func-powershell-newtest4-dx36e52rpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01+26": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/appsettings/list?api-version=2023-12-01+27": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "723" ], - "x-ms-client-request-id": [ "67a24a87-6d93-426e-b6fe-4e9054534747" ], + "x-ms-unique-id": [ "1099" ], + "x-ms-client-request-id": [ "db54e2df-1d67-4c1e-8290-12a3538d9709" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1135,40 +1180,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "48c38245-a821-492d-90eb-7d181e89f07e" ], + "x-ms-request-id": [ "c06d9800-a444-4025-93c3-a9eb7a998edb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9da6041d-60bb-4fa9-b8af-f08678fa27f9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/050a79ff-c4dd-46fc-82ce-a4aecd4231f1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d0d189b5-07b1-490b-a3e4-0312c2ea8808" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:d0d189b5-07b1-490b-a3e4-0312c2ea8808" ], + "x-ms-correlation-request-id": [ "100e41e8-6db6-403b-9060-de890a381755" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023703Z:100e41e8-6db6-403b-9060-de890a381755" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 04CB2AB93FB14D95A482813E5CB70CD4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F7C45E5E2C72471A849FD540191DC910 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:03Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-t5dnwqpf7r\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"func-powershell-newtest4-dx36e52rpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01+27": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/web?api-version=2023-12-01+28": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "724" ], - "x-ms-client-request-id": [ "a7b4c89f-a5d5-4ff1-b6ff-27ded13ceaaf" ], + "x-ms-unique-id": [ "1100" ], + "x-ms-client-request-id": [ "3dd0e0a9-644e-4d2e-8e51-967281aed468" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1180,41 +1225,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5e2215e0-f4cf-435f-b44e-b950bc59d2c9" ], + "x-ms-request-id": [ "0f115761-81f2-442c-a30e-f066b0e23983" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8021cf48-3f31-40a6-9b2e-4f171b1bfadf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a4192c9-b889-4bb4-98c6-c6e44344ffd2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "2af15290-1b42-4080-9de6-44c3c016c568" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:2af15290-1b42-4080-9de6-44c3c016c568" ], + "x-ms-correlation-request-id": [ "4777245c-50f2-47f7-801e-48f8926e12fd" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023703Z:4777245c-50f2-47f7-801e-48f8926e12fd" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58E65E3E007D481FB05CF7F6C2E81E1B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A1585F4950E44F68B4964A0B429D9776 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:03Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4191" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r/config/web\",\"name\":\"Func-PowerShell-NewTest4-t5dnwqpf7r\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl/config/web\",\"name\":\"Func-PowerShell-NewTest4-dx36e52rpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+28": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+29": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "725" ], - "x-ms-client-request-id": [ "28a1c2b6-5030-499e-8aa5-5f48b84d2bbe" ], + "x-ms-unique-id": [ "1101" ], + "x-ms-client-request-id": [ "bceb6591-9e25-47e1-8ed4-dc3079479328" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1226,40 +1271,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2b1b4c02-7edc-4a75-b942-b32d09b1452d" ], + "x-ms-request-id": [ "2754dac0-bbc0-41c2-98ff-c1f3966df9d9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b0f3fc84-86b3-44fb-8f64-7e16c51d9eba" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T004952Z:b0f3fc84-86b3-44fb-8f64-7e16c51d9eba" ], + "x-ms-correlation-request-id": [ "71c00e79-9758-41fa-ae10-b58e4a44b6d3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023704Z:71c00e79-9758-41fa-ae10-b58e4a44b6d3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 72B7E3EF0482495E96119C2BEB7745FA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:52Z" ], - "Date": [ "Thu, 26 Mar 2026 00:49:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ADA707CBB7744A3784247F1B824BB1AB Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:04Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:03 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123852,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":1,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123852\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:35:06.61\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+29": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01+30": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?deleteEmptyServerFarm=False\u0026api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "726" ], - "x-ms-client-request-id": [ "1d8e6757-1a93-43f6-a76f-73146981bcd4" ], + "x-ms-unique-id": [ "1102" ], + "x-ms-client-request-id": [ "b39efe20-eac4-4c20-b605-0378e7e7e020" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionApp" ], "FullCommandName": [ "Remove-AzFunctionApp_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1270,20 +1315,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"1DCBCBA61D28DC0\"" ], + "ETag": [ "\"1DCBE5BAF93B56B\"" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7522738a-4847-4648-ab4c-7fe865a65f3c" ], + "x-ms-request-id": [ "ff8db5c2-48b1-418e-8903-cc247ec893b0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2448883-99b8-406a-a58d-b16f3b95fb8e" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "fe53d6a0-bb60-4d8d-834c-895de1a68d70" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005000Z:fe53d6a0-bb60-4d8d-834c-895de1a68d70" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e957609d-0776-49c4-9ac2-57a5f33c59e9" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "800" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "12000" ], + "x-ms-correlation-request-id": [ "8eba0091-27fd-47cd-826e-4451cb1efd5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023712Z:8eba0091-27fd-47cd-826e-4451cb1efd5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9404CCAE64A0424AA480E37C42C8ABDA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:49:53Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6FA055A2255A422492B5900ECB5A66A1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:04Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:11 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1293,19 +1338,19 @@ "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+30": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+31": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "727" ], - "x-ms-client-request-id": [ "053897fb-3ce4-4fd4-a4f2-c8fbb978349b" ], + "x-ms-unique-id": [ "1103" ], + "x-ms-client-request-id": [ "f627f3dd-9eb7-4812-8ab1-5dc90711ce08" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1317,40 +1362,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62136de5-d756-45e5-aaa0-f614c8553550" ], + "x-ms-request-id": [ "7925bc83-3601-4f3e-a8ff-66c5c18fe1e3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "0f6769d2-2720-4c84-a5a6-c013e0fac1d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005000Z:0f6769d2-2720-4c84-a5a6-c013e0fac1d7" ], + "x-ms-correlation-request-id": [ "45c19aea-85d7-41a9-8277-e5e4bfcb7122" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023712Z:45c19aea-85d7-41a9-8277-e5e4bfcb7122" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B6E4B2BD6E594ADC903CBD8D36CD5A81 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7A80CC03D53849A5BE76ADB49B7A412D Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:11 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123852,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123852\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:35:06.61\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01+31": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01+32": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "728" ], - "x-ms-client-request-id": [ "c68b9e50-b0f2-4a7f-92ea-d734bc7e2b69" ], + "x-ms-unique-id": [ "1104" ], + "x-ms-client-request-id": [ "b07aa9d0-adaf-485c-a402-35a201e53480" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1362,37 +1407,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-failure-cause": [ "gateway" ], - "x-ms-request-id": [ "a508442c-a35f-4cba-a3af-7af063039942" ], - "x-ms-correlation-request-id": [ "a508442c-a35f-4cba-a3af-7af063039942" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005000Z:a508442c-a35f-4cba-a3af-7af063039942" ], + "x-ms-request-id": [ "7ebdc86b-68df-4961-a4b4-3ac363c88020" ], + "x-ms-correlation-request-id": [ "7ebdc86b-68df-4961-a4b4-3ac363c88020" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023712Z:7ebdc86b-68df-4961-a4b4-3ac363c88020" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 026889A1691B48F88C8E65B788A8D4CC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:00 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 39D1444A88384D539BAEE347D8DA1643 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:12 GMT" ] }, "ContentHeaders": { "Content-Length": [ "264" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest4-t5dnwqpf7r\u0027 under resource group \u0027Functions-Test-Windows-Premium-py1fb4\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", + "Content": "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource \u0027Microsoft.Web/sites/Func-PowerShell-NewTest4-dx36e52rpl\u0027 under resource group \u0027Functions-Test-Windows-Premium-t7m8hi\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+32": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+33": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "729" ], - "x-ms-client-request-id": [ "deb58705-700f-477d-a21c-dce9f293dc18" ], + "x-ms-unique-id": [ "1105" ], + "x-ms-client-request-id": [ "65a30560-022a-4cb2-a760-4ca3db1eb740" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionAppPlan" ], "FullCommandName": [ "Get-AzFunctionAppPlan_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1404,40 +1449,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "00374282-1fe6-4e12-a950-0f73f1972ffe" ], + "x-ms-request-id": [ "059c2503-907f-465d-9041-6dcd24d8da8b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "adc294a2-e377-4a68-8fac-96e60e4ba2b7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005001Z:adc294a2-e377-4a68-8fac-96e60e4ba2b7" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "2ba93cf1-4f79-4408-9686-7187ff7157f6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023712Z:2ba93cf1-4f79-4408-9686-7187ff7157f6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCC32823629548B2BEB55B327FDE6210 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:00Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:01 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E20A6CF31DCD4E878DA16A49D8604174 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:12Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:12 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1821" ], + "Content-Length": [ "1822" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v\",\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":115039,\"name\":\"Functions-MyTestPlan2-2og675s19v\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-007_115039\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-26T00:47:55.3\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb\",\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"type\":\"Microsoft.Web/serverfarms\",\"kind\":\"elastic\",\"location\":\"Central US\",\"properties\":{\"serverFarmId\":123852,\"name\":\"Functions-MyTestPlan2-9ho6gvcwqb\",\"workerSize\":\"D1\",\"workerSizeId\":3,\"workerTierName\":null,\"numberOfWorkers\":1,\"currentWorkerSize\":\"D1\",\"currentWorkerSizeId\":3,\"currentNumberOfWorkers\":1,\"status\":\"Ready\",\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"subscription\":\"26cfabf6-eb15-4de5-ae51-f2218958bd5f\",\"adminSiteName\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"maximumNumberOfWorkers\":20,\"planName\":\"VirtualDedicatedPlan\",\"adminRuntimeSiteName\":null,\"computeMode\":\"Dedicated\",\"siteMode\":null,\"geoRegion\":\"Central US\",\"perSiteScaling\":false,\"elasticScaleEnabled\":true,\"maximumElasticWorkerCount\":3,\"numberOfSites\":0,\"hostingEnvironmentId\":null,\"isSpot\":false,\"spotExpirationTime\":null,\"freeOfferExpirationTime\":null,\"tags\":null,\"kind\":\"elastic\",\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"mdmId\":\"waws-prod-dm1-019_123852\",\"targetWorkerCount\":0,\"targetWorkerSizeId\":0,\"targetWorkerSku\":null,\"provisioningState\":\"Succeeded\",\"webSiteId\":null,\"existingServerFarmIds\":null,\"kubeEnvironmentProfile\":null,\"zoneRedundant\":false,\"maximumNumberOfZones\":1,\"currentNumberOfZonesUtilized\":1,\"migrateToVMSS\":null,\"vnetConnectionsUsed\":0,\"vnetConnectionsMax\":2,\"createdTime\":\"2026-03-28T02:35:06.61\",\"asyncScalingEnabled\":false,\"isCustomMode\":false,\"powerState\":\"Running\",\"eligibleLogCategories\":\"\"},\"sku\":{\"name\":\"EP1\",\"tier\":\"ElasticPremium\",\"size\":\"EP1\",\"family\":\"EP\",\"capacity\":1}}", "isContentBase64": false } }, - "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01+33": { + "Remove-AzFunctionApp+[NoContext]+Does not delete the function app plan if it is the last app in the plan+$DELETE+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01+34": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-2og675s19v?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-MyTestPlan2-9ho6gvcwqb?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "730" ], - "x-ms-client-request-id": [ "1b5a6150-ca83-4f28-8093-0f48db3dd282" ], + "x-ms-unique-id": [ "1106" ], + "x-ms-client-request-id": [ "c04c0a1f-ff77-44b7-b649-144a99784739" ], "CommandName": [ "Az.Functions.internal\\Remove-AzFunctionAppPlan" ], "FullCommandName": [ "Remove-AzFunctionAppPlan_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1449,18 +1494,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4460ede5-3e47-46f4-becd-bd0db4aea49e" ], + "x-ms-request-id": [ "40fe073a-4895-4b96-ba2f-215ea5f67d07" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e4be55d2-a7a4-4732-a902-fcfe109d6ac1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/323016d0-1138-4cb4-9fde-33b4143a6519" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-correlation-request-id": [ "c1095895-4818-417c-be42-bbeee7547c23" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005006Z:c1095895-4818-417c-be42-bbeee7547c23" ], + "x-ms-correlation-request-id": [ "bbd335e8-d16d-4b9d-a0bb-aa57ff9f9a27" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023717Z:bbd335e8-d16d-4b9d-a0bb-aa57ff9f9a27" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1B8F112EB764EE693926229447AB08B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:01Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4D43BD2353D04E4E85A76EF4141EC44F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:13Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:17 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json b/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json index f0c9d6f8458f..843a2a607ec3 100644 --- a/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json +++ b/src/Functions/Functions.Autorest/test/Restart-Start-Stop-AzFunctionApp.Recording.json @@ -1,17 +1,17 @@ { - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "731" ], - "x-ms-client-request-id": [ "ff64c301-bed5-4ab6-9add-fa5af01480f3" ], + "x-ms-unique-id": [ "1107" ], + "x-ms-client-request-id": [ "baef25d9-1a8c-4dd5-b21d-a59b65799e61" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,18 +23,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d31d7cc0-c1c2-40b8-9b75-a57c00daf47c" ], + "x-ms-request-id": [ "9abd6737-8fe9-4b0b-89af-0f82ca1c5a65" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c2c1b11-4370-48d6-8f89-5e3c542297dc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d670bd96-e3b4-4bd8-b12a-2c31ce69d2b6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "4ad4e4d4-36ec-4df2-834c-21ebd934df19" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005008Z:4ad4e4d4-36ec-4df2-834c-21ebd934df19" ], + "x-ms-correlation-request-id": [ "46c08926-031d-4361-99bf-aa3ae549547b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023719Z:46c08926-031d-4361-99bf-aa3ae549547b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DA2F8DAFCC5348CFB76351358DF1BEA6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3BA4D302DEA74E018E7ADF86E1E75106 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:18 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -44,19 +44,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "732" ], - "x-ms-client-request-id": [ "40654a8e-4185-42ea-96bd-a3b44ca6ce77" ], + "x-ms-unique-id": [ "1108" ], + "x-ms-client-request-id": [ "31fddeed-bd11-4462-b305-20ec132c59f8" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -67,42 +67,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA7E4AA8F5" ], + "ETag": [ "1DCBE5BCC4F7655" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "885c4ecd-329d-431c-be51-416e97b96d4d" ], + "x-ms-request-id": [ "23ffebc2-19f1-443a-9513-2008c078ddf1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c107cc09-b12c-4c9e-9ae4-b9f912440b17" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005008Z:c107cc09-b12c-4c9e-9ae4-b9f912440b17" ], + "x-ms-correlation-request-id": [ "41e65f07-034e-499a-b826-200588627972" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023719Z:41e65f07-034e-499a-b826-200588627972" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2A3FB1100094223A3C4B91FE45E7009 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 77CDAA4289CC4396BB70C78B24F0724F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:08.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:19.3333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "733" ], - "x-ms-client-request-id": [ "67f72d76-d041-42ff-82ef-7d1bfee1517d" ], + "x-ms-unique-id": [ "1109" ], + "x-ms-client-request-id": [ "7ee202e9-1468-47fd-ae45-ee47f5a0849f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -114,40 +114,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4fda33e4-c7a1-42d5-9ae4-7b775d88f3ba" ], + "x-ms-request-id": [ "a5d4b86c-6cda-4154-b47b-729d503442c7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d8d9099b-903f-40ac-ae5f-67f4812b69fd" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/76e60637-ddd1-4582-819d-090f4c1b3cef" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bc03cee2-ee8d-4b5c-8c97-857888caeaa6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005008Z:bc03cee2-ee8d-4b5c-8c97-857888caeaa6" ], + "x-ms-correlation-request-id": [ "21399633-a474-4e2e-9f52-113073703d4d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023720Z:21399633-a474-4e2e-9f52-113073703d4d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 70D03C6B9C7A4D6BB8031D6A2BDC12E3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:08 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1FA9687B8CB44DE87685DF504F81E3B Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:19Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "734" ], - "x-ms-client-request-id": [ "dbf9e279-617d-415c-8ef2-6f6281ef0b8c" ], + "x-ms-unique-id": [ "1110" ], + "x-ms-client-request-id": [ "303d216d-00f6-480f-8071-1009159d23f2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -159,41 +159,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "60003ed1-ba8a-47be-ab97-0b75b0c83ff4" ], + "x-ms-request-id": [ "fdcbdc67-8639-400e-a214-bd15e724ae34" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4d7bbd5d-dcc3-44be-b758-34f7587588e0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fddd735e-10f4-48ef-b641-68660fee4f8e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "35a14ba8-221e-4eaa-814f-a1ed4d9547b1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005009Z:35a14ba8-221e-4eaa-814f-a1ed4d9547b1" ], + "x-ms-correlation-request-id": [ "7b4e9326-e3f2-477d-8fd3-61fc6d536f49" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023720Z:7b4e9326-e3f2-477d-8fd3-61fc6d536f49" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4316C6BCB91C4B7EBDD78EE89C4D9F2C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:08Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1C3FB1C66CBA4045A9827276E5D2C618 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:19 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "735" ], - "x-ms-client-request-id": [ "36b9d20b-f0a4-460c-bece-d7d18866ba59" ], + "x-ms-unique-id": [ "1111" ], + "x-ms-client-request-id": [ "9d8497c4-4a3e-4aed-b38c-76d86a63ba4d" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -205,18 +205,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0e0e161c-91a3-4370-b0b8-621efd19807b" ], + "x-ms-request-id": [ "cbd9907e-90a3-4cf5-b5e9-18c3bab7cd60" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3c75c93b-a29b-4abb-82ab-4739fd51cf08" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/24f69388-66d3-4325-bcf0-46f9c3d1293c" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "13e72a71-71e4-47e1-a14b-d3b0fd59e646" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005009Z:13e72a71-71e4-47e1-a14b-d3b0fd59e646" ], + "x-ms-correlation-request-id": [ "f9aa5a22-44fb-46f6-a511-70edd342f6c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023720Z:f9aa5a22-44fb-46f6-a511-70edd342f6c1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCAA949E92044109B4CED69C5C87A519 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1843A6BE74A14F1FB90EEFEED58A5730 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:20 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -226,19 +226,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "736" ], - "x-ms-client-request-id": [ "086c1304-3e38-474b-9106-0f8a5bb88d33" ], + "x-ms-unique-id": [ "1112" ], + "x-ms-client-request-id": [ "b1d84ea5-20e7-404e-828e-1ac560d9cf34" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -249,42 +249,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA7F0A6980" ], + "ETag": [ "1DCBE5BCD24116B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1413b8c4-a056-4a7b-a638-a9870119db57" ], + "x-ms-request-id": [ "f5374045-421c-4c7e-b194-45ce9a001264" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "75440765-67f4-4cd6-9ac4-3f82e82f4239" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005009Z:75440765-67f4-4cd6-9ac4-3f82e82f4239" ], + "x-ms-correlation-request-id": [ "15372e34-4d31-4042-8e15-bdd6a21a2dad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023721Z:15372e34-4d31-4042-8e15-bdd6a21a2dad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A1EB9E976CA54B14B911396595D6C3C3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:09 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2F36101191AA4093A6D3A9C928390DCA Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:20Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:20 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8307" ], + "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:09.56\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:20.7266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "737" ], - "x-ms-client-request-id": [ "68fdc15b-6e69-43b4-be8f-c0fff5f150c6" ], + "x-ms-unique-id": [ "1113" ], + "x-ms-client-request-id": [ "66cb9963-d19b-4cca-908a-71942c76b26f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -296,40 +296,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51273af6-90b3-4b6a-8402-187a3e9b8de5" ], + "x-ms-request-id": [ "b3665c40-a948-4dfb-8742-6e590d4254c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d3f4bc9a-3f25-4dd8-b59e-51419621ecec" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/268abedb-9b4c-4d52-a76b-0acb7b11ca74" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "9285f537-467c-4412-bd06-4c357fc670fa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005010Z:9285f537-467c-4412-bd06-4c357fc670fa" ], + "x-ms-correlation-request-id": [ "a09c1983-edb5-46ff-a7de-c4bbc9c41f04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023721Z:a09c1983-edb5-46ff-a7de-c4bbc9c41f04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64CAF92AE8254AA7AB72E1291DD511F3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:09Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B48019F603D34675BA7B14B7AD9E5FC3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:20 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "738" ], - "x-ms-client-request-id": [ "8c87f030-6cd5-429a-822b-29419e2d68bc" ], + "x-ms-unique-id": [ "1114" ], + "x-ms-client-request-id": [ "52e31b4b-aa65-4d6f-bd57-82ea69f39ee8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -341,41 +341,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a2e811f7-abc8-4859-806d-f6bdd6409af1" ], + "x-ms-request-id": [ "bda5bc63-7d94-446e-bbd2-150a14c07a91" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97b5d76d-c7c9-44b6-8fa1-95f0eb7eede9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6712ab0-63e8-4937-b7d8-8c6c359ed1ac" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "100cb39e-dfe4-4a3d-a04b-3ac5bffb18ce" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005010Z:100cb39e-dfe4-4a3d-a04b-3ac5bffb18ce" ], + "x-ms-correlation-request-id": [ "2222100a-fa34-48f1-b9c1-1ab80fb43e0b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023721Z:2222100a-fa34-48f1-b9c1-1ab80fb43e0b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1AD5547E9E314A9B9CC668EE26605E20 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:10 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FCA75C1EDC604A10B98D5E123323484C Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "739" ], - "x-ms-client-request-id": [ "d7a366c7-7e5c-4c5b-992e-d51723b0399d" ], + "x-ms-unique-id": [ "1115" ], + "x-ms-client-request-id": [ "952e9cb6-4196-4863-b5ef-f0d566922fba" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -387,18 +387,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "209ed38d-4174-4431-be54-72211bce88ec" ], + "x-ms-request-id": [ "8c75425e-6be8-4ab6-a705-ae4e61b070db" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/27a4eff5-679e-4bad-8036-ff568377b33a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/08a2f6b2-3c62-47a8-aa38-eda519221a8b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "02293455-7abd-4495-a39d-3aa4ab4a9966" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005011Z:02293455-7abd-4495-a39d-3aa4ab4a9966" ], + "x-ms-correlation-request-id": [ "4acf9c0a-650f-46e9-a26d-75079f10172f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023721Z:4acf9c0a-650f-46e9-a26d-75079f10172f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7D0B0A919A3483F970BA9C6E75F466E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:10Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F1F3324E5087416D84F8610B7AC8BE09 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:21Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:21 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -408,19 +408,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "740" ], - "x-ms-client-request-id": [ "8b9ae6f2-d787-43a5-bb56-317bf137b0f5" ], + "x-ms-unique-id": [ "1116" ], + "x-ms-client-request-id": [ "3d78acda-0d58-43ba-9f54-7a2b4c8dcca2" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -431,42 +431,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA7FB7DA8B" ], + "ETag": [ "1DCBE5BCDCBEA2B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc49f7db-bb0b-451f-8a49-dcc2d009a39b" ], + "x-ms-request-id": [ "378d7892-4fa9-4103-bd55-9bf71ce9be02" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "35c44f6f-f230-4687-8835-563bdfcd62d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005011Z:35c44f6f-f230-4687-8835-563bdfcd62d3" ], + "x-ms-correlation-request-id": [ "3b27b0d3-eb6a-4b6d-9c6f-45f4efbcd391" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023722Z:3b27b0d3-eb6a-4b6d-9c6f-45f4efbcd391" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 92C1DEBD0E6645F18929796CF3138486 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:11Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:11 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5193E1466A894521A082AE1A080A2135 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:22Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:10.6966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:21.8266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "741" ], - "x-ms-client-request-id": [ "d3781955-6827-42f7-9ce0-018f377802ac" ], + "x-ms-unique-id": [ "1117" ], + "x-ms-client-request-id": [ "b4417c81-3631-4c10-a43f-9434141c15fb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -478,40 +478,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "150575bf-27c9-46ba-8686-3ea3e60a4da2" ], + "x-ms-request-id": [ "f64a5566-b9d9-4503-8421-f0d5b1bc7292" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac899928-2ee4-47d3-8343-f6c13a03f846" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e0e7529-2fac-4f77-85be-25b08e85baca" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "d8d026e3-a7c1-4ba0-9c72-55bb704483da" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005012Z:d8d026e3-a7c1-4ba0-9c72-55bb704483da" ], + "x-ms-correlation-request-id": [ "58f55956-4d1a-4458-a40f-b8401ffdaa82" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023722Z:58f55956-4d1a-4458-a40f-b8401ffdaa82" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E56AF901D3214F0D9075774CCBFB5A34 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B61EB97436E84F078D1EFB5E80E14986 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:22Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:21 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "742" ], - "x-ms-client-request-id": [ "0ebe64be-8fb1-44e3-bc51-1c2fd7017c91" ], + "x-ms-unique-id": [ "1118" ], + "x-ms-client-request-id": [ "8c68f623-5926-4b5b-8be2-cabd59c3c629" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -523,41 +523,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d99e1b08-fdf0-4186-9667-51ae334f50ad" ], + "x-ms-request-id": [ "5670e60b-f66c-45e5-a12d-8c2e5f2e50af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3741b287-8801-4a20-b54c-c08a9efcfc0c" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "368ee17e-4059-44c2-a7f4-faf061322b0d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005012Z:368ee17e-4059-44c2-a7f4-faf061322b0d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a05e2848-e71d-4708-8a9f-e2b9cebc13b3" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "4e9b5094-df97-4c73-b7c5-bf87a2333bda" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023722Z:4e9b5094-df97-4c73-b7c5-bf87a2333bda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4C1D3087CB724C58B042F021B0CB3E9D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:12Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:12 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6E87016A0494A51B88DBD85BBE8B4BF Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:22Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:22 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "743" ], - "x-ms-client-request-id": [ "177c2d1c-62c0-4708-8f9f-4dbcfb7ae10c" ], + "x-ms-unique-id": [ "1119" ], + "x-ms-client-request-id": [ "2253e145-10b9-4b36-9baa-75fecb639b40" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -569,18 +569,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c8dea01b-a2d6-47c9-ada5-9298e9ccace4" ], + "x-ms-request-id": [ "85c2ab9b-a486-46fb-a596-d5f9c36cb073" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a45f5690-7ec3-45e6-a60f-09ed83f3f8bc" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d28afc13-89f9-4979-ba30-2df03cabe1c6" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8570bd2b-3c4c-4f76-92c8-b6e479299a30" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005013Z:8570bd2b-3c4c-4f76-92c8-b6e479299a30" ], + "x-ms-correlation-request-id": [ "651cfa5c-ec0f-44c1-9956-76b8fcda0bc5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023723Z:651cfa5c-ec0f-44c1-9956-76b8fcda0bc5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 021A8E4E03C64B07BC78741DF44C77CB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D2856138383A4CABBEEC0426683C9A20 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:22Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:22 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -590,19 +590,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "744" ], - "x-ms-client-request-id": [ "6e2b7da4-436f-44f8-b7c3-06cd217a4998" ], + "x-ms-unique-id": [ "1120" ], + "x-ms-client-request-id": [ "74692efa-944c-4cb3-a12f-cf97fef1e094" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -613,42 +613,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCB41443E000" ], + "ETag": [ "1DCBE5133C9D7CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6cee5509-2495-4e47-9656-9c90700b727c" ], + "x-ms-request-id": [ "5f5c837b-9bf8-483d-929f-42bbbbe9e0d6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "b32a41c2-d6c0-4d9d-9912-f651f0d5c336" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005013Z:b32a41c2-d6c0-4d9d-9912-f651f0d5c336" ], + "x-ms-correlation-request-id": [ "731e243d-3fd8-4ee0-86e8-35ab3863aaed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023723Z:731e243d-3fd8-4ee0-86e8-35ab3863aaed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A68D6DC501A4D8B8B185940B9CE3384 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:13 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 794BD7D59EC648B8B073BE2675DF716C Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:22 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8417" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:04:13.44\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T01:21:28.4766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "745" ], - "x-ms-client-request-id": [ "1b96b7d7-c42b-456e-8ac4-2d1211b4777b" ], + "x-ms-unique-id": [ "1121" ], + "x-ms-client-request-id": [ "b9b68a6e-a684-4e95-8ffd-4b999e68bb1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -660,40 +660,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e165afd0-9e89-44e5-b4f9-8169378a4914" ], + "x-ms-request-id": [ "cddbae0c-8e64-4b33-99d0-c2c19489b107" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/44a025c1-4907-45f7-b25e-21e945faeb83" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/acffc9c9-d89e-48a1-9016-9823b6ce3366" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f3a390db-970b-47bf-b2cb-6799762370d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:f3a390db-970b-47bf-b2cb-6799762370d3" ], + "x-ms-correlation-request-id": [ "50c223d7-ee0a-4f53-8a41-c4da4438f4c8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023723Z:50c223d7-ee0a-4f53-8a41-c4da4438f4c8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 88254BA36C8245FD94E4612015B2518E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:13Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 24CD08C75CE94ED2B39012020842EDF7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "746" ], - "x-ms-client-request-id": [ "07679ea3-483d-46c0-9076-10cb2d88d758" ], + "x-ms-unique-id": [ "1122" ], + "x-ms-client-request-id": [ "031b66d5-6a47-472b-842b-3746541de9e3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -705,41 +705,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "73f85fb2-2873-4f1a-8f58-739cc9654506" ], + "x-ms-request-id": [ "5390131f-6b34-46b6-8051-66b17f313143" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cabf23ba-fe54-4c76-b085-555da50b9c66" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/527f581f-36d4-45ac-a343-83da23b779c5" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "79b818b8-0f83-4281-80b0-a788ffe26314" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:79b818b8-0f83-4281-80b0-a788ffe26314" ], + "x-ms-correlation-request-id": [ "ff0bef22-d22c-4b55-aa45-9b47868cce6f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023724Z:ff0bef22-d22c-4b55-aa45-9b47868cce6f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D069E16E1C7D47E8B095506AFDA71263 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75EA946A2348413B8C4373ABA252BBF5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:23Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:23 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "747" ], - "x-ms-client-request-id": [ "37c33785-d906-49ca-8d65-27b46e6e2848" ], + "x-ms-unique-id": [ "1123" ], + "x-ms-client-request-id": [ "4149f9be-7094-402d-80aa-4bf87b3dcfd8" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -751,18 +751,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30d5ae3f-f393-4f7e-ab67-22eb4ebb5643" ], + "x-ms-request-id": [ "667d2643-1202-492f-9b00-4775847aa3d5" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f01e0ec-34f0-490e-8c92-ef4db5cf16fc" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "a8a533f1-7f04-40f2-9042-306b4d4e3f86" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:a8a533f1-7f04-40f2-9042-306b4d4e3f86" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d4995fab-f64a-4299-91dd-25c54499ec30" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "e94bd717-0b66-465b-ba05-d2396f684409" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023725Z:e94bd717-0b66-465b-ba05-d2396f684409" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AD1B457D109B4E7F963553779F6CD498 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4F1C9BC599F346C3AF38D8B14041BF46 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:24Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:24 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -772,19 +772,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "748" ], - "x-ms-client-request-id": [ "c3ffbb68-2201-4ddd-bb6d-d5bfdca8c867" ], + "x-ms-unique-id": [ "1124" ], + "x-ms-client-request-id": [ "5f7855e8-3bfc-419a-a3eb-c4b8cbef1b2f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -795,42 +795,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA81F49120" ], + "ETag": [ "1DCBE5BCF9C4A60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "47f09902-974a-49ac-a051-ef257bd01d16" ], + "x-ms-request-id": [ "74f9c2d5-c4e6-49f4-8420-7a6ce909d2ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ec6de5ba-b752-47e6-ab25-539b9b99e759" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005014Z:ec6de5ba-b752-47e6-ab25-539b9b99e759" ], + "x-ms-correlation-request-id": [ "edd81972-2afe-4c43-823e-24b5c1df3261" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023725Z:edd81972-2afe-4c43-823e-24b5c1df3261" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7AFD8E9F4B3D45EBBEF6271C94715843 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:14 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 54C474EFB0CF44D9B73A738E0742AEB9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8417" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:14.45\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:24.87\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "749" ], - "x-ms-client-request-id": [ "d52130fd-2568-45b0-b1da-157c32ec926d" ], + "x-ms-unique-id": [ "1125" ], + "x-ms-client-request-id": [ "8c4d5b4f-1614-4294-9107-3c6b3e76a41f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -842,40 +842,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b70feb80-b1da-4532-9960-adc7b20f0e4b" ], + "x-ms-request-id": [ "bf46b539-ea66-404b-a3bb-1159b2833f68" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c8b2448e-d4aa-43eb-bec8-636f24b45dde" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/18b075ca-4150-464c-9bb1-24d257a7dcff" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "38ff8bab-5fc9-443e-9411-277f6ea0ee87" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:38ff8bab-5fc9-443e-9411-277f6ea0ee87" ], + "x-ms-correlation-request-id": [ "5617ab41-a665-42a6-af71-ee16cfde078e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023727Z:5617ab41-a665-42a6-af71-ee16cfde078e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7902D9084AC04D50A2BC987C633D0B0E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:14Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 03EF3DAE665B4F61886CBF49AE426EB6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:25Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "750" ], - "x-ms-client-request-id": [ "71a050ee-93a1-46b9-ac90-7a69f27ff595" ], + "x-ms-unique-id": [ "1126" ], + "x-ms-client-request-id": [ "8569be75-899a-449e-b8de-eda6150a7dc5" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -887,41 +887,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "823f93ca-2b84-4212-af30-e5974a365134" ], + "x-ms-request-id": [ "4525d4fe-0f05-4419-954a-83a93518ce4d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/140e3359-8ded-4586-b36f-080336583890" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "fc39c2ea-f527-4737-9374-0f8567c30648" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:fc39c2ea-f527-4737-9374-0f8567c30648" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fb83b04f-57fb-4cd8-add5-7be63c043dbc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "e8cf8064-c2bc-4f4e-861d-8b1f38e49366" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023727Z:e8cf8064-c2bc-4f4e-861d-8b1f38e49366" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95B89FFB97E94F5BBB1DAB1616AD9EFA Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E25D8E1E3C55455281EB506FC21C08AE Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "751" ], - "x-ms-client-request-id": [ "d4c38fac-5035-491a-8f9f-3577a0b510bb" ], + "x-ms-unique-id": [ "1127" ], + "x-ms-client-request-id": [ "0a707a1e-22c4-4aca-bed4-451d25cfdd20" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -933,18 +933,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f3467cd-02c2-4bec-9c4f-22d5670fd1db" ], + "x-ms-request-id": [ "f660acb7-fc4e-4e98-aec3-17da1d372a4e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0edd3aaa-8cca-4ca2-9754-af05ac15a47a" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "797" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11997" ], - "x-ms-correlation-request-id": [ "0433f88c-2d28-49ec-88b5-e51706ffe3ad" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:0433f88c-2d28-49ec-88b5-e51706ffe3ad" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f21a6421-949c-4a76-9eab-63ba1226e607" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "9c31e29a-e04a-4f4c-8538-76cbba4ade87" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023727Z:9c31e29a-e04a-4f4c-8538-76cbba4ade87" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 349F57B23E234C0DBEA2EA11F3542497 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D05F2F1547D44017B22E537A3D66EFEE Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:27 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -954,19 +954,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "752" ], - "x-ms-client-request-id": [ "e8a87b68-e8df-4728-af80-bc4aad50eade" ], + "x-ms-unique-id": [ "1128" ], + "x-ms-client-request-id": [ "34d77b72-7964-43f7-9045-0db51574239e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -977,42 +977,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8292BFEB" ], + "ETag": [ "1DCBE5BD159D8E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "69ba2e96-6a33-4145-9347-663091fd4737" ], + "x-ms-request-id": [ "4bc1ca4a-0830-4769-a022-1227a54ff130" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "d16c6e6c-e3b0-4bae-82f2-3816adfd1ead" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005015Z:d16c6e6c-e3b0-4bae-82f2-3816adfd1ead" ], + "x-ms-correlation-request-id": [ "9bba3f0e-6a3b-419c-8bf0-d23160012a65" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023728Z:9bba3f0e-6a3b-419c-8bf0-d23160012a65" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4BED02C7B00B444185728F14331CC691 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:15 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 61833E4E9532469ABFE9F05E936BB839 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:27Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:27 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8422" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:27.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "753" ], - "x-ms-client-request-id": [ "3f3f3560-2b7a-4076-ab33-15fe1504e313" ], + "x-ms-unique-id": [ "1129" ], + "x-ms-client-request-id": [ "a9a06cc3-f674-4243-9fc0-1d28642d1635" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1024,40 +1024,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bf5ecac8-3693-48a8-90bf-d7db5d4429cf" ], + "x-ms-request-id": [ "c9ffc3b4-7fba-4177-9333-ed18f170268b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd3ed685-8873-42b5-8820-3f209e927743" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ef421287-837f-4090-a937-1e4f3f9bbf13" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "b688ae61-61c4-4923-ab0f-493bc04240fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:b688ae61-61c4-4923-ab0f-493bc04240fb" ], + "x-ms-correlation-request-id": [ "d02616f7-8e86-437d-ba36-0148db688e8d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023728Z:d02616f7-8e86-437d-ba36-0148db688e8d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 75455EE4457C4566B80CE83D968DEA76 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:15Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 89F5575C56E74F7FAB5C244E7B437135 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "754" ], - "x-ms-client-request-id": [ "ecbaeaac-3f7c-471b-b794-f00e74045689" ], + "x-ms-unique-id": [ "1130" ], + "x-ms-client-request-id": [ "3c98bf31-7bee-4f52-83e2-c30292c80623" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1069,41 +1069,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e8e1eee6-bd66-4079-82a1-ae72c3d960cc" ], + "x-ms-request-id": [ "8f6b753f-8a03-40b1-b3e4-99c7d3a66669" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10b32f38-517e-4cd1-ba72-e50a3e958cbe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ecdc903e-d208-485d-a9ee-fb76c3abd919" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a954c234-accc-4e7f-b31b-3a7792781e40" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:a954c234-accc-4e7f-b31b-3a7792781e40" ], + "x-ms-correlation-request-id": [ "8b7adbe5-4d46-4ce0-8d30-68024e5549b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023728Z:8b7adbe5-4d46-4ce0-8d30-68024e5549b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3D3B3FB734AB495682BE0A9D5EEF92FC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:16Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5CAA752E01D24743993BBAEDE2558C5E Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:28 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "755" ], - "x-ms-client-request-id": [ "c64d17c6-a1f2-4b18-b966-6d99500f96b4" ], + "x-ms-unique-id": [ "1131" ], + "x-ms-client-request-id": [ "96b9049b-43da-4c44-8c94-99f82dc4cb14" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1115,18 +1115,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23a83080-3525-4b72-9316-53304818354f" ], + "x-ms-request-id": [ "c7249cdc-968c-4d2c-9fe7-9bbd152f4d55" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cac778c0-f3de-488f-85af-b54ede70c633" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f63dfb9d-10c3-4519-afff-ac493ad84f9f" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "028c390e-5139-46b1-99c5-4fd8c1e4cc04" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:028c390e-5139-46b1-99c5-4fd8c1e4cc04" ], + "x-ms-correlation-request-id": [ "85567ceb-683c-4fca-9dde-27e72e09a15a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023729Z:85567ceb-683c-4fca-9dde-27e72e09a15a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 693FFDB139324905AD302C33A28A2E7E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:16Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE2CF35B8B064EE2B140F0602AEC52E0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:28Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:28 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1136,19 +1136,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "756" ], - "x-ms-client-request-id": [ "321fbede-769f-4052-a916-5a29d206fb4c" ], + "x-ms-unique-id": [ "1132" ], + "x-ms-client-request-id": [ "0776af02-d3ea-4538-a8ae-4414e7afae8b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1159,42 +1159,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8332F78B" ], + "ETag": [ "1DCBE5BD21F31B5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e61103d5-f38d-4abe-840f-3e0fcac5cc22" ], + "x-ms-request-id": [ "296fe51e-8537-4e92-bab4-ab1e64474bd8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "fd7ab2b9-99bc-4c09-a066-d7b854c98e51" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005016Z:fd7ab2b9-99bc-4c09-a066-d7b854c98e51" ], + "x-ms-correlation-request-id": [ "d33bc14b-2c99-4855-be4a-64177b9ad17f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023729Z:d33bc14b-2c99-4855-be4a-64177b9ad17f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 164F17BDBAD24FBB8164B4FFBA914953 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:16Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:16 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B00EA584E74D46A9BC24FD1243AB522E Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:28 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8544" ], + "Content-Length": [ "8026" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:16.5366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:29.0833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "757" ], - "x-ms-client-request-id": [ "4d1445a8-51bb-45ca-bf62-89bc377393e3" ], + "x-ms-unique-id": [ "1133" ], + "x-ms-client-request-id": [ "d4c0a3f4-d3df-416b-bd0f-227ba99fdd5a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1206,40 +1206,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc447cad-130b-4e22-a61f-36a5fed4db60" ], + "x-ms-request-id": [ "459b852b-e7d5-4d6f-877c-dfab5205d345" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71c480ea-28ee-4d66-834f-f3c3f59bd7fe" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "1f6eab4a-a4c5-4b36-8f8c-ecc238e81bd6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005017Z:1f6eab4a-a4c5-4b36-8f8c-ecc238e81bd6" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/da79b412-3000-47e0-9d8b-5f8467c995f5" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "e08c501d-60de-45eb-9f05-c60130e9f57d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023729Z:e08c501d-60de-45eb-9f05-c60130e9f57d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FC211F76EE31491B9A01262BED41B67F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F0932B80514E44D282C58BD6639B6135 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "758" ], - "x-ms-client-request-id": [ "81dc7e2b-e9ac-48a1-b19d-272463ecb7ef" ], + "x-ms-unique-id": [ "1134" ], + "x-ms-client-request-id": [ "9b648053-396d-4f3e-b82c-059e0705c31f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1251,41 +1251,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "18fc781f-682c-48d2-9854-55c79e241d25" ], + "x-ms-request-id": [ "4d07a79e-c005-4f34-9b3d-afa5309a0dfd" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/706c9b7e-be91-49af-9eeb-917d28414fb6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "07520d16-cd9a-49b3-85dd-bc202891d283" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005017Z:07520d16-cd9a-49b3-85dd-bc202891d283" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f97eebff-9b45-4369-a137-edb9c2ba9b24" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "488f4f7c-a9e3-457f-b893-b11f8efb213b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023730Z:488f4f7c-a9e3-457f-b893-b11f8efb213b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 05DEDF0C84A04EA9AF0765C2C83A5A26 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A97A5F3DD0524433B037F8CA9B664384 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:29Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:29 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "759" ], - "x-ms-client-request-id": [ "16ad1200-8a84-4689-a7a0-be41e5bb32de" ], + "x-ms-unique-id": [ "1135" ], + "x-ms-client-request-id": [ "60260f65-bc64-46c7-95e3-768a302b3b6a" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1297,18 +1297,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4699166e-d521-4a75-b2c1-635f0ee5d036" ], + "x-ms-request-id": [ "632593ec-af50-4fc4-bc46-3abac4067714" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/71792e0c-c34d-4d36-b32f-efd7054dd552" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e29ebe75-3734-414d-aa98-eab65e8c9f47" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e6cd374a-6097-4645-b61b-a7029eb802f6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005017Z:e6cd374a-6097-4645-b61b-a7029eb802f6" ], + "x-ms-correlation-request-id": [ "5a7805c0-289f-4a46-8feb-135f955a7f04" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023730Z:5a7805c0-289f-4a46-8feb-135f955a7f04" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 071D40418483446185F980AB30BB5CD1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:17 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3B6F043DC55B4E108DE261C8E1D130BC Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:30 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1318,19 +1318,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "760" ], - "x-ms-client-request-id": [ "420a41b1-add8-401f-91d6-63c8a8aa7b0d" ], + "x-ms-unique-id": [ "1136" ], + "x-ms-client-request-id": [ "4bff297d-6c9c-4071-99a6-456a63ad8016" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1341,42 +1341,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA83E06895" ], + "ETag": [ "1DCBE5BD2FA6980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "7e86b20b-f82d-45f4-a783-e180c773bf02" ], + "x-ms-request-id": [ "bbdf1364-b2c2-4b3b-a44b-0cee3fbbc386" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "51e921c0-bcec-4745-ba37-828492e4af1e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005018Z:51e921c0-bcec-4745-ba37-828492e4af1e" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "54107e06-9950-4795-bc8d-f7e69ddc73b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023730Z:54107e06-9950-4795-bc8d-f7e69ddc73b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 86C972A73AE64FE096A8C520F55A0BF6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:17Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 58BAE7C03A3D4AD3AA18740C0F04A836 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:30Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8544" ], + "Content-Length": [ "8021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:17.6733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:30.52\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "761" ], - "x-ms-client-request-id": [ "1a722e0b-4fd3-41e5-9592-f45e4103648e" ], + "x-ms-unique-id": [ "1137" ], + "x-ms-client-request-id": [ "e6223e3d-d127-46f5-a5bd-9f7333f16978" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1388,40 +1388,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "004d79cf-5b37-4f45-b8e5-30f625ab7f31" ], + "x-ms-request-id": [ "8bb5d70a-e4fc-40f5-b1d8-bda641ea3565" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f5b2562-9548-4a78-a636-82ed6b622e46" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/60d20069-4ebd-4a25-b9c8-16387c583041" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c98b06b7-90d4-4e9c-ab6e-02bf6b03d130" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005018Z:c98b06b7-90d4-4e9c-ab6e-02bf6b03d130" ], + "x-ms-correlation-request-id": [ "bae7b181-c910-40bc-ba4b-ecfdeb1bb3b3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023731Z:bae7b181-c910-40bc-ba4b-ecfdeb1bb3b3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F5DCA4409B0840D0B224632492979501 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 74AEA19F579A4B53BBC5F30A84DF4506 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "762" ], - "x-ms-client-request-id": [ "831d4f98-f15c-4529-87c7-9b60ca5df511" ], + "x-ms-unique-id": [ "1138" ], + "x-ms-client-request-id": [ "f4e30b5c-2602-4418-b118-541e95460ad4" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1433,41 +1433,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a7fc997d-bd7d-4093-9d67-5bcf02a8e68c" ], + "x-ms-request-id": [ "f151e52e-c1bf-4dc9-aab4-d4218aca90a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9042e47c-00cf-4061-803f-677484b26db0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "f59feeab-43fd-4c33-a440-9003857f5b29" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005018Z:f59feeab-43fd-4c33-a440-9003857f5b29" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6efdf1b7-984f-4850-8004-13831a233930" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "ba0737e7-ff43-4e68-b194-62bf1795a340" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023731Z:ba0737e7-ff43-4e68-b194-62bf1795a340" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BF0464D399DC49D09FEE012C28AB24ED Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:18 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A988C54D335D44CD9F1954B3E43E1C9D Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:30 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "763" ], - "x-ms-client-request-id": [ "1c893a00-501c-4ea4-81fb-e3466db438c2" ], + "x-ms-unique-id": [ "1139" ], + "x-ms-client-request-id": [ "05203541-16fb-4182-a318-02545a6f6257" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1479,18 +1479,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ce3fbc92-ed65-4bd1-9567-c960bbe131b5" ], + "x-ms-request-id": [ "ad386c00-8b93-43fc-9332-2cfa2281402d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dcc64197-833a-4e1f-a1f6-fefd2a008c24" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "fea889eb-6d14-49d0-be76-be8784a23e41" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005019Z:fea889eb-6d14-49d0-be76-be8784a23e41" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f22b83c0-7949-4d51-8cda-6cb8b20707db" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "3b314516-77ec-4a06-a742-d2b0c7e4053d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023731Z:3b314516-77ec-4a06-a742-d2b0c7e4053d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7421488647340F995019C5EB1D8F187 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:18Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 699760E78FDE4164970129E0508802D2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:31 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1500,19 +1500,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "764" ], - "x-ms-client-request-id": [ "d3f3679e-071a-471a-9e4e-f3aa86bb4bcd" ], + "x-ms-unique-id": [ "1140" ], + "x-ms-client-request-id": [ "8fa294f8-6e3c-4c2c-9856-e56c390ad28e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1523,42 +1523,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA84B78EB5" ], + "ETag": [ "1DCBE5BD3AAE7CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "64e969e6-2522-4a48-a06f-1bba59a2627d" ], + "x-ms-request-id": [ "438bf6fa-7db1-4680-8919-d83d669a590c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "0145d645-7634-4f7d-95d6-b7abc9f9e92a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005019Z:0145d645-7634-4f7d-95d6-b7abc9f9e92a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "69e734f1-da9a-4d62-94a1-f7082098b5b6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023732Z:69e734f1-da9a-4d62-94a1-f7082098b5b6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FA91CDCB1B340DBA654652D29A7F826 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E2185619CF76455C9DD264F7DA31C8D0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:31Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:31 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8544" ], + "Content-Length": [ "8026" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:19.0833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:31.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "765" ], - "x-ms-client-request-id": [ "0fcc6671-8ad5-4f58-a1fa-fd6d0cc13382" ], + "x-ms-unique-id": [ "1141" ], + "x-ms-client-request-id": [ "648476ee-8402-40f2-bb16-9c6d3772a30d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1570,40 +1570,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f47145f1-c740-4f3b-94f0-ff0bc52045cd" ], + "x-ms-request-id": [ "be2a6d6f-a66e-4167-9d7c-1156c0671ce0" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a42adafc-10ba-461e-bbe2-3f62a176c966" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/860cbc0a-4c83-43e8-868d-0e71efef92f4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bf0ec7e4-0436-4e46-850c-160d8e1ecf23" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005019Z:bf0ec7e4-0436-4e46-850c-160d8e1ecf23" ], + "x-ms-correlation-request-id": [ "40a31af7-878b-4aea-8aa6-fc37b36f6bfa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023732Z:40a31af7-878b-4aea-8aa6-fc37b36f6bfa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A960E6365804D28A25BFAA7A1F6E056 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:19 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE6CB8337D4D4C138231F269770AE27A Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:31 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "766" ], - "x-ms-client-request-id": [ "6135dd74-5fdc-4713-97cb-507ad0c325bd" ], + "x-ms-unique-id": [ "1142" ], + "x-ms-client-request-id": [ "3045feee-8baa-4b3c-a817-e94804c55337" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1615,41 +1615,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "80ae4dea-5bb4-45ea-b7e8-c982230c0f6d" ], + "x-ms-request-id": [ "1330ed66-48c9-4326-a830-f4c7ab5322b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1e9de044-b4fb-409c-b526-ee480853c4a8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "9f6df996-e2d8-45b6-8d51-b84d6b7dccfe" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:9f6df996-e2d8-45b6-8d51-b84d6b7dccfe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e7931bd2-9679-47a1-800e-14e69c66d546" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "aef42d5b-0325-47d0-8c7c-71ddb6ef9bb4" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023733Z:aef42d5b-0325-47d0-8c7c-71ddb6ef9bb4" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 834F231F594A4C08B3CEF3489D5A01BB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:19Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E5CCF8F412CF4B039A134A710F303FFE Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:32Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/restart?api-version=2023-12-01+1": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "767" ], - "x-ms-client-request-id": [ "11fde72d-04d1-478e-b5da-0da1260823e4" ], + "x-ms-unique-id": [ "1143" ], + "x-ms-client-request-id": [ "1595045e-0239-4344-b247-a4ae6b385068" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_Restart" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1661,18 +1661,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f21cd51-a033-4285-ac57-265487f5de5c" ], + "x-ms-request-id": [ "fdc00a90-7897-4508-a0a6-c494907e2db8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8635f9c4-7912-4d20-a746-ef485f8081e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8cd7418c-e9d9-4d5b-8ae4-c8033d4ebca7" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c7675301-7b75-4f2e-b56b-bd0733d2630d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:c7675301-7b75-4f2e-b56b-bd0733d2630d" ], + "x-ms-correlation-request-id": [ "bc4817de-4b20-4f04-8006-9a5bb364a404" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023733Z:bc4817de-4b20-4f04-8006-9a5bb364a404" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D435951E33A149FE82970074B3648139 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DA72777D27C642C497E97365616569E4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1682,19 +1682,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "768" ], - "x-ms-client-request-id": [ "85efc717-7b61-4382-8263-7ab396e83a4d" ], + "x-ms-unique-id": [ "1144" ], + "x-ms-client-request-id": [ "8b4451ea-28fc-4573-a286-6bde0f5c626a" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1705,42 +1705,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA85744200" ], + "ETag": [ "1DCBE5BD4D80320" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "423002e5-5ac7-48d9-bb99-81a552ecb58d" ], + "x-ms-request-id": [ "3d67000b-917e-46ac-b961-1f1f51d3ffd7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "29ae4d45-85ac-4219-a3d5-f6adc89d5fab" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:29ae4d45-85ac-4219-a3d5-f6adc89d5fab" ], + "x-ms-correlation-request-id": [ "8cdfa3a0-102e-43a2-97b4-c80cdc7fc9e2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023733Z:8cdfa3a0-102e-43a2-97b4-c80cdc7fc9e2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 73E73C4D796040A79F8A15723E63A37F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F17CF38181CA43D0A3405305DC58E569 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:33 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8223" ], + "Content-Length": [ "8177" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:20.32\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:33.65\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "769" ], - "x-ms-client-request-id": [ "7c650ab0-d94d-4272-aab2-a2a53ae80fb6" ], + "x-ms-unique-id": [ "1145" ], + "x-ms-client-request-id": [ "4a448e44-4179-4fe9-975e-f637ff22250b" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1752,40 +1752,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "91683278-24cc-4220-b20a-ad893f4181ad" ], + "x-ms-request-id": [ "5b2f4535-d332-43e6-8d0b-9ad422bf15e9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/13f6072f-bd70-4fde-90ab-c468dd5655f7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5eb80da0-5b8a-4618-bf05-c324c8bfdc0f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "92e2f298-aa50-4899-9b0f-b8949e1962fb" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005020Z:92e2f298-aa50-4899-9b0f-b8949e1962fb" ], + "x-ms-correlation-request-id": [ "610826d3-db41-476f-991d-97569b9c1ade" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023734Z:610826d3-db41-476f-991d-97569b9c1ade" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF7EF2E600A94172A0ED10999201EE04 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 72B6336F39F8459BBC84D628CE71FC9F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:33Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "770" ], - "x-ms-client-request-id": [ "cd1a12e2-3071-4329-b618-6d1f0f0588fa" ], + "x-ms-unique-id": [ "1146" ], + "x-ms-client-request-id": [ "01d12090-8e7c-47bd-9a2a-ab5144b0339d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1797,41 +1797,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c83c7ba4-fc04-47b9-8d4f-175f4f1acc73" ], + "x-ms-request-id": [ "80463aaa-9e28-4649-851c-31d32d2d65b6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4272f80a-2962-423a-b52c-bc538167aaca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/feb69e46-3e3b-447a-b8ea-7fc347b87be2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1fb6f590-5023-430c-b2c7-0832ecbceefc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:1fb6f590-5023-430c-b2c7-0832ecbceefc" ], + "x-ms-correlation-request-id": [ "848d35eb-c195-4bb9-9ddf-1f813546c170" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023734Z:848d35eb-c195-4bb9-9ddf-1f813546c170" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9E94ED9916FE47E1A26A8C959C8DD43C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:20Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:20 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DC687F593C8440798F00FFE513B8BFE0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/stop?api-version=2023-12-01+5": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "771" ], - "x-ms-client-request-id": [ "916b5d9d-b355-432b-b8ad-fa81ab7a2d0b" ], + "x-ms-unique-id": [ "1147" ], + "x-ms-client-request-id": [ "49271fd4-1a8f-4dc5-a146-fd03278978ad" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_Stop" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1843,18 +1843,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "02facdbe-ecab-40f4-9893-0be501152013" ], + "x-ms-request-id": [ "416f98b8-88b1-4c68-8c2b-c47615d94383" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc54f196-efaa-42b2-ad5b-4d68cfc2b5f0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ee79dafa-fdab-4651-8b74-bcc464b67392" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8e5bda12-887d-4f0b-9d22-7bfecde7aa41" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:8e5bda12-887d-4f0b-9d22-7bfecde7aa41" ], + "x-ms-correlation-request-id": [ "aed9fbaa-22a3-4d3b-a966-cb03d47d5f73" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023734Z:aed9fbaa-22a3-4d3b-a966-cb03d47d5f73" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF3E494F22554EA2B515F5077755CA28 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E0DC262EC37E446CA16CAA0359A382F0 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:34 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -1864,19 +1864,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "772" ], - "x-ms-client-request-id": [ "ee926360-4439-4960-b17e-b8c0bc90f224" ], + "x-ms-unique-id": [ "1148" ], + "x-ms-client-request-id": [ "ac21b80d-d54c-41b1-8761-311cf590ebdd" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1887,42 +1887,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8600A380" ], + "ETag": [ "1DCBE5BD58B0C75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2af30a65-a482-4b86-bbd1-677b7b122e7e" ], + "x-ms-request-id": [ "9beb89b8-e3c6-4cc2-b2ad-6f4870b2b445" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a430cb36-5e97-4811-81f4-a3abbf359dcc" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:a430cb36-5e97-4811-81f4-a3abbf359dcc" ], + "x-ms-correlation-request-id": [ "4dec8101-ca31-4898-8669-9d63f06bee75" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023735Z:4dec8101-ca31-4898-8669-9d63f06bee75" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71D58B5772D84CC6AC99DFBE4C7DA407 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 472E8D4954F1456CAA35C8D9D558764A Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:34Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8223" ], + "Content-Length": [ "8182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:21.24\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:34.8233333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+7": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "773" ], - "x-ms-client-request-id": [ "7ef50fed-2e88-42f6-9671-a27fd2726a0a" ], + "x-ms-unique-id": [ "1149" ], + "x-ms-client-request-id": [ "9771aa47-b9d7-40a4-a874-09fb78cbe2c6" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1934,40 +1934,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "08f38f33-b915-4c77-9054-26426b370d2e" ], + "x-ms-request-id": [ "bbc4301d-e6c9-4323-951a-3cd81c357774" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9ce93d5e-1a33-4bb7-80d3-bd4a44ea87ab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/644b9aa6-5efc-4ab9-a107-af653d1bdfa4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "1f7cc763-b0ae-46de-8c56-041fedd1245f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005021Z:1f7cc763-b0ae-46de-8c56-041fedd1245f" ], + "x-ms-correlation-request-id": [ "c323ff04-a35b-4b20-a8f2-d98fb49f6bc3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023735Z:c323ff04-a35b-4b20-a8f2-d98fb49f6bc3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 95827D61F78D42E98E48DCC2517ED837 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0BE5EA17CFCA498AA206B2E8E3342B9E Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "774" ], - "x-ms-client-request-id": [ "28e13239-f32d-4359-acf2-52f1cf1e3826" ], + "x-ms-unique-id": [ "1150" ], + "x-ms-client-request-id": [ "d0fd0f95-5c98-410b-95f2-7a00e2aaed62" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -1979,41 +1979,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84bb4968-d1e8-40c2-9925-2f54d37debc8" ], + "x-ms-request-id": [ "d2a92c29-81d1-4e17-8989-3b432e53ae78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e33fb644-b324-4d13-8f55-1a8a0cbb81fb" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "0071b01e-057a-4ffd-8050-9f902c9d891d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:0071b01e-057a-4ffd-8050-9f902c9d891d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4b21b55e-b7e8-4412-8b88-6b82ee06b5b4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c7b6c214-9496-4b4e-b923-7ce59279a2fa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023735Z:c7b6c214-9496-4b4e-b923-7ce59279a2fa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44C0971038AE4092B7A0CA91C30DA624 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:21Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:21 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5A5BDF446EBA4E8BBF313B4A659234CD Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:34 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/start?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "775" ], - "x-ms-client-request-id": [ "0ea60679-6928-434a-8eb8-1a4a1d7edc3d" ], + "x-ms-unique-id": [ "1151" ], + "x-ms-client-request-id": [ "90e26128-aae7-447f-9fcd-83ddc547e8ed" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_Start" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2025,18 +2025,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "30b91922-79f6-402a-9698-5563f7faa993" ], + "x-ms-request-id": [ "d2bbebd6-cadf-4901-a2ed-676a358595ea" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f30b06f7-8fa9-41b6-ab14-2a9378354b4e" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "88874d90-1c8b-43d2-a39f-76e22986759a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:88874d90-1c8b-43d2-a39f-76e22986759a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ab413cf-f8c5-4779-9d16-713b906a9e1f" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "21319d79-b72b-4283-86fa-9ece2951d144" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023735Z:21319d79-b72b-4283-86fa-9ece2951d144" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 607D5C046AB14714BAD88FD2082427AC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BA876831243641D7A05F9C9EC9C47913 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:35 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2046,19 +2046,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "776" ], - "x-ms-client-request-id": [ "96c22cee-e959-463b-8109-35376257439e" ], + "x-ms-unique-id": [ "1152" ], + "x-ms-client-request-id": [ "fbfdf65b-f8ba-479e-86a1-edeceae9e3cf" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2069,42 +2069,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA869E5015" ], + "ETag": [ "1DCBE5BD61E8CE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ab7a18fe-dfee-4ca9-92eb-c179cde781de" ], + "x-ms-request-id": [ "0ed6cf72-1bda-49a0-8e14-0a1e0bcac222" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "219cb72a-2072-4133-81a0-f8427898a43d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:219cb72a-2072-4133-81a0-f8427898a43d" ], + "x-ms-correlation-request-id": [ "fb6aeffd-1e6d-4153-883f-391b4bd58d22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023736Z:fb6aeffd-1e6d-4153-883f-391b4bd58d22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B952314AB4114CBDA196292C2858D4C8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 551D9623F56B497F81398B3479B40343 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:35Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:35 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8228" ], + "Content-Length": [ "8177" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:22.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:35.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "777" ], - "x-ms-client-request-id": [ "7f7ff615-5ef0-4215-9d84-a80784517c9e" ], + "x-ms-unique-id": [ "1153" ], + "x-ms-client-request-id": [ "44aa6d84-63f5-4555-a049-43a658d6965f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2116,40 +2116,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8109d7a0-c5fc-4043-9ec7-eafb937ed1e4" ], + "x-ms-request-id": [ "257743d2-17f8-4ec5-843e-4ede95b6572f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cd4f638e-1d58-42ef-9354-9b61e7e1abe0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "f9b454e0-951c-4610-a42a-3caed29331af" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:f9b454e0-951c-4610-a42a-3caed29331af" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f4c03a8b-9337-4263-849d-9c5d00f126bf" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "d3e6b5c0-d203-46fa-a6e6-772a802e8c05" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023736Z:d3e6b5c0-d203-46fa-a6e6-772a802e8c05" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D92B20664609487592C6BF32FFFA888C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C3C274AED2C4FB2A86A1B1A8ADBF277 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByName \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "778" ], - "x-ms-client-request-id": [ "c43690b2-ee12-4c0e-b747-74b45f8c7ceb" ], + "x-ms-unique-id": [ "1154" ], + "x-ms-client-request-id": [ "c4d0ce2e-20c2-4a41-a62e-3eda2903ea8d" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2161,41 +2161,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e1a5ed41-cf37-4e46-aa5a-d3c04f1ac421" ], + "x-ms-request-id": [ "9da8517c-bb7f-4927-bed8-f9b9f6890b32" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/971ea52b-d92e-44e5-a645-62ae356adbb9" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a4ffa93b-d4ac-42d9-9b5c-6f1e4d263d3b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005022Z:a4ffa93b-d4ac-42d9-9b5c-6f1e4d263d3b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/73e0cafb-5dc2-4e9c-b365-8cb9ef9f6630" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "d32a3278-fa01-4bf8-8061-edf4326d0591" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023736Z:d32a3278-fa01-4bf8-8061-edf4326d0591" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9BEAAE770ECC4ED183D2B76106E9574B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:22Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3DAB1DE50B6B44F38A9D3DBA4D2AC65C Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:35 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "779" ], - "x-ms-client-request-id": [ "866c802a-3371-48dc-8bc8-e487be1b5543" ], + "x-ms-unique-id": [ "1155" ], + "x-ms-client-request-id": [ "d3f7c256-5c36-40b7-aef4-31a6c4a1446e" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2206,42 +2206,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA7FB7DA8B" ], + "ETag": [ "1DCBE5BCDCBEA2B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3784e760-3ea6-4411-b917-bfc84e417183" ], + "x-ms-request-id": [ "42e9c7e6-2958-46a3-855c-29108d159344" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "307cec8f-cb84-4032-be8a-4825034a30c6" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005023Z:307cec8f-cb84-4032-be8a-4825034a30c6" ], + "x-ms-correlation-request-id": [ "8e2f403c-9eec-4e67-8665-0770616d6b8d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023736Z:8e2f403c-9eec-4e67-8665-0770616d6b8d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9122EF78789547AAA5BEAA20890C935B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F13C96CBACDE4040A58AD15C65AD0F1A Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:10.6966667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:21.8266667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "780" ], - "x-ms-client-request-id": [ "8b52ca11-20a7-4b2d-bb38-dccfb648b594" ], + "x-ms-unique-id": [ "1156" ], + "x-ms-client-request-id": [ "3e902c76-5265-49f3-bf4c-457598a43372" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2253,40 +2253,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8fc10ae8-9dc9-4591-a423-a259cecadd9c" ], + "x-ms-request-id": [ "42e03272-461a-4ef1-aa0d-5fa3dd14b827" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b8095928-a26e-40bd-b367-8611eb9629a9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/319b1251-0b12-4724-b624-b15fa495ca91" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "f0cd8011-ea72-4e34-abec-e1319df5149d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005023Z:f0cd8011-ea72-4e34-abec-e1319df5149d" ], + "x-ms-correlation-request-id": [ "552abd6e-64b0-494b-8601-6ec3c4ebdd07" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023737Z:552abd6e-64b0-494b-8601-6ec3c4ebdd07" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FCFFA76D84A043609D76148C727E9B65 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FE6AC62D6E5745B7AA5A7AEFC76A00E1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:36Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "781" ], - "x-ms-client-request-id": [ "d2b2ad0f-a332-49ad-a272-0689882644ac" ], + "x-ms-unique-id": [ "1157" ], + "x-ms-client-request-id": [ "d4af96e8-8268-41a0-9911-44d3a6ad3099" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2298,41 +2298,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3c6e65a-60c8-4715-af42-18e33a304940" ], + "x-ms-request-id": [ "ed2415a4-32b6-4e00-8107-dd15b5595fb9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/68780373-0945-4c2e-870b-2d609a322a12" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/97a54b62-b896-4eba-b5be-3f1d7343329f" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a14c0e64-0c96-490b-8af1-97f40f7b28df" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005023Z:a14c0e64-0c96-490b-8af1-97f40f7b28df" ], + "x-ms-correlation-request-id": [ "f3263383-df53-46c6-884e-b58c8089396c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023737Z:f3263383-df53-46c6-884e-b58c8089396c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CC853C25EC634E30B9DF4C9732E6E40D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5905EA4AB41D4C2D8C82452398B94BD6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "782" ], - "x-ms-client-request-id": [ "c3340563-ee94-47b8-9691-27d382b7d74f" ], + "x-ms-unique-id": [ "1158" ], + "x-ms-client-request-id": [ "df0566ab-1960-444e-b56c-bb6e261bb851" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2344,18 +2344,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d575dcb4-f604-49b2-b418-5f8ee381a3d4" ], + "x-ms-request-id": [ "8807418b-238b-4f0c-bab9-e5c2e97af934" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d92d973c-f8c6-46bd-b5fd-0bf0da952ef2" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/46946307-9bb1-4b73-a3a0-cd7f65b8373a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c569bb53-5b9b-4c1b-9fae-5bbadec02c5f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:c569bb53-5b9b-4c1b-9fae-5bbadec02c5f" ], + "x-ms-correlation-request-id": [ "9146c937-873d-462a-ba65-5afe93dd1bad" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023737Z:9146c937-873d-462a-ba65-5afe93dd1bad" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C4A5C15431D84BA6909E49CFF2D0F6C9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:23Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B2F61F0E3D014857A167FDFA75AA4000 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2365,19 +2365,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "783" ], - "x-ms-client-request-id": [ "6fb28930-5e63-4a4e-a36c-44d8e6fe6d69" ], + "x-ms-unique-id": [ "1159" ], + "x-ms-client-request-id": [ "c998b36c-5727-4c11-9a6e-f56251245145" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2388,42 +2388,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA879E26E0" ], + "ETag": [ "1DCBE5BD7450B80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cac9afcd-57ca-47aa-a8a9-a25a6b6dfa52" ], + "x-ms-request-id": [ "0020f933-e2cc-4b4b-a6e9-051e9871f16c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "81de7ecf-c0ab-4c60-aca0-38f27e376fe1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:81de7ecf-c0ab-4c60-aca0-38f27e376fe1" ], + "x-ms-correlation-request-id": [ "4e7367d0-c06a-4f72-83cd-a335453ea5e1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023738Z:4e7367d0-c06a-4f72-83cd-a335453ea5e1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1A581BE78B4482F96810A43F24F7E12 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D9949C50A2954C5497116735A720FD2C Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:37Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8307" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:23.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:37.72\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "784" ], - "x-ms-client-request-id": [ "615b41fc-1771-48f9-9e97-c283735dd8a6" ], + "x-ms-unique-id": [ "1160" ], + "x-ms-client-request-id": [ "b217f664-1622-405c-9a94-54fd3cf5f582" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2435,40 +2435,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "870cd579-86a8-49a5-b04a-4407e897c671" ], + "x-ms-request-id": [ "2e425bd0-dee8-4156-ad25-083a36dac62e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ec57ea25-0792-438c-a2b5-5d030b94b4ac" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10f668a5-f7b5-41a5-b57c-20b9682a5ffb" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c150d937-5861-4649-b169-32f9e4451afa" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:c150d937-5861-4649-b169-32f9e4451afa" ], + "x-ms-correlation-request-id": [ "2a3dce5c-af94-4027-acc4-bed4c3305cea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023738Z:2a3dce5c-af94-4027-acc4-bed4c3305cea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B1040D3856C4E6E83452A4724FA672F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7317D71F43F1405A949580B4A4F8A594 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "785" ], - "x-ms-client-request-id": [ "70a19eca-b378-4b9d-9366-1d2a0a584b39" ], + "x-ms-unique-id": [ "1161" ], + "x-ms-client-request-id": [ "91d466c1-6aa5-4fad-9d3d-6dd7e439556a" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2480,41 +2480,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "093c1ad9-ecff-4889-91e9-3e78eb87a8d1" ], + "x-ms-request-id": [ "8d91ee14-99f1-460c-b6c5-0d1f0788863d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/59745cbd-3575-47c2-9ca8-b59b0e6b3f17" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "5c442d3b-84ab-4839-9c13-1646b66849d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005024Z:5c442d3b-84ab-4839-9c13-1646b66849d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/549cc432-c8cf-4694-9837-45855fe93180" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "a5414bb2-6065-409d-af23-ff70538e12c5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023738Z:a5414bb2-6065-409d-af23-ff70538e12c5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A3A107A9A11E447FBB57E1626373750D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F90361317484437CA7C158AC9AA6D3EF Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "786" ], - "x-ms-client-request-id": [ "8576cfab-a734-4da4-9830-0b63db7b38b8" ], + "x-ms-unique-id": [ "1162" ], + "x-ms-client-request-id": [ "41180d62-b2c7-4af5-87fe-35bcfc8c64fa" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2525,42 +2525,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA879E26E0" ], + "ETag": [ "1DCBE5BD7450B80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d7f2f740-1104-4c81-a244-9ccb35d63cb9" ], + "x-ms-request-id": [ "6749204d-4d45-4caa-9f7f-56f68328fcde" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "8b50f38d-0459-4ff4-aad7-5f7317424280" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:8b50f38d-0459-4ff4-aad7-5f7317424280" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "63de95b2-7764-4609-b7e4-e185c81be44f" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023738Z:63de95b2-7764-4609-b7e4-e185c81be44f" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7E3F04F153314BF69112A8F04B13AEC3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:24Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2C0D053F4663421391FFC8A1387223E7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8307" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:23.95\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:37.72\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "787" ], - "x-ms-client-request-id": [ "584d89d9-e7ca-4503-bf08-ecf77585e088" ], + "x-ms-unique-id": [ "1163" ], + "x-ms-client-request-id": [ "77063df1-3f2b-4684-976d-729b8ec76f84" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2572,40 +2572,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "df02e1f7-2645-4145-aeed-45fec226aca1" ], + "x-ms-request-id": [ "f72129b6-0cf2-41a5-9b34-dea5ae5594af" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3d0ba974-c00f-4f14-bd95-eceda555dc2b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "28d9cef1-c190-48de-8519-73a2f28b930d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:28d9cef1-c190-48de-8519-73a2f28b930d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0a052380-78cd-4efd-aea9-b9a7e52d91cb" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "30170d49-50d3-4ec9-a45a-3c11369fd831" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023739Z:30170d49-50d3-4ec9-a45a-3c11369fd831" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E74ABAA4D2D240F593B9E33384FD833B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B943D6593514E37AE75D9336AEB8D07 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:38Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "788" ], - "x-ms-client-request-id": [ "313a2ab2-6806-4fee-b199-538dd782361c" ], + "x-ms-unique-id": [ "1164" ], + "x-ms-client-request-id": [ "137f32d6-22ab-4910-953b-ae3879455d41" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2617,41 +2617,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dfa16633-308e-4394-8ad6-0d8cdb6ea437" ], + "x-ms-request-id": [ "d1321e13-6dc2-4b16-ac65-dab44e4cadc8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b87fa747-ee0d-42d8-882d-7ac447475948" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "15be963f-50f8-40de-9fa7-21b2a5f09519" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:15be963f-50f8-40de-9fa7-21b2a5f09519" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ff0b1e68-3a79-485c-95a1-27ab61a91f44" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a3f5fe5f-1f16-430f-8ef9-dd58abbcc335" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023739Z:a3f5fe5f-1f16-430f-8ef9-dd58abbcc335" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B7CFA519B62440B5B36539AA50A2B83A Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 56C5561DDBBE47ED98A29442114FB18B Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:38 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "789" ], - "x-ms-client-request-id": [ "97af3a28-1152-4d20-84db-e7db4570afe1" ], + "x-ms-unique-id": [ "1165" ], + "x-ms-client-request-id": [ "8a56f905-eb63-45a0-82d3-415f5a212896" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2663,18 +2663,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "192eb17c-8b92-4ffa-9b24-e976dc246cbb" ], + "x-ms-request-id": [ "add378c4-46c4-4095-bd2c-9af3b6367ed9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/accd2a8b-3429-4bab-b00f-e2a5c5f9d7e7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d6b0a610-b503-4d4c-9a19-27b4362ebb90" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "19f77364-e26d-4a59-a6a6-97c8385bb3d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005025Z:19f77364-e26d-4a59-a6a6-97c8385bb3d7" ], + "x-ms-correlation-request-id": [ "f74807ae-0ed5-420d-8c8a-c78b3e3e6351" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023739Z:f74807ae-0ed5-420d-8c8a-c78b3e3e6351" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B8EE85612F374A75B54DEAAF298E5359 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:25Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 4328FC8C022643C1B444061EBBFF6B9A Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:39 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -2684,19 +2684,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "790" ], - "x-ms-client-request-id": [ "97d4006a-134f-42b4-9631-cd802f42232b" ], + "x-ms-unique-id": [ "1166" ], + "x-ms-client-request-id": [ "497bda0c-2d92-429b-ae82-b56f164ec612" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2707,42 +2707,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA88C527B5" ], + "ETag": [ "1DCBE5BD871A4A0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "860b1bf2-7805-4cae-a94f-0958913c5cd3" ], + "x-ms-request-id": [ "1d374eb5-3bc5-47bc-8ecf-073b59f29f93" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "ab9eff41-5c65-4840-b025-2e99f3eb59c3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:ab9eff41-5c65-4840-b025-2e99f3eb59c3" ], + "x-ms-correlation-request-id": [ "ee39cdd9-f410-4cc1-880c-a7cd889d7cc5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023740Z:ee39cdd9-f410-4cc1-880c-a7cd889d7cc5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E4D648B7D69C4E8E819D1407CB6E8A58 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B00FDDDA84B34593ADF1A9A14D10467C Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:39Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:39 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8312" ], + "Content-Length": [ "8307" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:25.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:39.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "791" ], - "x-ms-client-request-id": [ "d8e5876e-5fa6-4455-a66f-fad8d90c7068" ], + "x-ms-unique-id": [ "1167" ], + "x-ms-client-request-id": [ "6743bf96-c872-4d38-a746-8036f01756eb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2754,40 +2754,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4ea0ebc8-e75f-4114-a246-09a623d98496" ], + "x-ms-request-id": [ "4d9324eb-a61d-4dcb-adb6-d0229a72048c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3cf590a-ae9b-4f17-a428-32ba5412e3bf" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab37a7e4-98ce-4d4f-a6d1-4c2effe78fff" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "bf83b2fa-a04e-4e3c-a7da-d0ebdab4ca6d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:bf83b2fa-a04e-4e3c-a7da-d0ebdab4ca6d" ], + "x-ms-correlation-request-id": [ "c3bcf2db-db1a-4981-a38f-1293ed07a3e7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023740Z:c3bcf2db-db1a-4981-a38f-1293ed07a3e7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 42EE04E143BB4EC4AFD7522B588E52A6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 57EB4E374944440AA70393175778BEBE Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:39 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "792" ], - "x-ms-client-request-id": [ "0d420138-f802-4137-9908-be985080f3da" ], + "x-ms-unique-id": [ "1168" ], + "x-ms-client-request-id": [ "93c81688-b847-4cb1-9c06-a12c0167f63c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2799,41 +2799,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "792f9360-4eab-46c1-8f24-3546782b2d64" ], + "x-ms-request-id": [ "a02180e9-29b0-4ed8-9f05-a9afeae83da8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/badec13b-6013-4df3-9b6d-9245ff3b5bb0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f095c33d-a65e-4121-9fd7-2bd1334ffab2" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "161eb94e-4f5d-49bb-9dbf-45a9d194c210" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:161eb94e-4f5d-49bb-9dbf-45a9d194c210" ], + "x-ms-correlation-request-id": [ "ec5ae401-e37e-4715-b907-b417592f1156" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023740Z:ec5ae401-e37e-4715-b907-b417592f1156" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 26139DD72F574966A851DC5422DABD22 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DE5658290F574A7A89FC3B46F2C1E881 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "793" ], - "x-ms-client-request-id": [ "ae8735f6-983a-4520-90cf-418fc8ba3ce2" ], + "x-ms-unique-id": [ "1169" ], + "x-ms-client-request-id": [ "83b9ed66-f075-4129-95d5-8a6bb7b5b0a7" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2844,42 +2844,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA88C527B5" ], + "ETag": [ "1DCBE5BD871A4A0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5d8ee3ec-bbcb-4cc9-8ce9-f26954e58d5e" ], + "x-ms-request-id": [ "0d30ae32-8c25-4d4c-a99d-20928fcbbb39" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c953e3da-d42e-492e-9b8f-50a3af6c34d3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005026Z:c953e3da-d42e-492e-9b8f-50a3af6c34d3" ], + "x-ms-correlation-request-id": [ "5b9b1c46-9f26-4c4e-9188-e87c9e2f4178" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023740Z:5b9b1c46-9f26-4c4e-9188-e87c9e2f4178" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE5325650E9946AFA175F1AB30389B3E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:26Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C05091AF892B4805A2591E2F17FAA6AE Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:40Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:40 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8312" ], + "Content-Length": [ "8307" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:25.8833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Stopped\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:39.69\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "794" ], - "x-ms-client-request-id": [ "7a849214-5513-49af-9fcd-70f9d118eec1" ], + "x-ms-unique-id": [ "1170" ], + "x-ms-client-request-id": [ "2dbd8329-9a4c-4890-afea-9f60fd7d72d3" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2891,40 +2891,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51693935-0e45-4b54-a2ff-5815639a1b5e" ], + "x-ms-request-id": [ "50fe26ed-2467-45c1-9932-e50116d72d50" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/227de884-ea48-4982-8027-0649a9876bab" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aeb341cc-0098-4ba6-8f5e-d291a4502e20" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "5eecad50-bbbb-458e-ada5-a672df753e7a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:5eecad50-bbbb-458e-ada5-a672df753e7a" ], + "x-ms-correlation-request-id": [ "31863ac2-73e1-4075-b159-935398c922de" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023741Z:31863ac2-73e1-4075-b159-935398c922de" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FB34D862CC4747EBA7613C0C20395883 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 18DCDF4B116D4403805043F90E9C87D3 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:40 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "795" ], - "x-ms-client-request-id": [ "29a52a99-fbe5-4126-9868-680872508f15" ], + "x-ms-unique-id": [ "1171" ], + "x-ms-client-request-id": [ "9fe428e9-b328-4ae5-a80d-8bf45df17a56" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2936,41 +2936,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cc3fa95d-6b8e-4244-95e3-4a7105cc7e3b" ], + "x-ms-request-id": [ "b44f56dc-c5ab-45da-8f88-cba2c4242938" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/5f1e972d-ce26-43d2-a3ed-d134fe21b4ae" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1a77b665-db20-4c72-9a4b-c963e643f209" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:1a77b665-db20-4c72-9a4b-c963e643f209" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c3eea441-a5fe-49ab-a4a0-b31c55736292" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "065ca85e-4aab-46c5-8566-6d69b9c6e86c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023741Z:065ca85e-4aab-46c5-8566-6d69b9c6e86c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E96C299323C247A3AE6E8A5E4243EB57 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A03ED59F07CB425C90F1AF9CAF9F1940 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "796" ], - "x-ms-client-request-id": [ "a187fbae-10c7-454d-ac7d-6a3b53bfbd9c" ], + "x-ms-unique-id": [ "1172" ], + "x-ms-client-request-id": [ "36d12ecf-6785-493f-a553-123e8e205d07" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -2982,18 +2982,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3d3c5e36-f2f5-46c5-b9fc-068805c3363b" ], + "x-ms-request-id": [ "854aaffa-9720-46ac-a47b-f2a38e02bdc1" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/166a941c-2b51-4eca-9a84-06c299f79604" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2736b83b-5b4c-4064-9102-f3a069785d97" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "0d5564d8-028e-4180-8cab-abbf90b96780" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:0d5564d8-028e-4180-8cab-abbf90b96780" ], + "x-ms-correlation-request-id": [ "c1b8fde4-77e3-4e89-8e23-7c3de6de40aa" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023741Z:c1b8fde4-77e3-4e89-8e23-7c3de6de40aa" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 61EAC03DEA61496681A364BEED7634C3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 19D226CF86814FA881FBBAF1A35CE676 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:41Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:41 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3003,19 +3003,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "797" ], - "x-ms-client-request-id": [ "64596278-6f30-4299-8abd-0735ac137b5c" ], + "x-ms-unique-id": [ "1173" ], + "x-ms-client-request-id": [ "11ba73d1-b2db-48fe-8647-c01b7bd3475c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3026,42 +3026,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA89D4C2F5" ], + "ETag": [ "1DCBE5BD9B5A355" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f8099818-83d8-440f-b6e7-334474d082c2" ], + "x-ms-request-id": [ "cf26b65c-7c87-44db-a2a5-3b4493245f3d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "cc19e468-e90d-4a9b-bb8c-2cc6f6a148ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005027Z:cc19e468-e90d-4a9b-bb8c-2cc6f6a148ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], + "x-ms-correlation-request-id": [ "863c587f-421a-4a30-88a1-e1c4030ecdda" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023742Z:863c587f-421a-4a30-88a1-e1c4030ecdda" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EF548A3187FA4E7CA80B7B79A5235A0F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:27Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:27 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 0FB6471C66724B2BB8B2FBCB6A48D4E7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "8312" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-iob4d5\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-007.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-py1fb4-CentralUSwebspace/sites/Functions-PowerShell-74-iob4d5\",\"repositorySiteName\":\"Functions-PowerShell-74-iob4d5\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-iob4d5.azurewebsites.net\",\"functions-powershell-74-iob4d5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-iob4d5.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iklz1o\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:27.6633333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-iob4d5\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"168.61.152.29\",\"possibleInboundIpAddresses\":\"168.61.152.29,13.89.172.20\",\"inboundIpv6Address\":\"2603:1030:10:8::14\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::14\",\"ftpUsername\":\"Functions-PowerShell-74-iob4d5\\\\$Functions-PowerShell-74-iob4d5\",\"ftpsHostName\":\"ftps://waws-prod-dm1-007.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,168.61.152.29\",\"possibleOutboundIpAddresses\":\"168.61.152.85,168.61.157.210,168.61.155.254,168.61.154.160,172.169.56.61,13.67.182.11,13.67.182.60,104.43.168.154,13.67.182.27,13.67.177.172,20.98.184.168,20.98.185.76,20.98.188.106,20.98.188.219,20.106.25.122,20.106.27.108,20.109.247.33,4.249.131.105,4.249.248.30,4.249.248.63,20.118.19.210,20.118.20.80,168.61.152.29\",\"outboundIpv6Addresses\":\"2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:7::216,2603:1030:b:5::234,2603:1030:b:b::10b,2603:1030:b:25::cf,2603:1030:b:9::107,2603:1030:b:5::236,2603:1030:b:5::237,2603:1030:b:c::162,2603:1030:b:24::fa,2603:1030:b:7::220,2603:1030:b:3::162,2603:1030:b:5::58,2603:1030:b:d::121,2603:1030:b:9::109,2603:1030:b:3::165,2603:1030:b:c::164,2603:1030:b:b::10d,2603:1030:b:c::165,2603:1030:b:24::fc,2603:1030:b:a::ee,2603:1030:b:a::ef,2603:1030:10:8::14,2603:10e1:100:2::a83d:981d\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-007\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-py1fb4\",\"defaultHostName\":\"functions-powershell-74-iob4d5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-PowerShell-74-umoz8s\",\"state\":\"Running\",\"hostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-019.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Premium-t7m8hi-CentralUSwebspace/sites/Functions-PowerShell-74-umoz8s\",\"repositorySiteName\":\"Functions-PowerShell-74-umoz8s\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-powershell-74-umoz8s.azurewebsites.net\",\"functions-powershell-74-umoz8s.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-powershell-74-umoz8s.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/serverfarms/Functions-Windows-Premium-iqzomg\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:41.8133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-PowerShell-74-umoz8s\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.86.86.144\",\"possibleInboundIpAddresses\":\"40.86.86.144,13.89.172.14\",\"inboundIpv6Address\":\"2603:1030:10:6::22\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::22\",\"ftpUsername\":\"Functions-PowerShell-74-umoz8s\\\\$Functions-PowerShell-74-umoz8s\",\"ftpsHostName\":\"ftps://waws-prod-dm1-019.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,40.86.86.144\",\"possibleOutboundIpAddresses\":\"40.86.80.44,40.86.84.38,40.86.83.211,40.86.83.201,172.170.114.216,52.165.154.148,52.165.154.195,40.122.24.103,52.165.154.161,52.165.154.200,13.86.58.28,52.154.49.33,52.154.50.225,52.154.51.42,52.154.51.109,52.154.51.148,20.37.130.44,20.37.130.99,20.37.130.101,20.37.130.102,20.37.130.108,20.37.130.119,40.86.86.144\",\"outboundIpv6Addresses\":\"2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:c::12,2603:1030:b:e::7,2603:1030:b:c::13,2603:1030:b:25::1b0,2603:1030:b:3::2cf,2603:1030:b:a::248,2603:1030:b:24::20c,2603:1030:b:25::86,2603:1030:b:7::20a,2603:1030:b:5::2ff,2603:1030:b:6::3c6,2603:1030:b:d::20e,2603:1030:b:5::303,2603:1030:b:e::e,2603:1030:b:8::48,2603:1030:b:25::1f9,2603:1030:b:12::244,2603:1030:b:c::230,2603:1030:b:13::7a,2603:1030:b:12::5,2603:1030:b:24::22a,2603:1030:10:6::22,2603:10e1:100:2::2856:5690\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-019\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Premium-t7m8hi\",\"defaultHostName\":\"functions-powershell-74-umoz8s.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "798" ], - "x-ms-client-request-id": [ "c915b400-1863-4778-976f-cd91ca478a86" ], + "x-ms-unique-id": [ "1174" ], + "x-ms-client-request-id": [ "28bfe926-a08d-42c1-a49d-4c54acc40738" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3073,40 +3073,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "51f3d687-c4ec-4ae4-9741-089ac7195f36" ], + "x-ms-request-id": [ "a86b6800-a585-4b4a-8ba0-21d48d0a7ef7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/75a5770c-d2bb-4ff7-bf48-cd4988e4184d" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "21cfe4eb-6dc1-4c34-b0e3-54fb43f9d0d7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:21cfe4eb-6dc1-4c34-b0e3-54fb43f9d0d7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c390321a-7edd-4b27-ab7f-d7c888e1545b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "3a2fe403-85d7-495d-8184-02b509b97c1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023742Z:3a2fe403-85d7-495d-8184-02b509b97c1c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4A0EFFE1C81C44988F7798EC57A55BE8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 10D9A1A5A8A045A89ACE62E9ED1AE2DC Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:41 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-iob4d5\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"powershell\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-powershell-74-umoz8s\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-iob4d5\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-PowerShell-74-umoz8s\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "799" ], - "x-ms-client-request-id": [ "cbe9d7b4-6d1a-413b-91fc-945982245212" ], + "x-ms-unique-id": [ "1175" ], + "x-ms-client-request-id": [ "832f5aef-ca55-49dd-910a-08ac11029126" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3118,41 +3118,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "84a7d582-f26b-4a48-abca-ec5b26087ae2" ], + "x-ms-request-id": [ "3b51403d-e549-4194-a379-dce800337b8d" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/01d34127-12b6-42f2-ae88-4378092b2a33" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dc2d67d2-5209-4be5-a60a-ae85974a00d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "aca57566-20fb-4ccb-b743-319489171a38" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:aca57566-20fb-4ccb-b743-319489171a38" ], + "x-ms-correlation-request-id": [ "e95e77c7-b6ea-4e89-9c61-fc8e4f405fe9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023742Z:e95e77c7-b6ea-4e89-9c61-fc8e4f405fe9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F409C6438E749B196D6C9DFFDC3C67E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B52CD2FCE7DD4B63880BD5F4C9101038 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4181" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.Web/sites/Functions-PowerShell-74-iob4d5/config/web\",\"name\":\"Functions-PowerShell-74-iob4d5\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.Web/sites/Functions-PowerShell-74-umoz8s/config/web\",\"name\":\"Functions-PowerShell-74-umoz8s\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"7.4\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "800" ], - "x-ms-client-request-id": [ "ae8da1c4-1b18-4bad-a08c-0f183ecae60e" ], + "x-ms-unique-id": [ "1176" ], + "x-ms-client-request-id": [ "6855f2c4-28f6-47e4-b944-76fe11b3b8ab" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3163,42 +3163,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8292BFEB" ], + "ETag": [ "1DCBE5BD159D8E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1fc0279c-eb3b-4aee-bd8a-203025e4a407" ], + "x-ms-request-id": [ "dd257aa8-e153-45f2-80e6-7f9b8445eea2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "4c38006d-11f8-494d-9345-89d0f4498390" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:4c38006d-11f8-494d-9345-89d0f4498390" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "399af8ad-73c4-4d32-a8e4-a422f1cd4cd1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023743Z:399af8ad-73c4-4d32-a8e4-a422f1cd4cd1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 489F9C7C9B644C3694DB871209021AC4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5664133E43BB40E8BA4F562D7D53C305 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:42Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:42 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8422" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:27.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "801" ], - "x-ms-client-request-id": [ "adcbc9bc-9a7b-425e-81af-66c71ac23fc0" ], + "x-ms-unique-id": [ "1177" ], + "x-ms-client-request-id": [ "4260f473-e01f-4eba-91c0-cfdcc64289e1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3210,40 +3210,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "07b0d80a-f777-4b9c-bad4-b0fbcc6d9243" ], + "x-ms-request-id": [ "77399ad2-3989-4bf2-8de1-b0252b5dd7c9" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/65c03318-2551-42a8-96ad-b101e29caad7" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce288eb7-538d-4cfb-8d77-50e1cf9f13d4" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "ac446d41-827c-4a80-99a1-cce70735d628" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005028Z:ac446d41-827c-4a80-99a1-cce70735d628" ], + "x-ms-correlation-request-id": [ "b85ec18d-8434-47c5-84fc-111b3b56b841" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023743Z:b85ec18d-8434-47c5-84fc-111b3b56b841" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A439D5855AB74158B99CD046B709C3E3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:28 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FFDE53F3FE4C470FBCBD1EB89B8F30EA Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "802" ], - "x-ms-client-request-id": [ "878d0b73-5b1c-41a6-9d9c-15b951c1d47d" ], + "x-ms-unique-id": [ "1178" ], + "x-ms-client-request-id": [ "743d7666-4f37-4f21-917b-7a9968772a78" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3255,41 +3255,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c80213dd-db99-4bba-8b35-1927a2d0dca0" ], + "x-ms-request-id": [ "e8aec76a-ee1f-431e-a1ba-42dcaa95e9c4" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/14a1bee4-025b-4b19-882c-cb09d7a78682" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "b6fa31c6-efd3-4dc5-a37b-c8d0c6cb1532" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:b6fa31c6-efd3-4dc5-a37b-c8d0c6cb1532" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90b98423-6e47-4616-a8c3-401ec548778f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1096" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16496" ], + "x-ms-correlation-request-id": [ "28bd7e34-52dc-4c0f-a211-0b79fbac48fc" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023743Z:28bd7e34-52dc-4c0f-a211-0b79fbac48fc" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F178F45A05AF42298EC49E7A22590EE2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:28Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 34BBA5FDC6B246618D98F11CA57D3B8F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "803" ], - "x-ms-client-request-id": [ "d4d116c6-5142-4f9a-95cc-de2edf9375d0" ], + "x-ms-unique-id": [ "1179" ], + "x-ms-client-request-id": [ "7c87065a-65de-421d-8701-c72928d4073f" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3301,18 +3301,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8fff8d3e-5817-41e1-89fe-f09646166318" ], + "x-ms-request-id": [ "0cd9d538-5a3d-4663-becf-3e7306de8a7c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/35cd85bd-ae17-443e-adc8-e215f225c969" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e6afd266-e00d-44b3-bed6-61b900febb39" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "5de488de-b473-4eba-8115-9a60c069c609" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:5de488de-b473-4eba-8115-9a60c069c609" ], + "x-ms-correlation-request-id": [ "bcaff99a-4bf2-420d-92d1-74befb029a79" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023743Z:bcaff99a-4bf2-420d-92d1-74befb029a79" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8317E4B0F8D4BF2807A4E7CAEAEAF4C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 71C1EFB14BE74D919ABA27D13FEB3384 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:43Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:43 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3322,19 +3322,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "804" ], - "x-ms-client-request-id": [ "0c9ab50e-b9f7-4f16-840c-db92442cf1ca" ], + "x-ms-unique-id": [ "1180" ], + "x-ms-client-request-id": [ "db7e1764-a0ec-4521-bc60-5faba3c57a1b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3345,42 +3345,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8292BFEB" ], + "ETag": [ "1DCBE5BD159D8E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b847d868-2bc8-4f75-9ddb-23c804ef9a15" ], + "x-ms-request-id": [ "59ef0810-4e9b-4b8e-b177-10a8a01d8ac7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "14ed6f43-5637-42d2-a92c-345a4bbd0b74" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:14ed6f43-5637-42d2-a92c-345a4bbd0b74" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "415a6437-4ac6-4d9b-b60a-279cb67b114e" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023744Z:415a6437-4ac6-4d9b-b60a-279cb67b114e" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 585C0F00F3B34B3F8A776693EA282E0C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 851599E8DAA34E54843E48B96D0911F5 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:43 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8422" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:27.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "805" ], - "x-ms-client-request-id": [ "5715d820-6c97-497f-9eed-30ea1d4b3850" ], + "x-ms-unique-id": [ "1181" ], + "x-ms-client-request-id": [ "cbe77d85-07f0-4cfc-8b9e-2d3de5d0aaca" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3392,40 +3392,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "dc5c224f-c90c-4974-8bea-41b7b20fe6ef" ], + "x-ms-request-id": [ "cbe02a98-9b4f-4424-917e-a947a96bb00c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce39f3df-f9f4-4a20-8da5-9f335aaf36b3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6957051f-2483-40a5-94c4-b56081e17ab9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "eb2b2f50-95b7-424b-99d3-b5374d53d36c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005029Z:eb2b2f50-95b7-424b-99d3-b5374d53d36c" ], + "x-ms-correlation-request-id": [ "99f74638-8658-46a6-802f-4eb392342f5c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023744Z:99f74638-8658-46a6-802f-4eb392342f5c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C56215D56F35412DAFBF4CAF5D23EDDC Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:29 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD0A6A9CBA8846698A409D954564F592 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "806" ], - "x-ms-client-request-id": [ "a54440d6-d30e-4721-bddf-1dfcb43a3ca9" ], + "x-ms-unique-id": [ "1182" ], + "x-ms-client-request-id": [ "9a09f144-03d0-4cc2-a0bc-cda1787dd8ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3437,41 +3437,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "075b5ebb-65a0-4314-aabf-42af9e83b302" ], + "x-ms-request-id": [ "759bf02b-456c-4850-82be-0f2fdd01f307" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0c32573e-5c3c-4a7b-88c3-ae87e2907326" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8d435812-8864-409a-9167-daf2fc923389" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "40d8fa6c-ebb5-453c-96b9-c48001313bde" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:40d8fa6c-ebb5-453c-96b9-c48001313bde" ], + "x-ms-correlation-request-id": [ "2e2b9095-8b8d-402b-ac58-c8bca3d2cc22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023744Z:2e2b9095-8b8d-402b-ac58-c8bca3d2cc22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22B93DE4299C42A090A80AE7920FE4D7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:29Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 485C935A7E7E47E395319421CA7D727F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:44Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "807" ], - "x-ms-client-request-id": [ "2b1892ac-5f8b-4988-a56f-3129f5128a15" ], + "x-ms-unique-id": [ "1183" ], + "x-ms-client-request-id": [ "0bc1498f-44ef-487d-9c8a-ba840762e7ee" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3482,42 +3482,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8292BFEB" ], + "ETag": [ "1DCBE5BD159D8E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ed3ef9af-0dc5-4acc-844d-d7dec334168d" ], + "x-ms-request-id": [ "4649d8b5-3083-4f77-8069-658bcad9bb43" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "eb9d6739-67e6-498a-b293-4125e5192449" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:eb9d6739-67e6-498a-b293-4125e5192449" ], + "x-ms-correlation-request-id": [ "030baf7b-c79e-4ba3-a774-3199997283c0" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023745Z:030baf7b-c79e-4ba3-a774-3199997283c0" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1BB773ED3254B97BA9F29EDA3432439 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 736C7B46D59A4B9C8AB561DBF63D7999 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8422" ], + "Content-Length": [ "8221" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:15.4866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:27.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "808" ], - "x-ms-client-request-id": [ "db036ae1-9960-4e8c-bba6-3019195de648" ], + "x-ms-unique-id": [ "1184" ], + "x-ms-client-request-id": [ "c5712cbf-adb7-41f6-9b23-fb1dc0c6791c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3529,40 +3529,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "fc1a20e3-580a-4bfb-b532-5e8f33209132" ], + "x-ms-request-id": [ "83415ae3-bf00-4931-a7cc-a7ce4c176284" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/321c629b-0aa7-446b-8b5e-66cce01b6513" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/79e2e9f4-c03a-4db3-a403-3f4bacceb1f1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "646e20ab-8578-4439-8e11-4178aad47275" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:646e20ab-8578-4439-8e11-4178aad47275" ], + "x-ms-correlation-request-id": [ "df0bdacc-878d-4533-b9dc-004556dd8397" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023745Z:df0bdacc-878d-4533-b9dc-004556dd8397" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 45EF8FBC3E0A48A79687133ABB382B43 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9A5D2D491CD34E76859444A3C5CA3687 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "809" ], - "x-ms-client-request-id": [ "f02a4099-2f18-4c14-9288-0e4bdb521f73" ], + "x-ms-unique-id": [ "1185" ], + "x-ms-client-request-id": [ "cdce20be-d213-4c40-af29-61e65b7c4fd2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3574,41 +3574,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "854221ad-a947-458c-9fa3-d6868be701da" ], + "x-ms-request-id": [ "9a27227e-448b-40d3-81c5-e7e488129692" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/acd1e425-95ea-4394-a704-3f591f425e31" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/bbf5f68d-d122-46bb-8d02-9b9e8355ae3b" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "08b6b13d-8329-4fba-b35f-699d3ead43bf" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005030Z:08b6b13d-8329-4fba-b35f-699d3ead43bf" ], + "x-ms-correlation-request-id": [ "7a4d503e-255c-440f-b944-0676722d53a5" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023745Z:7a4d503e-255c-440f-b944-0676722d53a5" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 58D9AE47892C4BB4A5539F0EB64E86D9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:30 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AE518A81DB5E4F9A9F623E6E0AA63056 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "810" ], - "x-ms-client-request-id": [ "d4fdf492-4948-4425-880c-75d1f23d8043" ], + "x-ms-unique-id": [ "1186" ], + "x-ms-client-request-id": [ "f85ce40e-4e7c-4ff6-bb13-591475d0f9bc" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3620,18 +3620,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a3cfd375-8edd-4502-a6ac-5f111939b259" ], + "x-ms-request-id": [ "f715ff35-fc73-4b05-8e4d-a6bedef8081e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a9e566c-7a65-43f2-816b-9f3848a7456d" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], - "x-ms-correlation-request-id": [ "42ce94bc-6b12-4bc3-b90b-921ef5a9e8ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:42ce94bc-6b12-4bc3-b90b-921ef5a9e8ca" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f6f8fcbb-3dbd-4496-a786-f8426a9eb8d8" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-correlation-request-id": [ "bed310d1-6fe2-4f97-bbd5-043d817f5f6a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023746Z:bed310d1-6fe2-4f97-bbd5-043d817f5f6a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6DB40FBEB3CD47C6AC447702728F7C8E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:30Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: EFE0813C2C5E4C4383335BFC0F56AECA Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:45Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:45 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3641,19 +3641,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "811" ], - "x-ms-client-request-id": [ "04813777-4755-4710-90df-8d25e9d87132" ], + "x-ms-unique-id": [ "1187" ], + "x-ms-client-request-id": [ "4c777800-5658-42cb-bc65-bdec612f7386" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3664,42 +3664,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8BD77DCB" ], + "ETag": [ "1DCBE5BDC3C9C55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a80c9fae-8175-4af6-968a-206288241e7c" ], + "x-ms-request-id": [ "23b673e3-b295-449b-883b-8c2ab4cdd305" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e1c82ad8-8946-408b-977f-2b3fb9c34104" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:e1c82ad8-8946-408b-977f-2b3fb9c34104" ], + "x-ms-correlation-request-id": [ "cb530c62-4745-44a5-a17f-cf59a13851ec" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023746Z:cb530c62-4745-44a5-a17f-cf59a13851ec" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 13932BB57609449CAD43815966266429 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8BE59DC3A57D490BA062A3C0EA746DBB Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:45 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8422" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:31.0366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:46.0533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "812" ], - "x-ms-client-request-id": [ "e5988aea-1a3f-447f-a777-b4e5d4daa91f" ], + "x-ms-unique-id": [ "1188" ], + "x-ms-client-request-id": [ "044c39b1-2a35-4e02-b78e-dff4c309baa8" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3711,40 +3711,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3c3ba492-fb71-4ff9-960d-106007095846" ], + "x-ms-request-id": [ "7cfe98de-2164-4cc0-8738-4ac53cd88caa" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3fe94f1b-40bf-4e8a-b0af-913379f43a46" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "aff73289-4930-4bd8-9ed7-3351773a0d94" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:aff73289-4930-4bd8-9ed7-3351773a0d94" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3cf13bdd-f393-4929-8c3c-0c26b3dd18db" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "dbe5bcfc-bf94-4346-94d6-aa2b240fa973" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023746Z:dbe5bcfc-bf94-4346-94d6-aa2b240fa973" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B164ACF2DEC4A74A754DDC7CF0F825B Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 979B6D2A4075463587A02DDDC3D263FF Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "813" ], - "x-ms-client-request-id": [ "464899b5-9bf6-4a6f-8524-46ef6cdb7999" ], + "x-ms-unique-id": [ "1189" ], + "x-ms-client-request-id": [ "839eadae-7279-485b-a26a-1e3d37bf78c1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3756,41 +3756,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b64293b5-de8d-4722-ae2f-df9b342ee5bc" ], + "x-ms-request-id": [ "287ad62b-45e3-4fef-ad78-3f3b4c33be49" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8240b98a-3b5b-46d5-8587-9bf57ec47f70" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7f72911e-2d59-4cbe-8bc1-88dce89311dc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "e9028831-59b6-4619-a24b-aa1c687ba407" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005031Z:e9028831-59b6-4619-a24b-aa1c687ba407" ], + "x-ms-correlation-request-id": [ "c219d8e3-0c76-427d-9b7b-1b943c2e4bd8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023746Z:c219d8e3-0c76-427d-9b7b-1b943c2e4bd8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5F57E16729194043AB0853624D5C7451 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:31 GMT" ] + "X-MSEdge-Ref": [ "Ref A: DD30F35272F348B9A86554315CA0130F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:46 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "814" ], - "x-ms-client-request-id": [ "d19e9e00-d2fc-436c-8f40-18dbd4fab3ce" ], + "x-ms-unique-id": [ "1190" ], + "x-ms-client-request-id": [ "34d5a877-0bcf-471b-aa95-3f05b498822c" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3801,42 +3801,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8BD77DCB" ], + "ETag": [ "1DCBE5BDC3C9C55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "3e4b5f58-494f-4044-915d-9c533a750908" ], + "x-ms-request-id": [ "474d35d4-a64e-49bd-a480-ccfe7600a94a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "1bcde693-d9f8-424c-a73f-f13dc4772e1a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:1bcde693-d9f8-424c-a73f-f13dc4772e1a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "06d95dae-868a-4efe-b43d-bea5fe326aef" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023747Z:06d95dae-868a-4efe-b43d-bea5fe326aef" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9ED3E1A26E284D99A90F57FFE007CA5F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:31Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A52DAE551E8E4D54BF727ABED4891DD9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:46Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:46 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8422" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:31.0366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Stopped\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:46.0533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "815" ], - "x-ms-client-request-id": [ "a6971f6c-ec8e-4f0a-bcc3-137b3c63697d" ], + "x-ms-unique-id": [ "1191" ], + "x-ms-client-request-id": [ "e5ae76fc-f305-48c2-87cc-22c3c5aaee32" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3848,40 +3848,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af2161e9-5c1e-473c-9b31-7f3ced26808a" ], + "x-ms-request-id": [ "dbc2595e-e105-49d3-b269-5956f20f3127" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e2965e58-1c0c-4fca-948f-ee066e3bcba6" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "d9f36927-1942-415a-b4cd-55aede21aa9d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:d9f36927-1942-415a-b4cd-55aede21aa9d" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/cc67aad2-d36c-45fc-a8ea-7aa25fb9b249" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "2583867a-fc20-4e1f-9494-97fe2625259c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023747Z:2583867a-fc20-4e1f-9494-97fe2625259c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 358B913B2E3B46839AA3A0BD58B27B70 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 807A6CD6B9B84EAA8FA3194245E4F49E Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "816" ], - "x-ms-client-request-id": [ "1ce16958-7f27-43d7-90f8-c53820bb8e1b" ], + "x-ms-unique-id": [ "1192" ], + "x-ms-client-request-id": [ "d9d791aa-40db-4789-bcb0-56825b0a79ff" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3893,41 +3893,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e7749a73-8a58-44c7-b976-b9e3d0d51676" ], + "x-ms-request-id": [ "ae71bb28-d631-44e6-a393-0be5b5947415" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d640c3d-3497-4fa3-8782-66104f370c4e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1fc2c36f-0864-431e-bef1-7b46f84be44e" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "af891d2e-dc99-4541-be07-dc897890a73a" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:af891d2e-dc99-4541-be07-dc897890a73a" ], + "x-ms-correlation-request-id": [ "ba688d06-9bcc-4fed-b2f2-eb5241c277ea" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023747Z:ba688d06-9bcc-4fed-b2f2-eb5241c277ea" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7401E08AAD0E4FDCAA2EFC416337CE22 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C16B4AB9B1764E8E826275E3FC2775A8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:47 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "817" ], - "x-ms-client-request-id": [ "f3e1702a-c8cd-44ec-800f-61605a29424c" ], + "x-ms-unique-id": [ "1193" ], + "x-ms-client-request-id": [ "ba4fa5b1-70c2-4272-8d20-1987bbd0b481" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3939,18 +3939,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "364429a3-4b43-41bd-b878-653f43745cf4" ], + "x-ms-request-id": [ "a5d51218-a881-4116-9193-394226c32474" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8e7cdb8c-65b0-4ec4-83b6-7559eca8f6d1" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12cd882d-9846-490d-b756-94f857664b66" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "8e9d6baa-6e7f-487d-b08c-0a4c26120a6f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005032Z:8e9d6baa-6e7f-487d-b08c-0a4c26120a6f" ], + "x-ms-correlation-request-id": [ "c4cdbcf0-b890-4d33-9310-4bc403f7bf0c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023748Z:c4cdbcf0-b890-4d33-9310-4bc403f7bf0c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 71FD9B39BFD04355904D8B5BC79C775C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:32Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:32 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8A7AD4C78185471EB7EDBBC325A5347D Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:47Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:47 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -3960,19 +3960,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "818" ], - "x-ms-client-request-id": [ "ae4417cc-b7b9-4d99-b9e0-dced4506af37" ], + "x-ms-unique-id": [ "1194" ], + "x-ms-client-request-id": [ "f3688617-16a9-41df-9b4f-f45045d50226" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -3983,42 +3983,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8CED338B" ], + "ETag": [ "1DCBE5BDD93EEF5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "af8f0a67-6a5d-42bb-aa4a-159cba318a52" ], + "x-ms-request-id": [ "fd23af94-ca21-4ba6-ba47-c0ae85ca9749" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c98baf95-6d14-483b-80b3-1934f3b777ca" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:c98baf95-6d14-483b-80b3-1934f3b777ca" ], + "x-ms-correlation-request-id": [ "bd5da9b7-9af8-4ee4-8dc3-831712eb818b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023748Z:bd5da9b7-9af8-4ee4-8dc3-831712eb818b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 65111843F60B4C5BBE1E85A64E4C9B04 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 53FCDAE87BFE40AB8866E66B14D684C7 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:48 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8422" ], + "Content-Length": [ "8226" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-jus0p7\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-171.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-mr3bc4-CentralUSwebspace-Linux/sites/Functions-Node-22-jus0p7\",\"repositorySiteName\":\"Functions-Node-22-jus0p7\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-jus0p7.azurewebsites.net\",\"functions-node-22-jus0p7.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-jus0p7.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-jus0p7.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-sjhkza\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:32.8566667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-jus0p7\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.22\",\"possibleInboundIpAddresses\":\"13.89.172.22\",\"inboundIpv6Address\":\"2603:1030:10:8::13\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::13\",\"ftpUsername\":\"Functions-Node-22-jus0p7\\\\$Functions-Node-22-jus0p7\",\"ftpsHostName\":\"ftps://waws-prod-dm1-171.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,13.89.172.22\",\"possibleOutboundIpAddresses\":\"52.238.241.228,135.233.16.133,135.233.65.131,64.236.18.133,52.242.225.51,172.169.202.170,40.77.63.65,104.43.162.5,40.77.61.181,23.99.229.97,23.100.80.194,168.61.160.245,23.101.127.123,23.100.85.210,23.100.85.223,20.109.236.171,20.109.238.203,20.109.239.45,20.109.239.58,20.109.239.66,20.109.239.82,20.109.239.181,20.109.239.203,20.109.239.211,20.9.97.42,20.9.99.33,20.9.99.34,13.89.172.22\",\"outboundIpv6Addresses\":\"2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:6::3c5,2603:1030:b:13::1e9,2603:1030:b:d::197,2603:1030:b:12::19f,2603:1030:b:b::180,2603:1030:b:9::9e,2603:1030:b:9::a2,2603:1030:b:8::16a,2603:1030:b:7::2e4,2603:1030:b:e::6f,2603:1030:b:f::177,2603:1030:b:7::2e5,2603:1030:b:6::115,2603:1030:b:5::3b9,2603:1030:b:f::178,2603:1030:b:7::2e6,2603:1030:b:5::3ba,2603:1030:b:f::179,2603:1030:b:6::20b,2603:1030:b:8::16b,2603:1030:b:b::17e,2603:1030:b:12::19e,2603:1030:b:b::17f,2603:1030:b:6::3c4,2603:1030:b:d::196,2603:1030:b:7::2e7,2603:1030:b:7::90,2603:1030:10:8::13,2603:10e1:100:2::d59:ac16\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-171\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-mr3bc4\",\"defaultHostName\":\"functions-node-22-jus0p7.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Node-22-lzxr8g\",\"state\":\"Running\",\"hostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-135.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Premium-1tq5io-CentralUSwebspace-Linux/sites/Functions-Node-22-lzxr8g\",\"repositorySiteName\":\"Functions-Node-22-lzxr8g\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-node-22-lzxr8g.azurewebsites.net\",\"functions-node-22-lzxr8g.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Node|22\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-node-22-lzxr8g.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/serverfarms/Functions-Linux-Premium-n36iqr\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:48.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Node-22-lzxr8g\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"ElasticPremium\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"40.122.36.65\",\"possibleInboundIpAddresses\":\"40.122.36.65\",\"inboundIpv6Address\":\"2603:1030:10:7::12\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:7::12\",\"ftpUsername\":\"Functions-Node-22-lzxr8g\\\\$Functions-Node-22-lzxr8g\",\"ftpsHostName\":\"ftps://waws-prod-dm1-135.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,40.122.36.65\",\"possibleOutboundIpAddresses\":\"104.43.242.206,40.113.219.125,40.113.227.212,40.113.225.31,40.113.229.114,40.113.220.255,40.113.225.253,40.113.231.60,104.43.253.242,20.106.9.38,20.106.9.51,20.106.9.103,20.106.9.161,20.106.10.111,20.106.10.193,20.106.11.2,20.106.11.15,20.106.11.29,20.106.11.30,20.106.11.55,20.106.11.57,40.122.36.65\",\"outboundIpv6Addresses\":\"2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:9::145,2603:1030:b:a::14c,2603:1030:b:7::7a,2603:1030:b:e::130,2603:1030:b:d::fe,2603:1030:b:12::16a,2603:1030:b:d::ff,2603:1030:b:8::140,2603:1030:b:25::108,2603:1030:b:13::163,2603:1030:b:5::3bf,2603:1030:b:f::147,2603:1030:b:6::394,2603:1030:b:b::142,2603:1030:b:d::160,2603:1030:b:5::3c2,2603:1030:b:f::14b,2603:1030:b:d::161,2603:1030:b:25::109,2603:1030:b:9::146,2603:1030:b:6::395,2603:1030:10:7::12,2603:10e1:100:2::287a:2441\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-135\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Premium-1tq5io\",\"defaultHostName\":\"functions-node-22-lzxr8g.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "819" ], - "x-ms-client-request-id": [ "1fc50794-59b4-4120-afe4-03e2d5e5ccb4" ], + "x-ms-unique-id": [ "1195" ], + "x-ms-client-request-id": [ "29df7574-dada-4b26-a7bb-4b993c7fe67e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4030,40 +4030,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9f671940-48bd-4ce7-869b-4d482f668dbc" ], + "x-ms-request-id": [ "5447dd4f-6c04-48a3-b57a-0846533175c8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d1235912-3a87-485c-95a8-840703cb2cbb" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d025d9e0-5964-4837-a081-6a24386ea7a8" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "95553a6c-5128-406c-8fd5-e935226525d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:95553a6c-5128-406c-8fd5-e935226525d1" ], + "x-ms-correlation-request-id": [ "7fff16f4-e295-427c-9b88-92a56f3837b9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023749Z:7fff16f4-e295-427c-9b88-92a56f3837b9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 00C3FF0E2DB14F39BD0574AEDAF497F8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6B12A381890A4D36ABEF5D273F43CF2A Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:48Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1201" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-jus0p7\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"node\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-node-22-lzxr8g\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-jus0p7\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Node-22-lzxr8g\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "820" ], - "x-ms-client-request-id": [ "338b1825-6924-4691-b8e9-024b5122bf55" ], + "x-ms-unique-id": [ "1196" ], + "x-ms-client-request-id": [ "4004c046-243c-44aa-8ceb-58ea35077faa" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4075,41 +4075,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "4059298d-d43a-4f44-9a5a-bb5be75faaa6" ], + "x-ms-request-id": [ "5b233767-3824-485c-99c5-43c12dfe15b2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d30ac08-4e0f-4974-9778-5e880f7aa6fe" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2cd1e2f3-4778-490f-bbc0-9f5ab9b12338" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "ecb0c328-1d3f-4c4d-baf0-4b92f4cbb481" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:ecb0c328-1d3f-4c4d-baf0-4b92f4cbb481" ], + "x-ms-correlation-request-id": [ "512f5c4d-7135-4d37-b70a-87d7218ee66d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023749Z:512f5c4d-7135-4d37-b70a-87d7218ee66d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 153F99FD467E4A8AA61E6959E1D0F4CB Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 25627971D5B94C81BACED6C4BBD6DA15 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:48 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4172" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-mr3bc4/providers/Microsoft.Web/sites/Functions-Node-22-jus0p7/config/web\",\"name\":\"Functions-Node-22-jus0p7\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Premium-1tq5io/providers/Microsoft.Web/sites/Functions-Node-22-lzxr8g/config/web\",\"name\":\"Functions-Node-22-lzxr8g\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Node|22\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":1,\"functionAppScaleLimit\":0,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":1,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "821" ], - "x-ms-client-request-id": [ "1fbf237c-2d68-431f-acd1-f4495f8c1d1d" ], + "x-ms-unique-id": [ "1197" ], + "x-ms-client-request-id": [ "92d40ef8-c60d-4fad-9abc-f872e4d2e9ef" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4120,42 +4120,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA84B78EB5" ], + "ETag": [ "1DCBE5BD3AAE7CB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bdccb701-8d13-40a6-82c2-b829fc6e1885" ], + "x-ms-request-id": [ "6ffa6890-bbfd-4f49-b32a-72c480f438f8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "d77e997b-a143-49c4-9f0f-b8622d461dea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005033Z:d77e997b-a143-49c4-9f0f-b8622d461dea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "6bc3f2ab-7320-48b3-8600-6dd726af9909" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023749Z:6bc3f2ab-7320-48b3-8600-6dd726af9909" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2B42F7CEDB6940D1854172FAC1E5A5B7 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:33Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:33 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 2643B9FE97F04CB4B2E387A2B3A4CC5F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:49 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8544" ], + "Content-Length": [ "8026" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:19.0833333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:31.6766667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "822" ], - "x-ms-client-request-id": [ "da456491-01b7-4818-8f1f-efa9db51540a" ], + "x-ms-unique-id": [ "1198" ], + "x-ms-client-request-id": [ "d5e79304-a9dd-479b-8ec8-f9d38cb34a72" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4167,40 +4167,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "aa36711f-af4b-4819-bd00-afa8baf0936f" ], + "x-ms-request-id": [ "c82d6dee-b03c-4947-b93a-81625adafd15" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/70e037f7-f197-4447-ba9e-80c2ce1386f3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b3cf82f6-0be9-4b0b-b42f-d443449dcbf9" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "11f63b15-930a-402c-8d3d-8c8ca558b55b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005034Z:11f63b15-930a-402c-8d3d-8c8ca558b55b" ], + "x-ms-correlation-request-id": [ "a5f880a8-335e-482d-9b67-b7d7bbca16b2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023749Z:a5f880a8-335e-482d-9b67-b7d7bbca16b2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D21D1109165C45C99298F048A12F0DC8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 55548E50AD594815893BB15C2DEA86F4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "823" ], - "x-ms-client-request-id": [ "b6ca6dd5-1bac-42cd-8c7f-d42e9d48fbc5" ], + "x-ms-unique-id": [ "1199" ], + "x-ms-client-request-id": [ "ab95fe73-3817-4dfe-8cb4-ab7659e4eb6c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4212,41 +4212,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1877579c-36db-4382-b9f2-2f40f43dab1c" ], + "x-ms-request-id": [ "03af74b3-2ff0-4100-9803-b89fe7f19ab8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ab77e119-48a4-4eda-8319-d9f6a4079e63" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/b574be7e-f200-4d51-93ae-d3607ef56aff" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "4cda7410-0821-4c56-8a41-bc79d08d6e04" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005034Z:4cda7410-0821-4c56-8a41-bc79d08d6e04" ], + "x-ms-correlation-request-id": [ "f77b4115-06bc-46fe-8570-a9953c6eb1f9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023750Z:f77b4115-06bc-46fe-8570-a9953c6eb1f9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0D6B1529BA624ABF81FD3D8DA945FB6E Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:34 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 52E919B798DE462DA8937CAA21EC3C2E Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:49Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:49 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "824" ], - "x-ms-client-request-id": [ "39740f36-5fa8-400b-b1cd-0e90695cde2a" ], + "x-ms-unique-id": [ "1200" ], + "x-ms-client-request-id": [ "58e456dd-e6f1-4148-a949-11af4d9d2409" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4258,18 +4258,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "49494b3c-628b-41d1-bedb-a9f6b8868e52" ], + "x-ms-request-id": [ "9dc08ea7-2d9f-4422-9121-a113b68da1c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/0555fbc9-60f7-4ae0-badc-414480baecee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e3807e2e-f239-4da7-9cb9-08cb90422485" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "1390de36-6366-4df7-9105-0dd75e5c645d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005035Z:1390de36-6366-4df7-9105-0dd75e5c645d" ], + "x-ms-correlation-request-id": [ "b0302cc4-c3f4-4a03-a5ab-35c44e9e87c1" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023750Z:b0302cc4-c3f4-4a03-a5ab-35c44e9e87c1" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4BB053557794E5696CF65DEDD888880 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:34Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1CE83BCED508499C97CE188C9AAE553B Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:49 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4279,19 +4279,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "825" ], - "x-ms-client-request-id": [ "a5d0a9b8-2da4-4846-83cb-2f01977ef612" ], + "x-ms-unique-id": [ "1201" ], + "x-ms-client-request-id": [ "70d202b3-a12f-4038-97f3-7a20f36d2170" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4302,42 +4302,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8E3D6740" ], + "ETag": [ "1DCBE5BDECCBD15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5a3f7e25-d511-4e69-99d1-850664fae644" ], + "x-ms-request-id": [ "3a5c42f5-be8a-4184-983d-fdb567b49a78" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "64ca2f10-5b44-44b6-88ab-33220f5266f3" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005035Z:64ca2f10-5b44-44b6-88ab-33220f5266f3" ], + "x-ms-correlation-request-id": [ "a8a73eac-283d-472d-a36a-af97a735512b" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023750Z:a8a73eac-283d-472d-a36a-af97a735512b" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CB644F368F1A410FAEE1B60C7237CC91 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 580F8ABB042F4C04B3627596FEA5254A Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8539" ], + "Content-Length": [ "8026" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:35.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:50.3533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "826" ], - "x-ms-client-request-id": [ "90cc661c-90ca-4776-b014-0bd17477ed33" ], + "x-ms-unique-id": [ "1202" ], + "x-ms-client-request-id": [ "c6f06b5b-5512-4747-92db-7f46a4f44c56" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4349,40 +4349,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "1ebf9bc7-3660-4300-9763-950d8d991300" ], + "x-ms-request-id": [ "b0055f9c-ec30-4b76-b529-8630931cfe48" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2fd06ca0-87e8-4c3e-b51d-60a81c44f077" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a9c977af-7641-4302-87d3-6ea1fcacdd7b" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "0eee969b-afc0-43f9-b9f5-5f5823dcc838" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005035Z:0eee969b-afc0-43f9-b9f5-5f5823dcc838" ], + "x-ms-correlation-request-id": [ "a529a73f-729a-4f5b-be18-619494cdeade" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023750Z:a529a73f-729a-4f5b-be18-619494cdeade" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F6DFF0B71EC649F4914E701D271F190C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:35Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:35 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 16AA311457AA4DADB7F9FA3455E1E8E1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:50Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "827" ], - "x-ms-client-request-id": [ "87fbbbd5-e193-4c67-bf8b-a643b87c6b17" ], + "x-ms-unique-id": [ "1203" ], + "x-ms-client-request-id": [ "961f2823-5a39-4ef5-ba07-edf17f9a7f53" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4394,41 +4394,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a692af47-3eee-44ff-a772-749ccd8ee4ee" ], + "x-ms-request-id": [ "4f8e78c4-41f4-4bf8-9adc-f0fce4284341" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/e5939c03-9570-46c5-b303-fe471f987b28" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07bb40b1-1826-42b1-ae50-3284da842839" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:07bb40b1-1826-42b1-ae50-3284da842839" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c779fdb7-466f-4127-990c-c4834d647b31" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "986dbb43-9b5c-4dac-b1cb-af267d43ac1c" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023751Z:986dbb43-9b5c-4dac-b1cb-af267d43ac1c" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E897956A1874B479FC00BB80C087EB4 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:36Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7BACE5812DBF4E76A93E017153917C9B Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:50 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "828" ], - "x-ms-client-request-id": [ "de839a03-f2ad-414a-93fc-eefea5d95dd6" ], + "x-ms-unique-id": [ "1204" ], + "x-ms-client-request-id": [ "c5d33ad9-1559-47b2-9942-3cc15569fc62" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4439,42 +4439,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA8E3D6740" ], + "ETag": [ "1DCBE5BDECCBD15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "a4305bef-f03a-459d-a389-00b69b28d109" ], + "x-ms-request-id": [ "482c5848-654f-47cd-bdaf-3d59a0b5f4fe" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "6c564332-082d-487c-8e2a-c2e2c58e96a8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:6c564332-082d-487c-8e2a-c2e2c58e96a8" ], + "x-ms-correlation-request-id": [ "20b7ce14-808f-4049-954c-b9bf14227c64" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023751Z:20b7ce14-808f-4049-954c-b9bf14227c64" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 225D1CDC09E74D119D894F1AA959B02D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 51124D088C87458EAB33A26369D4B8C1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:50 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8539" ], + "Content-Length": [ "8026" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:35.06\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:50.3533333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "829" ], - "x-ms-client-request-id": [ "a9707940-70cc-407d-afd8-b8cd1dccbe87" ], + "x-ms-unique-id": [ "1205" ], + "x-ms-client-request-id": [ "1f997823-07d9-4fff-af97-1075215f819f" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4486,40 +4486,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5867753e-ab31-404e-b852-6b9d9a1b954f" ], + "x-ms-request-id": [ "aec5494c-0f4b-4134-aa25-33a2feb1b84b" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/22cf271b-39e7-483f-8c5c-40cce245c924" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/398131ba-23df-4511-a401-1493948c63d2" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "db77f002-8cd1-4ef2-ad67-33eec599d963" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:db77f002-8cd1-4ef2-ad67-33eec599d963" ], + "x-ms-correlation-request-id": [ "3cbfdb2a-327b-4c14-aeb5-4ffd5b175a2d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023751Z:3cbfdb2a-327b-4c14-aeb5-4ffd5b175a2d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B074022B02CD4690812576FD75BEE822 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C31010FCCDA64452AE7C8FBFF2876D1C Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "830" ], - "x-ms-client-request-id": [ "a8a1d216-ef33-42a2-8c6f-c5f05dea4faf" ], + "x-ms-unique-id": [ "1206" ], + "x-ms-client-request-id": [ "c086391e-2fed-4928-8b28-2d94f512c726" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4531,41 +4531,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "434e0135-7198-40bc-954b-ee8ee562906e" ], + "x-ms-request-id": [ "7fc5fe55-9805-4e84-8637-bc5c7550c3b8" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ce596246-7de0-4e2a-bc8f-85f598a09bf3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a32bc934-0f1b-4f50-b9c5-d76ca2bc82be" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "df0fbbca-4535-435c-9255-be86aa680567" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005038Z:df0fbbca-4535-435c-9255-be86aa680567" ], + "x-ms-correlation-request-id": [ "b8da1f5e-2b2e-4ce5-8463-5f05d0241bf9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023752Z:b8da1f5e-2b2e-4ce5-8463-5f05d0241bf9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8B4D2476A2B747D993A8B838A8A1E335 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:38Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:38 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCF54DAA2158404BAB88214D4B73CACF Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:51Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:51 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "831" ], - "x-ms-client-request-id": [ "c05d052a-4d16-4fc5-b9bd-190245c515fa" ], + "x-ms-unique-id": [ "1207" ], + "x-ms-client-request-id": [ "ecd87d9f-4e4b-48e7-8934-fa04be0c0cdc" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4577,18 +4577,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "bda992c7-048d-4941-aca6-062c5f991fe3" ], + "x-ms-request-id": [ "334c4623-bfe2-4093-9072-8426568877ae" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ab87975-1986-4403-aa45-d1ddc5613895" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2973495c-c601-4778-8137-54ec27145071" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "d627583b-aca1-4e67-beee-c7b4a95c48f8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005039Z:d627583b-aca1-4e67-beee-c7b4a95c48f8" ], + "x-ms-correlation-request-id": [ "7de3b9d3-cdd0-4fff-91c8-b48b371db331" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023752Z:7de3b9d3-cdd0-4fff-91c8-b48b371db331" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4FFD8EEBECE445BBBD769B695DEB0C60 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 97DDD3D84F844239B3B11082799C599F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:51 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4598,19 +4598,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "832" ], - "x-ms-client-request-id": [ "5fddc781-c744-4183-81fe-287b05d31f7b" ], + "x-ms-unique-id": [ "1208" ], + "x-ms-client-request-id": [ "1a702788-68f9-45fe-9684-1e5286ae046b" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4621,42 +4621,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA90BE45C0" ], + "ETag": [ "1DCBE5BDFFD67E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "761b49df-90ad-4e0f-bdef-fc99f783e083" ], + "x-ms-request-id": [ "196f235b-3ded-4ea4-8706-4db608c807b7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "2ee19585-e7a4-45e2-9476-b2454acb283f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005039Z:2ee19585-e7a4-45e2-9476-b2454acb283f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "147d697c-106e-42fc-95c9-277225f66cf2" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023752Z:147d697c-106e-42fc-95c9-277225f66cf2" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4044B205CADF4D469D7CE302F5B35306 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:39 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D4583C64CD1F4E509F3ED0A392564C92 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:52 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8539" ], + "Content-Length": [ "8021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:39.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:52.35\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "833" ], - "x-ms-client-request-id": [ "e6d8b278-6050-474f-a529-be4314f10551" ], + "x-ms-unique-id": [ "1209" ], + "x-ms-client-request-id": [ "bb271e11-dccb-4b7c-abf1-4a16bf83f38c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4668,40 +4668,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "75fdb22f-badc-44b1-b431-7b9c6b131350" ], + "x-ms-request-id": [ "b3a2dbbb-89e0-473f-a9fc-1ed59084f307" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f0211dae-3d13-4e8a-a1ab-c873f0064f07" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/80761f0b-919d-4a9a-ab28-222f6b2655b1" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "c87b20ff-7e03-4cdc-bb5e-25228689f15c" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005040Z:c87b20ff-7e03-4cdc-bb5e-25228689f15c" ], + "x-ms-correlation-request-id": [ "9b9892ae-38a7-44a6-b807-8d6ba7886cb7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023753Z:9b9892ae-38a7-44a6-b807-8d6ba7886cb7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F53D0CA0545044DBB0A74339FCF60FA2 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:39Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9201B8C76F3A450C8DF4E4AFD560EA9C Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:52Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "834" ], - "x-ms-client-request-id": [ "405d91aa-0fae-4190-94b6-e807af36c53d" ], + "x-ms-unique-id": [ "1210" ], + "x-ms-client-request-id": [ "d6ff59be-9351-4d35-b79d-123424c9b8b2" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4713,41 +4713,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8e41e923-a80f-4118-874d-8f94aab45a51" ], + "x-ms-request-id": [ "99f7c1f3-f11e-4a6e-aba8-af21a4a28d1c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/96054e67-56b1-4cb0-85ef-a73c864061bf" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "2b1e96ff-db0d-4e4d-b99e-e78f673b5c10" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005040Z:2b1e96ff-db0d-4e4d-b99e-e78f673b5c10" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2e674641-aa79-430d-af5d-883b8587854c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "da6064a2-46e1-43b0-812c-c0d2915edb12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023753Z:da6064a2-46e1-43b0-812c-c0d2915edb12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5E28556DF534A2AB5DAF9D142638869 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:40 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 13AB723C1E454781971C97F1CBED3FE9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:52 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "835" ], - "x-ms-client-request-id": [ "f7aa1845-fb80-4283-b73c-4cf8755a6252" ], + "x-ms-unique-id": [ "1211" ], + "x-ms-client-request-id": [ "e08ab7fc-d1a4-44dd-8019-2d3404838692" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4758,42 +4758,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA90BE45C0" ], + "ETag": [ "1DCBE5BDFFD67E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "9aaee4d1-054a-407d-9e44-cae9afc0633a" ], + "x-ms-request-id": [ "130643de-9f7c-4b40-bb0f-7069f494d149" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "7b252c3b-0d3c-426d-8988-d768099c7ac0" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005041Z:7b252c3b-0d3c-426d-8988-d768099c7ac0" ], + "x-ms-correlation-request-id": [ "f4e18286-aabc-4fe2-aa00-9b4a83dff6f7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023754Z:f4e18286-aabc-4fe2-aa00-9b4a83dff6f7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 756B88DF208342F2B734BF90D49939F3 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:40Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 75BBFCA781654F7E98AEB7C368A640F1 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:53Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8539" ], + "Content-Length": [ "8021" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:39.26\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:52.35\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "836" ], - "x-ms-client-request-id": [ "255aabd7-3f7b-456d-8fb8-541534f40aac" ], + "x-ms-unique-id": [ "1212" ], + "x-ms-client-request-id": [ "9061d88d-e92e-4341-90a3-49ce20a353bb" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4805,40 +4805,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "ffca6a23-3b76-46cc-baed-0ecc345cd79b" ], + "x-ms-request-id": [ "32590f4c-234d-4a94-a409-150c9a9f95c3" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f1de1121-6dd9-4ef3-ac94-a1666633df1b" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ea5d6447-4676-4076-9978-26c2d2f757fd" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "85ca6f6b-9b0e-4ef3-86d8-22d980887e42" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005041Z:85ca6f6b-9b0e-4ef3-86d8-22d980887e42" ], + "x-ms-correlation-request-id": [ "f83756fd-b1ba-4f35-aee1-365697952f57" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023754Z:f83756fd-b1ba-4f35-aee1-365697952f57" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 089A8755E7774F97B139CB8AE498EE1C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:41 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 343EBA90B0174F469DB8C6143474183B Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "837" ], - "x-ms-client-request-id": [ "3fa1583c-30e7-45c4-a99c-99cbcc17750b" ], + "x-ms-unique-id": [ "1213" ], + "x-ms-client-request-id": [ "5e917dad-ee6f-472e-94cd-8226eaaa58a9" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4850,41 +4850,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d939a575-7f57-4083-9282-1be6f9bdbb0e" ], + "x-ms-request-id": [ "16d1784d-2657-4792-813d-133765537b6c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d2bf8d36-28fe-410d-b4be-735783248c26" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/c6b9fb4c-7488-42b4-80bc-396bd963557a" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "96fee4e9-9b90-48e1-8270-8c8ff9e7ffa7" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005042Z:96fee4e9-9b90-48e1-8270-8c8ff9e7ffa7" ], + "x-ms-correlation-request-id": [ "97923bba-bc3c-4f8d-91eb-f34d6bc75a74" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023754Z:97923bba-bc3c-4f8d-91eb-f34d6bc75a74" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9062ABD07C4F4023A40751972229402C Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:41Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CBAD37DFB51C48F187F9D1F839A8F2DD Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "838" ], - "x-ms-client-request-id": [ "913a59a3-85b9-4cb8-a3c0-94be15b5ed23" ], + "x-ms-unique-id": [ "1214" ], + "x-ms-client-request-id": [ "97137381-420b-4b7a-b9d6-f8360fc10262" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4896,18 +4896,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "404603e4-6537-4d57-8cb9-f9d214c7f737" ], + "x-ms-request-id": [ "5d0a4468-b93f-44c7-be60-cde4370bd8f7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4cbf2a71-d8f5-4d08-a41e-c3fc6346d283" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/524fe2c0-915a-4145-b71a-65a82599e22b" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "eedab55c-4057-49e4-87cb-b063cb1e8b0f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005042Z:eedab55c-4057-49e4-87cb-b063cb1e8b0f" ], + "x-ms-correlation-request-id": [ "89965b4e-8c38-4e99-926f-39b7e55a1a38" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023755Z:89965b4e-8c38-4e99-926f-39b7e55a1a38" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 774FE08D9573423488777F96A8DFF221 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 1713833DF4AE4CE2BBBC9A4E9E39A33D Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:54Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:54 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -4917,19 +4917,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "839" ], - "x-ms-client-request-id": [ "d244551a-bfbc-4f35-b541-0a5678647d84" ], + "x-ms-unique-id": [ "1215" ], + "x-ms-client-request-id": [ "0b766da1-75b4-4aee-96d9-6f129c4e0e72" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4940,42 +4940,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA929C6195" ], + "ETag": [ "1DCBE5BE178D74B" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "47957be1-fc68-4b03-a029-8a724a6b70cd" ], + "x-ms-request-id": [ "a34b7004-e959-48df-839d-95b60f2c90dc" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "231e1d31-eb8e-4cfa-909b-c6d3e9fe26f1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005042Z:231e1d31-eb8e-4cfa-909b-c6d3e9fe26f1" ], + "x-ms-correlation-request-id": [ "85e41722-214c-420d-924e-a4054a7f6990" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023755Z:85e41722-214c-420d-924e-a4054a7f6990" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4F61C7117384C688DF7E65BBE17E212 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:42 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C734C4C98D6143FF9C1D7453DFF51C4F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8544" ], + "Content-Length": [ "8026" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-xitn52\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-259.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-lc3ykb-CentralUSwebspace/sites/Functions-DotNet-8-xitn52\",\"repositorySiteName\":\"Functions-DotNet-8-xitn52\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-xitn52.azurewebsites.net\",\"functions-dotnet-8-xitn52.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-xitn52.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:42.3933333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-xitn52\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"20.40.202.41\",\"possibleInboundIpAddresses\":\"20.40.202.41\",\"inboundIpv6Address\":\"2603:1030:10:6::1e\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:6::1e\",\"ftpUsername\":\"Functions-DotNet-8-xitn52\\\\$Functions-DotNet-8-xitn52\",\"ftpsHostName\":\"ftps://waws-prod-dm1-259.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.40.202.41\",\"possibleOutboundIpAddresses\":\"52.158.211.85,52.158.212.229,52.158.213.236,52.185.66.30,52.185.67.117,52.185.67.177,20.109.216.78,52.185.68.133,52.185.66.7,52.185.68.190,52.185.68.202,52.189.64.141,52.189.65.117,52.189.65.125,52.189.65.126,52.189.65.129,52.189.65.140,52.189.65.219,52.189.66.8,52.189.66.180,52.189.66.252,52.189.67.42,52.189.67.47,52.189.67.139,52.189.67.194,52.189.68.28,52.189.68.73,52.189.68.77,52.189.68.113,52.189.68.134,52.189.68.185,20.40.202.41\",\"outboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:24::1a0,2603:1030:b:f::1b2,2603:1030:b:8::8,2603:1030:b:5::1a9,2603:1030:b:a::64,2603:1030:b:8::cc,2603:1030:b:d::21c,2603:1030:b:e::1af,2603:1030:b:8::13c,2603:1030:b:e::1bb,2603:1030:b:9::1dc,2603:1030:b:a::17e,2603:1030:b:f::1be,2603:1030:b:25::91,2603:1030:b:f::1ce,2603:1030:b:12::9c,2603:1030:b:b::a2,2603:1030:b:8::1d6,2603:1030:b:9::233,2603:1030:b:d::16,2603:1030:b:24::1c8,2603:1030:b:7::15,2603:1030:b:5::263,2603:1030:b:e::1bf,2603:1030:b:5::2e0,2603:1030:b:5::2e2,2603:1030:b:8::3e,2603:1030:b:13::1fd,2603:1030:b:5::2e9,2603:1030:b:c::22f,2603:1030:10:6::1e,2603:10e1:100:2::1428:ca29\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-259\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-lc3ykb\",\"defaultHostName\":\"functions-dotnet-8-xitn52.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-DotNet-8-8qxhpl\",\"state\":\"Running\",\"hostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace\",\"selfLink\":\"https://waws-prod-dm1-039.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Windows-Consumption-3y2q5t-CentralUSwebspace/sites/Functions-DotNet-8-8qxhpl\",\"repositorySiteName\":\"Functions-DotNet-8-8qxhpl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-dotnet-8-8qxhpl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/serverfarms/CentralUSPlan\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:54.8366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-DotNet-8-8qxhpl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.176.165.69\",\"possibleInboundIpAddresses\":\"52.176.165.69\",\"inboundIpv6Address\":\"2603:1030:10:5::21\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::21\",\"ftpUsername\":\"Functions-DotNet-8-8qxhpl\\\\$Functions-DotNet-8-8qxhpl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-039.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,52.176.165.69\",\"possibleOutboundIpAddresses\":\"52.165.225.133,52.165.228.110,52.165.224.227,52.165.228.212,20.83.8.185,20.9.104.152,20.9.104.199,20.9.104.245,20.9.105.134,20.9.105.169,20.9.106.103,20.9.106.112,20.9.106.137,20.9.106.238,20.9.109.26,20.9.109.140,20.9.109.193,52.176.165.69\",\"outboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:f::239,2603:1030:b:8::1d5,2603:1030:b:e::5,2603:1030:b:9::99,2603:1030:b:13::2a7,2603:1030:b:5::2f5,2603:1030:b:f::1ed,2603:1030:b:12::1ff,2603:1030:b:f::22c,2603:1030:b:b::1f5,2603:1030:b:5::2f9,2603:1030:b:12::209,2603:1030:b:e::21f,2603:1030:b:3::2bb,2603:1030:b:5::2fb,2603:1030:b:12::20a,2603:1030:10:5::21,2603:10e1:100:2::34b0:a545\",\"containerSize\":1536,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-039\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Windows-Consumption-3y2q5t\",\"defaultHostName\":\"functions-dotnet-8-8qxhpl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "840" ], - "x-ms-client-request-id": [ "2ff3a5b6-f5d7-401c-b646-2656dee68951" ], + "x-ms-unique-id": [ "1216" ], + "x-ms-client-request-id": [ "98a7acf5-adfc-49a0-a79f-5603d01db542" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -4987,40 +4987,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2f256ff0-99b7-4a47-a5fe-d274592eed3a" ], + "x-ms-request-id": [ "99cf09c1-63e2-4a48-b568-a1a1c5af98eb" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/aaa61bff-5836-41f3-b0b8-fdcbb5a7b707" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/2439a025-03e9-4931-b5b0-b9b6e7ca9b15" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "29762a2b-2bce-42cb-af28-ef8579da7d89" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:29762a2b-2bce-42cb-af28-ef8579da7d89" ], + "x-ms-correlation-request-id": [ "0c38b33b-d7fd-478b-a358-e47d563b1f2a" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023755Z:0c38b33b-d7fd-478b-a358-e47d563b1f2a" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D189CE5B62FC4115999BADEB192EB2A5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:42Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FB4B5AC720064336851E3951E840B6CD Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1198" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-xitn52\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_INPROC_NET8_ENABLED\":\"1\",\"FUNCTIONS_WORKER_RUNTIME\":\"dotnet\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-dotnet-8-8qxhpl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-xitn52\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-DotNet-8-8qxhpl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "841" ], - "x-ms-client-request-id": [ "51f7d391-7973-40ba-92ee-66f391198652" ], + "x-ms-unique-id": [ "1217" ], + "x-ms-client-request-id": [ "ac10ebcb-07bb-418b-999f-9f13dc1f8def" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5032,41 +5032,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0d6b37b9-12b8-445a-b20c-a53c0df2871c" ], + "x-ms-request-id": [ "8e97080a-049c-49de-81a7-c2bf40a41011" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b7923b3-fb4b-4edc-8119-56cc0b80339a" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/77a92aef-1d99-4299-bb8e-8d57665f8134" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "95b3afcc-f0c9-4883-a06a-78614bd16902" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:95b3afcc-f0c9-4883-a06a-78614bd16902" ], + "x-ms-correlation-request-id": [ "2d9dfb2b-b3ad-454b-8b67-992af2f81d22" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023755Z:2d9dfb2b-b3ad-454b-8b67-992af2f81d22" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2294513DDA2B4A63A627D753A887877D Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 88F1F384518847A586F3C40F3285D3ED Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4174" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-lc3ykb/providers/Microsoft.Web/sites/Functions-DotNet-8-xitn52/config/web\",\"name\":\"Functions-DotNet-8-xitn52\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Consumption-3y2q5t/providers/Microsoft.Web/sites/Functions-DotNet-8-8qxhpl/config/web\",\"name\":\"Functions-DotNet-8-8qxhpl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v8.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":true,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+1": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "842" ], - "x-ms-client-request-id": [ "0dbdc6ac-35c6-449c-babd-86fb281da251" ], + "x-ms-unique-id": [ "1218" ], + "x-ms-client-request-id": [ "0f600589-a2e2-4e4c-821f-d46082fec9b3" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5077,42 +5077,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA869E5015" ], + "ETag": [ "1DCBE5BD61E8CE0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "569e2b7b-1ce9-4a0e-8d88-1d63d9d63ce8" ], + "x-ms-request-id": [ "7426176a-aa94-4ab1-b3ae-7a04daa76c84" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "1d9746a9-82f6-4251-b815-4cb2650fae9b" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:1d9746a9-82f6-4251-b815-4cb2650fae9b" ], + "x-ms-correlation-request-id": [ "fe911f15-f759-46cf-bd12-4942c7c8c0ed" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023756Z:fe911f15-f759-46cf-bd12-4942c7c8c0ed" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D1D589BA194B4EE5856952878ABD52B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: BCF6595CF9DC440F8DB041AC10D853ED Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:55Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:55 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8228" ], + "Content-Length": [ "8177" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:22.2733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:35.79\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+2": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "843" ], - "x-ms-client-request-id": [ "44f482ed-75b6-4de0-b707-439d8bfabe24" ], + "x-ms-unique-id": [ "1219" ], + "x-ms-client-request-id": [ "905859e4-270f-4783-b579-addeb422153e" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5124,40 +5124,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d3fd274a-9685-426a-8aa5-7655db0ce552" ], + "x-ms-request-id": [ "bb1321d4-0a0f-41d1-b8b0-5aaa8f86fd37" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/dbb5d9a0-ca82-4eb0-bc87-a50512de711c" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "a73f1f63-6ef8-43f2-a97a-a03bf3120417" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005043Z:a73f1f63-6ef8-43f2-a97a-a03bf3120417" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/10c362f3-dc90-47ab-bc7f-19e470d4ec2b" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], + "x-ms-correlation-request-id": [ "dcd8a28d-a66e-4122-8ce0-ca7186e81347" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023756Z:dcd8a28d-a66e-4122-8ce0-ca7186e81347" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BAD01C58CDD94826891F154373B0B0B9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:43Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:43 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A8A56E62399242A09D907D0B52F83F80 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+3": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "844" ], - "x-ms-client-request-id": [ "7b4145e1-98a1-44cb-a3a4-2697a7799560" ], + "x-ms-unique-id": [ "1220" ], + "x-ms-client-request-id": [ "578b8f67-14d4-4e9e-b64e-ac2f6b53daf1" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5169,41 +5169,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b4ed766e-a6cd-4cd7-b3bb-51b7aab0d373" ], + "x-ms-request-id": [ "a10f4488-c3e3-4c19-8972-6cd57e6f04a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/1a73f806-16be-4b56-af21-32f5413fe755" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "98e92592-aa30-441a-a0c0-ba7bad23ae28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005044Z:98e92592-aa30-441a-a0c0-ba7bad23ae28" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/99e8a91c-bfde-4ab6-92c2-595860acfd94" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "c4512763-3564-4d9f-b6dd-61518c56bcd7" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023756Z:c4512763-3564-4d9f-b6dd-61518c56bcd7" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6FC191ECFD7E4585BBA14BCB4D66BFA5 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 460B40EEE3044A5BA9D840F8D927B71A Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:55 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01+4": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/restart?api-version=2023-12-01+4": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/restart?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/restart?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "845" ], - "x-ms-client-request-id": [ "24834669-6246-4c87-9245-e21fab7d5ee6" ], + "x-ms-unique-id": [ "1221" ], + "x-ms-client-request-id": [ "4f997023-c27f-476a-bf3e-c1c3832fa626" ], "CommandName": [ "Az.Functions.internal\\Restart-AzFunctionApp" ], "FullCommandName": [ "Restart-AzFunctionApp_RestartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5215,18 +5215,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c0b88e62-6784-4fca-a651-c8d6f7cdefb8" ], + "x-ms-request-id": [ "2fd9c6fb-31af-4d81-99c9-322ecbbb048f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/fbdc77e7-095d-46bd-ad2d-ff83aa89e843" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6a357bbd-bf27-4c1c-bad4-f6c620bba2be" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "aeb0fefb-024f-413a-a184-744d3b041cb8" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005044Z:aeb0fefb-024f-413a-a184-744d3b041cb8" ], + "x-ms-correlation-request-id": [ "be1bfe3b-b95e-4bc6-a462-55cef978acd8" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023756Z:be1bfe3b-b95e-4bc6-a462-55cef978acd8" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1F7B2D1358BB47D6BBB321D042156FFF Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CFE48AF870B1427C9E6EE68408BE11CA Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:56 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5236,19 +5236,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+5": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "846" ], - "x-ms-client-request-id": [ "be2ddb24-1c4b-4229-b730-5eea64823e34" ], + "x-ms-unique-id": [ "1222" ], + "x-ms-client-request-id": [ "30496597-a81b-475b-81ff-bb060e0262ec" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5259,42 +5259,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA93E883A0" ], + "ETag": [ "1DCBE5BE29B4440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "68ab1287-780e-4ace-b7e8-90d0c095cf93" ], + "x-ms-request-id": [ "a4b19110-3f8b-4149-bc7b-14062f390557" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "c22623c6-16e4-4ad1-9461-b2001e8e8c7d" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005044Z:c22623c6-16e4-4ad1-9461-b2001e8e8c7d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "a1d77df7-c6dd-41b4-8d50-deb32f48ba28" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023757Z:a1d77df7-c6dd-41b4-8d50-deb32f48ba28" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 56B66407E3DB4C038D4124EFC8ADE491 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:44 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D8F9B50D116E45C8A53DF1BEDB529503 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:56Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8223" ], + "Content-Length": [ "8177" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:44.57\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:56.74\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+6": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+6": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "847" ], - "x-ms-client-request-id": [ "570597b3-5d5a-49c3-b6e2-48fc4ccd14b1" ], + "x-ms-unique-id": [ "1223" ], + "x-ms-client-request-id": [ "367cf137-3311-458e-a7b1-9ad81e6b9724" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5306,40 +5306,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "505cf95e-7070-44e7-8f5a-424ff2afc77e" ], + "x-ms-request-id": [ "8f16c918-4cfc-46d7-a61a-11f41105ca8a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/30b1414c-c7af-4673-bff0-224bc0bc8a90" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7a5c98f6-00f1-4de3-af03-7b480dd04dd5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "46fe08cc-5e01-4e1d-b3c3-b52ca48aa56e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:46fe08cc-5e01-4e1d-b3c3-b52ca48aa56e" ], + "x-ms-correlation-request-id": [ "2513d090-b8ce-426d-a66c-ee71f17d9cfb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023757Z:2513d090-b8ce-426d-a66c-ee71f17d9cfb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 11C670E1AB4F42B99589502FD7F26249 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:44Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 904B58135A69420FB9E0AFC09166E4E4 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:56 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+7": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "848" ], - "x-ms-client-request-id": [ "d7edc824-e2b4-436a-aecc-394c3023dcaa" ], + "x-ms-unique-id": [ "1224" ], + "x-ms-client-request-id": [ "21b83a80-266c-4300-b9a2-dd8887ba89db" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5351,41 +5351,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "d1ed5641-7a76-43a9-86d5-c810077336ed" ], + "x-ms-request-id": [ "7f3a7e2c-78b6-427e-949f-c8deabb2f7a7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/3ed8069f-576e-49f3-b8a6-1886c2090475" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4ee2db51-d43a-4b96-94c8-4fb611b1efa0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "58313d38-b579-4920-8cea-62d004f6fffd" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:58313d38-b579-4920-8cea-62d004f6fffd" ], + "x-ms-correlation-request-id": [ "89f8ae31-bb0b-4e3e-9e73-2aeddbd7e3e9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023757Z:89f8ae31-bb0b-4e3e-9e73-2aeddbd7e3e9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F866D47EA5B14A77880EA24B0EF0DCD0 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 409B67FDE56349D985B4644487C1644F Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+8": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "849" ], - "x-ms-client-request-id": [ "fa6a110e-5477-4049-a8a9-e899318b6f39" ], + "x-ms-unique-id": [ "1225" ], + "x-ms-client-request-id": [ "886c5fe5-9ba8-4fe5-b035-fe7498042507" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5396,42 +5396,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA93E883A0" ], + "ETag": [ "1DCBE5BE29B4440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "0737b90c-5278-4a4d-a856-8af0ddb712e6" ], + "x-ms-request-id": [ "e106735f-a560-4d77-a58e-4084167cb78a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "97ade91a-a5b9-44dd-af08-4d959b09c500" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:97ade91a-a5b9-44dd-af08-4d959b09c500" ], + "x-ms-correlation-request-id": [ "f62d3db0-19fc-45b0-b11f-cf25e0cd3aaf" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023757Z:f62d3db0-19fc-45b0-b11f-cf25e0cd3aaf" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D05C4FA45EBB457BADE40E2EBF6EBBD6 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D0035F55AE3743B2BD395ABA346A7996 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:57 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8223" ], + "Content-Length": [ "8177" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:44.57\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:56.74\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+9": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+9": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "850" ], - "x-ms-client-request-id": [ "a67f6268-4ee6-42ef-9758-df44a85ca8e4" ], + "x-ms-unique-id": [ "1226" ], + "x-ms-client-request-id": [ "7e310b17-cb80-4f99-84fe-3fc998e98e76" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5443,40 +5443,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "290fd550-c008-443b-9aa8-974382a6817a" ], + "x-ms-request-id": [ "75c7ae8c-f868-435d-9a9e-0ee52c93b317" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/8241fc3b-5f52-4a49-9da2-338bf1d0515b" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "798" ], - "x-ms-correlation-request-id": [ "2f366b93-c0a3-4090-8c39-ace261faaa47" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005045Z:2f366b93-c0a3-4090-8c39-ace261faaa47" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56d80448-f6ca-4af8-bbd6-f20114615dee" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], + "x-ms-correlation-request-id": [ "f0d5267c-d4d7-4086-93b5-70ade6b66aa9" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023758Z:f0d5267c-d4d7-4086-93b5-70ade6b66aa9" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31A2E03422AD4D5D9AF31FAB78296C66 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:45Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:45 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 99003E26D2884061A0F753FB82D7A8E8 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:57Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+10": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+10": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "851" ], - "x-ms-client-request-id": [ "7169e709-0370-4884-a18a-69d67146255a" ], + "x-ms-unique-id": [ "1227" ], + "x-ms-client-request-id": [ "7bdb1869-623f-4507-a59a-b2fc72d3112c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5488,41 +5488,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "f42f83fa-4d0e-4beb-92fd-cafbf9d2c817" ], + "x-ms-request-id": [ "cf47a234-877a-4629-a8f5-04c2e0db838f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/9af9d8fa-c168-471f-acb5-0d77f60cc4be" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/56ac6e13-b8c0-4339-8293-2164d097ce34" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "a65cdf6d-8b5b-44b2-bb68-11ad943da525" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:a65cdf6d-8b5b-44b2-bb68-11ad943da525" ], + "x-ms-correlation-request-id": [ "c085bfba-f6fe-48e6-9e3c-20c8e944dc56" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023758Z:c085bfba-f6fe-48e6-9e3c-20c8e944dc56" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F667403BA0E744A8B52774F5C5D7EC3F Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 450BB94BD04944599F4B1A35E83728A6 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:57 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01+11": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/stop?api-version=2023-12-01+11": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/stop?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/stop?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "852" ], - "x-ms-client-request-id": [ "a69aff35-81c5-4529-bdd4-f7477f48c741" ], + "x-ms-unique-id": [ "1228" ], + "x-ms-client-request-id": [ "c9c3eba4-f8b5-46e2-aefb-37ee9377e710" ], "CommandName": [ "Az.Functions.internal\\Stop-AzFunctionApp" ], "FullCommandName": [ "Stop-AzFunctionApp_StopViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5534,18 +5534,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "c096dedb-4d6a-4b9b-be8d-48c1f46c055b" ], + "x-ms-request-id": [ "16a0e9f0-93e1-466f-87d4-d247e5dc6ca7" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/f392e286-0ae4-4ae3-ac28-47bbed1b9a42" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "e9ee9cc2-9bd8-4e5f-9a3f-c22f85a48b1e" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:e9ee9cc2-9bd8-4e5f-9a3f-c22f85a48b1e" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/a1850930-559f-4f79-84dc-a48827fc534a" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "798" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11998" ], + "x-ms-correlation-request-id": [ "aaff31b1-17e5-4f2b-bfde-6db0ca0557ce" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023758Z:aaff31b1-17e5-4f2b-bfde-6db0ca0557ce" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1A458E26B72E461F872BFC383A2FB5E9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B5BC7DD8F05D4AB3A922CBCFFE3268BB Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:58 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5555,19 +5555,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+12": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "853" ], - "x-ms-client-request-id": [ "9103c1a6-c782-445a-bc52-23cec0fd3d85" ], + "x-ms-unique-id": [ "1229" ], + "x-ms-client-request-id": [ "7f503c1c-f49a-49e1-a5d4-b017a70f036f" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5578,42 +5578,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA9501C8D5" ], + "ETag": [ "1DCBE5BE3C1C2E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "2147582f-c134-438a-bdd9-b768df575351" ], + "x-ms-request-id": [ "3dca9160-11cf-4988-8e60-e0f6907f4a92" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "26984356-11d7-4415-8d9b-3e73732d3c9f" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:26984356-11d7-4415-8d9b-3e73732d3c9f" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "eadfe17d-27f5-4e93-ac40-a4e326b4d06d" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023759Z:eadfe17d-27f5-4e93-ac40-a4e326b4d06d" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8A07AB00DFCF45559411C7B006308AFD Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 681AAE933C37471EADC954ADF7E88566 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:58Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:58 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8228" ], + "Content-Length": [ "8177" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:46.4133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:58.67\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+13": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+13": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "854" ], - "x-ms-client-request-id": [ "2fd0353a-dd6a-4f17-a168-972de9cee59d" ], + "x-ms-unique-id": [ "1230" ], + "x-ms-client-request-id": [ "5a674fcc-aa99-49e9-b93c-0c9953014968" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5625,40 +5625,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "b775eeb2-1e0a-4bcc-a210-95302694b335" ], + "x-ms-request-id": [ "70e9de3e-34d0-488d-a018-96e91e330998" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6d785d43-adfe-4204-b67e-ace381ea5350" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/90e9a840-5302-4767-b4a0-95c8d592280e" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "2102206a-7f70-41da-bbcd-c68c7c1b8b73" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005046Z:2102206a-7f70-41da-bbcd-c68c7c1b8b73" ], + "x-ms-correlation-request-id": [ "13d80946-114d-4688-9c47-29f8c6e64405" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023759Z:13d80946-114d-4688-9c47-29f8c6e64405" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8C9640E68AB4495EACEAC5F4F7F16816 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:46Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:46 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F37CD920312543EDAA5F525C97BBF4DF Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+14": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+14": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "855" ], - "x-ms-client-request-id": [ "678a7560-5198-4b0c-baa2-64b4246c3f15" ], + "x-ms-unique-id": [ "1231" ], + "x-ms-client-request-id": [ "722c6f4d-3559-48f0-af99-0769cbb9bbcc" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5670,41 +5670,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb80a3e1-8073-4019-81c8-ccc55d4a8d70" ], + "x-ms-request-id": [ "6e527216-2521-4d6d-ad5f-9e8af31f6c7e" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/4f8d1836-7d6f-4d9e-a263-91471e208ab0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6ee4f616-869a-4315-8ef8-592aeffe8b1c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-correlation-request-id": [ "59880bdb-0771-4f53-8e4b-d4694c6b0332" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005047Z:59880bdb-0771-4f53-8e4b-d4694c6b0332" ], + "x-ms-correlation-request-id": [ "f3f7b7d9-b4e0-4962-b9f9-d896d3997cd6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023759Z:f3f7b7d9-b4e0-4962-b9f9-d896d3997cd6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A4FC14DB2DE64B5FB257CA49D33220D1 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 8490CCE306BD448BB29286E7CCDED6A2 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:58 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+15": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+15": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "856" ], - "x-ms-client-request-id": [ "ad2c827f-73a4-4754-abd1-ab2454880dd1" ], + "x-ms-unique-id": [ "1232" ], + "x-ms-client-request-id": [ "2d99090d-1095-4e0c-9004-e9323709ebc1" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5715,42 +5715,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA9501C8D5" ], + "ETag": [ "1DCBE5BE3C1C2E0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "5f39ffa0-93bb-4b7c-b056-320dd8630c03" ], + "x-ms-request-id": [ "77750f19-c076-4bc2-91e8-eb0ab702fee2" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "9ebaf1f7-787a-452d-b0e8-e1c6b9144347" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005047Z:9ebaf1f7-787a-452d-b0e8-e1c6b9144347" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-correlation-request-id": [ "c5b03616-cdc8-438f-86f2-3e81f90213e6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023759Z:c5b03616-cdc8-438f-86f2-3e81f90213e6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6484392EBBFA441D8C7CDA65E8BDC079 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 856E6321DFAE47CAB2BA5415F6E69076 Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:59 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8228" ], + "Content-Length": [ "8177" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:46.4133333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Stopped\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:37:58.67\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+16": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+16": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "857" ], - "x-ms-client-request-id": [ "30ad5114-cdf0-4685-9ce5-7fa3aa7cc3d8" ], + "x-ms-unique-id": [ "1233" ], + "x-ms-client-request-id": [ "a9421f1f-8622-43a2-998f-46573d516a0c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5762,40 +5762,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "e8210cb7-7844-4292-be7a-ecb0b49630c4" ], + "x-ms-request-id": [ "faef82a2-17e2-494e-8353-ccdc0461ef0c" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/ac833fb5-f5cd-43f3-bae0-a93438567ba0" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/77aa62b3-d586-4fbc-970b-e0381ed0fc3f" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "958bf764-8ae7-410d-8b4b-e5b99ee56fe2" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005047Z:958bf764-8ae7-410d-8b4b-e5b99ee56fe2" ], + "x-ms-correlation-request-id": [ "17de06ff-6eee-41fc-89a4-f08ea25218d6" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023800Z:17de06ff-6eee-41fc-89a4-f08ea25218d6" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8774ECA3E1114F89ABDAC087D313E230 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:47 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C6F2B4D8C63746E7A7728F7F93A6853D Ref B: MWH011020809062 Ref C: 2026-03-28T02:37:59Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+17": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+17": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "858" ], - "x-ms-client-request-id": [ "14dd3196-9c11-4461-9792-982e0ad18fed" ], + "x-ms-unique-id": [ "1234" ], + "x-ms-client-request-id": [ "e1087fb4-912c-46c4-84a2-2feb9a43bd1c" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5807,41 +5807,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "593cbadf-cf90-440a-a7a0-042cf9b479d3" ], + "x-ms-request-id": [ "1916e83b-0e7b-44d5-8c5a-fae994a68e7a" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/05c2f342-cd11-4426-8165-d37baea3fde9" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/87d307c8-09eb-4334-8b5e-69813cb66a8d" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "07943a33-76b0-440d-8b09-062f3cf77a28" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:07943a33-76b0-440d-8b09-062f3cf77a28" ], + "x-ms-correlation-request-id": [ "cb4929ba-2c81-44ac-8d7a-07b507858fd3" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023800Z:cb4929ba-2c81-44ac-8d7a-07b507858fd3" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 63F75FB6DE224150B6492873275F0219 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:47Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 07155C71D4AC4A36B446B2A91C30C022 Ref B: MWH011020809062 Ref C: 2026-03-28T02:38:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:37:59 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01+18": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/start?api-version=2023-12-01+18": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/start?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/start?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "859" ], - "x-ms-client-request-id": [ "292de21b-b305-40d6-821a-29ded15e7daf" ], + "x-ms-unique-id": [ "1235" ], + "x-ms-client-request-id": [ "4d6d2e85-66d9-41a3-a8a9-85163f96365e" ], "CommandName": [ "Az.Functions.internal\\Start-AzFunctionApp" ], "FullCommandName": [ "Start-AzFunctionApp_StartViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5853,18 +5853,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "6747d5ec-9e49-4057-be69-37bac10f7c5c" ], + "x-ms-request-id": [ "ee9e788d-9708-4dc8-8ae5-76b852f329ff" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/40b323b1-338e-4d24-9937-bfec693e9d22" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/28686f44-4ecf-4390-a0d6-e1827435125a" ], "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-correlation-request-id": [ "c945f83e-000a-4c75-835e-e19d784fca99" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:c945f83e-000a-4c75-835e-e19d784fca99" ], + "x-ms-correlation-request-id": [ "1fbf24b8-c047-4e45-88d8-8e8ad96cf389" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023800Z:1fbf24b8-c047-4e45-88d8-8e8ad96cf389" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8F42767FCB8F4C658906CC92D64CB343 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 5738CA6EF6F147AA8FAB832F40F3E5FA Ref B: MWH011020809062 Ref C: 2026-03-28T02:38:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:38:00 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -5874,19 +5874,19 @@ "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01+19": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01+19": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "860" ], - "x-ms-client-request-id": [ "adde18d2-bba9-4830-ab09-27edf412bce1" ], + "x-ms-unique-id": [ "1236" ], + "x-ms-client-request-id": [ "57e3c933-f1cc-423a-b7ed-2751cb90c9ea" ], "CommandName": [ "Az.Functions.internal\\Get-AzFunctionApp" ], "FullCommandName": [ "Get-AzFunctionApp_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5897,42 +5897,42 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "1DCBCBA96222CF5" ], + "ETag": [ "1DCBE5BE4FEA2AB" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "59c451d7-910c-48c3-9ddc-1e58ff273053" ], + "x-ms-request-id": [ "4f58af70-49cb-4cab-96eb-aae7b9dc0c96" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1097" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16497" ], - "x-ms-correlation-request-id": [ "5c6fd942-d29f-4bc9-a564-806248558871" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:5c6fd942-d29f-4bc9-a564-806248558871" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-correlation-request-id": [ "7a4c041f-46bb-4aa8-9a5e-297dd4d089ae" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023801Z:7a4c041f-46bb-4aa8-9a5e-297dd4d089ae" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 15BF05408BA84638AD7BC25F15106ED8 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 33303306E3774B89A6FF27CE03AF639A Ref B: MWH011020809062 Ref C: 2026-03-28T02:38:00Z" ], + "Date": [ "Sat, 28 Mar 2026 02:38:00 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "8228" ], + "Content-Length": [ "8182" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-rmx6vl\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-157.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-y3eonk-CentralUSwebspace-Linux/sites/Functions-Python-312-rmx6vl\",\"repositorySiteName\":\"Functions-Python-312-rmx6vl\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-rmx6vl.azurewebsites.net\",\"functions-python-312-rmx6vl.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-rmx6vl.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-26T00:50:48.3033333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-rmx6vl\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"13.89.172.4\",\"possibleInboundIpAddresses\":\"13.89.172.4\",\"inboundIpv6Address\":\"2603:1030:10:5::4\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:5::4\",\"ftpUsername\":\"Functions-Python-312-rmx6vl\\\\$Functions-Python-312-rmx6vl\",\"ftpsHostName\":\"ftps://waws-prod-dm1-157.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.89.172.4\",\"possibleOutboundIpAddresses\":\"40.122.169.200,104.208.27.4,40.122.42.64,23.99.130.19,13.67.176.18,104.208.28.216,40.122.168.112,40.122.169.80,23.99.159.248,20.118.17.81,20.118.19.166,20.118.19.182,20.118.20.77,20.118.20.179,20.118.20.230,20.118.21.220,20.118.22.146,20.118.22.148,20.118.22.161,20.118.22.177,20.118.22.227,13.89.172.4\",\"outboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:a::e2,2603:1030:b:a::e3,2603:1030:b:13::17f,2603:1030:b:24::5e,2603:1030:b:e::67,2603:1030:b:5::28c,2603:1030:b:6::b3,2603:1030:b:8::e2,2603:1030:b:13::180,2603:1030:b:5::28e,2603:1030:b:8::e3,2603:1030:b:9::8f,2603:1030:b:8::e4,2603:1030:b:24::5f,2603:1030:b:24::d0,2603:1030:b:8::e5,2603:1030:b:6::f8,2603:1030:b:9::e0,2603:1030:b:e::68,2603:1030:b:12::111,2603:1030:b:f::e6,2603:1030:10:5::4,2603:10e1:100:2::d59:ac04\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-157\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-y3eonk\",\"defaultHostName\":\"functions-python-312-rmx6vl.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"functionapp,linux\",\"location\":\"Central US\",\"properties\":{\"name\":\"Functions-Python-312-o2a71w\",\"state\":\"Running\",\"hostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\"],\"webSpace\":\"Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux\",\"selfLink\":\"https://waws-prod-dm1-081.api.azurewebsites.windows.net:455/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/webspaces/Functions-Test-Linux-Consumption-hrv09k-CentralUSwebspace-Linux/sites/Functions-Python-312-o2a71w\",\"repositorySiteName\":\"Functions-Python-312-o2a71w\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"siteScopedCertificatesEnabled\":false,\"afdEnabled\":false,\"enabledHostNames\":[\"functions-python-312-o2a71w.azurewebsites.net\",\"functions-python-312-o2a71w.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"Python|3.12\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"functions-python-312-o2a71w.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"functions-python-312-o2a71w.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"virtualIPv6\":null,\"thumbprint\":null,\"certificateResourceId\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"hostNamePrivateStates\":[],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/serverfarms/CentralUSLinuxDynamicPlan\",\"reserved\":true,\"isXenon\":false,\"hyperV\":false,\"sandboxType\":null,\"lastModifiedTimeUtc\":\"2026-03-28T02:38:00.7466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"dnsConfiguration\":{},\"vnetRouteAllEnabled\":false,\"containerAllocationSubnet\":null,\"useContainerLocalhostBindings\":null,\"vnetImagePullEnabled\":false,\"vnetContentShareEnabled\":false,\"legacyServiceEndpointTrafficEvaluation\":null,\"siteConfig\":{\"numberOfWorkers\":1,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"vnetPrivatePortsCount\":null,\"publicNetworkAccess\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":null,\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":false,\"minTlsVersion\":null,\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":null,\"http20ProxyFlag\":null,\"sitePort\":null,\"antivirusScanEnabled\":null,\"storageType\":null,\"sitePrivateLinkHostEnabled\":null,\"clusteringEnabled\":false,\"webJobsEnabled\":false},\"functionAppConfig\":null,\"daprConfig\":null,\"deploymentId\":\"Functions-Python-312-o2a71w\",\"slotName\":null,\"trafficManagerHostNames\":null,\"sku\":\"Dynamic\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":false,\"clientAffinityProxyEnabled\":false,\"useQueryStringAffinity\":false,\"blockPathTraversal\":false,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"clientCertExclusionEndPoints\":null,\"hostNamesDisabled\":false,\"ipMode\":\"IPv4\",\"vnetBackupRestoreEnabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"820897FA13D4FC50B7CBA5CA68DA3943859519540BB2DE7460C95F1DB1087127\",\"kind\":\"functionapp,linux\",\"managedEnvironmentId\":null,\"workloadProfileName\":null,\"resourceConfig\":null,\"inboundIpAddress\":\"52.165.184.170\",\"possibleInboundIpAddresses\":\"52.165.184.170\",\"inboundIpv6Address\":\"2603:1030:10:8::11\",\"possibleInboundIpv6Addresses\":\"2603:1030:10:8::11\",\"ftpUsername\":\"Functions-Python-312-o2a71w\\\\$Functions-Python-312-o2a71w\",\"ftpsHostName\":\"ftps://waws-prod-dm1-081.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.165.184.170\",\"possibleOutboundIpAddresses\":\"52.165.232.134,52.165.238.159,52.165.232.85,52.165.238.211,52.176.161.15,52.173.84.230,52.154.243.121,52.154.246.152,52.185.106.184,52.185.106.217,52.185.107.24,52.185.107.27,13.89.118.191,52.141.209.205,52.141.215.41,52.154.153.30,52.154.153.142,52.154.153.181,52.165.184.170\",\"outboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"possibleOutboundIpv6Addresses\":\"2603:1030:b:13::1d9,2603:1030:b:d::185,2603:1030:b:f::163,2603:1030:b:12::18b,2603:1030:b:8::155,2603:1030:b:13::1db,2603:1030:b:a::16b,2603:1030:b:9::15b,2603:1030:b:5::3da,2603:1030:b:f::164,2603:1030:b:e::147,2603:1030:b:b::163,2603:1030:b:7::291,2603:1030:b:9::15c,2603:1030:b:8::156,2603:1030:b:8::157,2603:1030:b:f::166,2603:1030:b:13::1dc,2603:1030:10:8::11,2603:10e1:100:2::34a5:b8aa\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-dm1-081\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":null,\"resourceGroup\":\"Functions-Test-Linux-Consumption-hrv09k\",\"defaultHostName\":\"functions-python-312-o2a71w.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"endToEndEncryptionEnabled\":false,\"functionsRuntimeAdminIsolationEnabled\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"publicNetworkAccess\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null,\"eligibleLogCategories\":\"FunctionAppLogs,AppServiceAuthenticationLogs,AppServiceAuditLogs,AppServiceIPSecAuditLogs\",\"inFlightFeatures\":[\"SiteContainers\"],\"storageAccountRequired\":false,\"virtualNetworkSubnetId\":null,\"keyVaultReferenceIdentity\":\"SystemAssigned\",\"autoGeneratedDomainNameLabelScope\":null,\"privateLinkIdentifiers\":null,\"sshEnabled\":null}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01+20": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$POST+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01+20": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings/list?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings/list?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "861" ], - "x-ms-client-request-id": [ "9bb18bf7-8c56-42ec-8537-731d7e28262d" ], + "x-ms-unique-id": [ "1237" ], + "x-ms-client-request-id": [ "909d3e2f-e956-47a2-bacd-2255d99bd0ac" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppApplicationSetting" ], "FullCommandName": [ "Get-AzWebAppApplicationSetting_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5944,40 +5944,40 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "05e562b2-8ea1-43b0-87e5-b112f9920342" ], + "x-ms-request-id": [ "d5a7c720-4094-4080-a4d0-8a0e233baf4f" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/6b1dfdd3-1afd-46f5-a270-8bda9049a0e3" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/d76e9e46-a347-4f9e-ab6c-67c99c6c67f5" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "799" ], - "x-ms-correlation-request-id": [ "04af91fb-c340-4784-955c-16fdce4b16ea" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005048Z:04af91fb-c340-4784-955c-16fdce4b16ea" ], + "x-ms-correlation-request-id": [ "c112ec5f-af67-452f-b709-95f9aa9701cb" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023801Z:c112ec5f-af67-452f-b709-95f9aa9701cb" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 526A19BF6E934436B9617B67A789A7D9 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:48 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 861A8C70C22E4E099EEB9D691B2B74B9 Ref B: MWH011020809062 Ref C: 2026-03-28T02:38:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:38:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "1213" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-rmx6vl\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/appsettings\",\"name\":\"appsettings\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"FUNCTIONS_WORKER_RUNTIME\":\"python\",\"WEBSITES_ENABLE_APP_SERVICE_STORAGE\":\"true\",\"AzureWebJobsStorage\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"FUNCTIONS_EXTENSION_VERSION\":\"~4\",\"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING\":\"DefaultEndpointsProtocol=https;AccountName=REDACTEDACCOUNT;AccountKey=STORAGE-ACCOUNT-KEY-REDACTED;EndpointSuffix=core.windows.net\",\"WEBSITE_CONTENTSHARE\":\"functions-python-312-o2a71w\",\"APPLICATIONINSIGHTS_CONNECTION_STRING\":\"InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED\"}}", "isContentBase64": false } }, - "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-rmx6vl\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01+21": { + "Restart-AzFunctionApp, Stop-AzFunctionApp and Start-AzFunctionApp+[NoContext]+ByObjectInput \u0027Functions-Python-312-o2a71w\u0027+$GET+https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01+21": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web?api-version=2023-12-01", + "RequestUri": "https://management.azure.com/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web?api-version=2023-12-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "862" ], - "x-ms-client-request-id": [ "4e0b8ef4-b99f-454e-b1db-c2e7be878e14" ], + "x-ms-unique-id": [ "1238" ], + "x-ms-client-request-id": [ "cad0202e-f125-4639-819e-68c4a53909fe" ], "CommandName": [ "Az.Functions.internal\\Get-AzWebAppConfiguration" ], "FullCommandName": [ "Get-AzWebAppConfiguration_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.0" ], + "User-Agent": [ "AzurePowershell/v14.4.0", "PSVersion/v7.5.5", "Az.Functions/4.3.1" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -5989,25 +5989,25 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "539a196f-d4ce-430c-9992-21995116b7aa" ], + "x-ms-request-id": [ "2d007f6b-0b42-416a-b9b4-77d78bcd47a6" ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/7c848901-7cef-4d34-969b-bb9cf0a1b3ee" ], + "x-ms-operation-identifier": [ "tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=07d7b425-8abb-4571-bd42-44b3d7fb5a39/centralus/12e0ebee-20ad-4bf9-a154-0e964a6c91e9" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-correlation-request-id": [ "438f2ae4-233d-4c5e-bd69-8c25ce7737d1" ], - "x-ms-routing-request-id": [ "CENTRALUS:20260326T005049Z:438f2ae4-233d-4c5e-bd69-8c25ce7737d1" ], + "x-ms-correlation-request-id": [ "ed4f6ba9-7ed5-48b1-b591-6e6d75071a12" ], + "x-ms-routing-request-id": [ "CENTRALUS:20260328T023801Z:ed4f6ba9-7ed5-48b1-b591-6e6d75071a12" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFF60127A6C34FE387BDEE0E3AA9BA01 Ref B: CO6AA3150220027 Ref C: 2026-03-26T00:50:48Z" ], - "Date": [ "Thu, 26 Mar 2026 00:50:49 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 3476615B52724EC6B157EB7AF1D782BB Ref B: MWH011020809062 Ref C: 2026-03-28T02:38:01Z" ], + "Date": [ "Sat, 28 Mar 2026 02:38:01 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4188" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-y3eonk/providers/Microsoft.Web/sites/Functions-Python-312-rmx6vl/config/web\",\"name\":\"Functions-Python-312-rmx6vl\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", + "Content": "{\"id\":\"/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Linux-Consumption-hrv09k/providers/Microsoft.Web/sites/Functions-Python-312-o2a71w/config/web\",\"name\":\"Functions-Python-312-o2a71w\",\"type\":\"Microsoft.Web/sites/config\",\"location\":\"Central US\",\"properties\":{\"numberOfWorkers\":1,\"defaultDocuments\":[\"Default.htm\",\"Default.html\",\"Default.asp\",\"index.htm\",\"index.html\",\"iisstart.htm\",\"default.aspx\",\"index.php\"],\"netFrameworkVersion\":\"v4.0\",\"phpVersion\":\"\",\"pythonVersion\":\"\",\"nodeVersion\":\"\",\"powerShellVersion\":\"\",\"linuxFxVersion\":\"Python|3.12\",\"windowsFxVersion\":null,\"sandboxType\":null,\"windowsConfiguredStacks\":[],\"requestTracingEnabled\":false,\"remoteDebuggingEnabled\":false,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":false,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":35,\"detailedErrorLoggingEnabled\":false,\"publishingUsername\":\"REDACTED\",\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":\"None\",\"use32BitWorkerProcess\":false,\"webSocketsEnabled\":false,\"alwaysOn\":false,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":\"\",\"managedPipelineMode\":\"Integrated\",\"virtualApplications\":[{\"virtualPath\":\"/\",\"physicalPath\":\"site\\\\wwwroot\",\"preloadEnabled\":false,\"virtualDirectories\":null}],\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":false,\"customAppPoolIdentityTenantState\":false,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":\"LeastRequests\",\"routingRules\":[],\"experiments\":{\"rampUpRules\":[]},\"limits\":null,\"autoHealEnabled\":false,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":\"\",\"vnetRouteAllEnabled\":false,\"vnetPrivatePortsCount\":0,\"publicNetworkAccess\":null,\"siteAuthEnabled\":false,\"siteAuthSettings\":{\"enabled\":null,\"unauthenticatedClientAction\":null,\"tokenStoreEnabled\":null,\"allowedExternalRedirectUrls\":null,\"defaultProvider\":null,\"clientId\":null,\"clientSecret\":null,\"clientSecretSettingName\":null,\"clientSecretCertificateThumbprint\":null,\"issuer\":null,\"allowedAudiences\":null,\"additionalLoginParams\":null,\"isAadAutoProvisioned\":false,\"aadClaimsAuthorization\":null,\"googleClientId\":null,\"googleClientSecret\":null,\"googleClientSecretSettingName\":null,\"googleOAuthScopes\":null,\"facebookAppId\":null,\"facebookAppSecret\":null,\"facebookAppSecretSettingName\":null,\"facebookOAuthScopes\":null,\"gitHubClientId\":null,\"gitHubClientSecret\":null,\"gitHubClientSecretSettingName\":null,\"gitHubOAuthScopes\":null,\"twitterConsumerKey\":null,\"twitterConsumerSecret\":null,\"twitterConsumerSecretSettingName\":null,\"microsoftAccountClientId\":null,\"microsoftAccountClientSecret\":null,\"microsoftAccountClientSecretSettingName\":null,\"microsoftAccountOAuthScopes\":null,\"configVersion\":null},\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":false,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"keyVaultReferenceIdentity\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"ipSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":2147483647,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsDefaultAction\":null,\"scmIpSecurityRestrictionsUseMain\":false,\"http20Enabled\":false,\"minTlsVersion\":\"1.2\",\"minTlsCipherSuite\":null,\"scmMinTlsCipherSuite\":null,\"supportedTlsCipherSuites\":null,\"scmSupportedTlsCipherSuites\":null,\"scmMinTlsVersion\":\"1.2\",\"ftpsState\":\"FtpsOnly\",\"preWarmedInstanceCount\":0,\"functionAppScaleLimit\":200,\"elasticWebAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":false,\"functionsRuntimeScaleMonitoringEnabled\":false,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0,\"azureStorageAccounts\":{},\"http20ProxyFlag\":0,\"sitePort\":null,\"antivirusScanEnabled\":false,\"storageType\":\"StorageVolume\",\"sitePrivateLinkHostEnabled\":false,\"clusteringEnabled\":false,\"webJobsEnabled\":false}}", "isContentBase64": false } } diff --git a/src/Functions/Functions.Autorest/test/env.json b/src/Functions/Functions.Autorest/test/env.json index 675fea58571d..0d996e000186 100644 --- a/src/Functions/Functions.Autorest/test/env.json +++ b/src/Functions/Functions.Autorest/test/env.json @@ -1,173 +1,129 @@ { - "flexStorageAccountPython": "flexapppythonsaa50y", - "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", - "workSpaceACAName": "workspace-azpstestkbew", - "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-y3eonk", - "functionNamePython": "Functions-Python-7mrsp6yjac", - "planNameWorkerTypeWindows": "Functions-Windows-Premium-iklz1o", - "functionAppsToCreate": [ - { - "RuntimeVersion": "7.4", - "FunctionsVersion": 4, - "Runtime": "PowerShell", - "PlanName": "Functions-Windows-Premium-iklz1o", - "StorageAccountName": "functionswinstorageh7d", - "Name": "Functions-PowerShell-74-iob4d5", - "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", - "OSType": "Windows" - }, - { - "RuntimeVersion": 22, - "FunctionsVersion": 4, - "Runtime": "Node", - "PlanName": "Functions-Linux-Premium-sjhkza", - "StorageAccountName": "functionslinuxstorage5f3", - "Name": "Functions-Node-22-jus0p7", - "ResourceGroupName": "Functions-Test-Linux-Premium-mr3bc4", - "OSType": "Linux" - }, + "flexLocation": "East Asia", + "storageAccountLinux": "functionslinuxstorageypr", + "planNameWorkerTypeWindows": "Functions-Windows-Premium-iqzomg", + "functionNameTestApp": "Functions-TestAppName-xwultfe6zj", + "flexStorageAccountPython": "flexapppythonsa3wro", + "flexStorageAccountNode": "flexappnodesa3wro", + "flexTestRunId": "3wro", + "servicePlansToCreate": [ { - "StorageAccountName": "functionswinstorageh7d", - "FunctionsVersion": 4, - "RuntimeVersion": 8, - "Runtime": "DotNet", - "Name": "Functions-DotNet-8-xitn52", - "ResourceGroupName": "Functions-Test-Windows-Consumption-lc3ykb", + "MaximumWorkerCount": 10, + "MinimumWorkerCount": 1, + "Name": "Functions-Windows-Premium-iqzomg", + "Sku": "EP1", + "WorkerType": "Windows", "Location": "central us", - "OSType": "Windows" + "ResourceGroupName": "Functions-Test-Windows-Premium-t7m8hi" }, { - "StorageAccountName": "functionslinuxstorage5f3", - "FunctionsVersion": 4, - "RuntimeVersion": "3.12", - "Runtime": "Python", - "Name": "Functions-Python-312-rmx6vl", - "ResourceGroupName": "Functions-Test-Linux-Consumption-y3eonk", + "MaximumWorkerCount": 10, + "MinimumWorkerCount": 1, + "Name": "Functions-Linux-Premium-n36iqr", + "Sku": "EP1", + "WorkerType": "Linux", "Location": "central us", - "OSType": "Linux" + "ResourceGroupName": "Functions-Test-Linux-Premium-1tq5io" } ], - "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-mr3bc4", - "functionAppTestPlanName2": "Functions-MyTestPlan2-2og675s19v", - "functionNameCustomHandler": "Functions-CustomHandlernb8m23gkpj", - "flexIdentityInfo": { - "ClientId": "6e6e92b3-9403-44fc-a707-e67c047d4a2e", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-a50y/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-a50y", - "Location": "eastasia", - "Name": "my-flex-app-uai-a50y", - "PrincipalId": "8053ec4f-5882-4542-89b5-cb9e94848c5f", - "ResourceGroupName": "Functions-Flex-RG-a50y", - "SystemDataCreatedAt": null, - "SystemDataCreatedBy": null, - "SystemDataCreatedByType": null, - "SystemDataLastModifiedAt": null, - "SystemDataLastModifiedBy": null, - "SystemDataLastModifiedByType": null, - "Tag": {}, - "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" - }, - "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsaa", - "functionAppTestPlanName": "Functions-MyTestPlan1-iu5bjls016", - "environmentACAName": "azps-envtestkbew", - "flexStorageAccountNode": "flexappnodesaa50y", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-lc3ykb", - "functionNamePowerShellNew6": "Func-PowerShell-NewTest6-xpt80akrzv", - "flexFunctionAppName": "Flex-PowerShell-a50y", - "planNameWorkerTypeLinux": "Functions-Linux-Premium-sjhkza", - "functionNameContainer": "Functions-CustomImage-4ps815eax3", - "functionNamePowerShellNew7": "Func-PowerShell-NewTest7-pz8c2l4wbk", - "flexResourceGroupName": "Functions-Flex-RG-a50y", - "flexStorageAccountCustom": "flexappcustomsaa50y", - "functionNamePowerShell": "Functions-PowerShellTest-d90zp8nj5h", - "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-7q9cjpgboy", - "locationACA": "WestCentralUS", - "functionNameJava": "Functions-Java-0ehb98v3n4", + "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-dx36e52rpl", + "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-t7m8hi", + "functionNameJava": "Functions-Java-x057hmvfzy", + "acaTestRunId": "uhwf", + "flexStorageAccountCustom": "flexappcustomsa3wro", + "environmentACAName": "azps-envtestuhwf", + "resourceGroupNameLinuxConsumption": "Functions-Test-Linux-Consumption-hrv09k", + "functionNamePowerShellNew3": "Func-PowerShell-NewTest3-xg581y7oh0", + "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-t1850fmzia", + "resourceGroupNameWindowsConsumption": "Functions-Test-Windows-Consumption-3y2q5t", + "functionNameCustomHandler": "Functions-CustomHandlermjvy1eso2u", + "workSpaceACAName": "workspace-azpstestuhwf", + "flexStorageAccountDotNetIsolated": "flexappdotnetisolatedsa3", + "storageAccountWindows": "functionswinstorage0r4", + "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-koe843ap0h", + "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-cnusvg", + "SubscriptionId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", + "flexStorageAccountPowerShell": "flexapppowershellsa3wro", + "flexFunctionAppName": "Flex-PowerShell-3wro", + "flexResourceGroupName": "Functions-Flex-RG-3wro", + "functionAppTestPlanName": "Functions-MyTestPlan1-6yer8tklgo", + "flexStorageAccountJava": "flexappjavasa3wro", "location": "central us", - "flexTestRunId": "a50y", - "functionNamePowerShellNew5": "Func-PowerShell-NewTest5-1xmbohf4tc", - "functionAppPlanName": "Functions-MyPlan-8we2jigcnz", - "storageAccountLinux": "functionslinuxstorage5f3", - "functionNamePowerShellNew8": "Func-PowerShell-NewTest8-w6t25049gs", - "resourceGroupNameWindowsPremium": "Functions-Test-Windows-Premium-py1fb4", - "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-e5279qnwbr", - "functionNamePowerShellNew4": "Func-PowerShell-NewTest4-t5dnwqpf7r", - "flexStorageAccountJava": "flexappjavasaa50y", - "functionNamePowerShellNew1": "Func-PowerShell-NewTest1-d3t8hyrciu", - "functionNameTestApp": "Functions-TestAppName-8qzi5nxbja", - "storageAccountNameACA": "funcacastotoragekbew", - "functionNameDotNet": "Functions-DotNet-27pudsgrfk", - "flexLocation": "East Asia", - "storageAccountWindows": "functionswinstorageh7d", - "functionNameDotNetIsolated": "Functions-DotNet-Isolated0f543v96sw", - "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-i9enm6", - "functionNameNode": "Functions-Node-ulmzgn9t6x", + "locationACA": "WestCentralUS", + "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-icpwro", "newApplInsights": { - "AppId": "6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd", - "ApplicationId": "Functions-PowerShellTest-d90zp8nj5h-new", + "AppId": "3d6eb1b3-62ce-4c2f-bb99-451be89fca8d", + "ApplicationId": "Functions-PowerShellTest-0yltam84vr-new", "ApplicationType": {}, - "ConnectionString": "InstrumentationKey=AI-INSTRUMENTATION-KEY-REDACTED;IngestionEndpoint=https://redacted.ingest/;LiveEndpoint=https://redacted.live/;ApplicationId=APP-INSIGHTS-APPID-REDACTED", - "CreationDate": "2026-03-26T00:07:23.7109657Z", + "ConnectionString": "InstrumentationKey=c1581c14-e25d-4dd6-9ada-b984bc86eb46;IngestionEndpoint=https://centralus-2.in.applicationinsights.azure.com/;LiveEndpoint=https://centralus.livediagnostics.monitor.azure.com/;ApplicationId=3d6eb1b3-62ce-4c2f-bb99-451be89fca8d", + "CreationDate": "2026-03-28T01:24:32.6959944Z", "DisableIPMasking": null, "DisableLocalAuth": null, - "Etag": "\"c2024307-0000-0300-0000-69c478c00000\"", + "Etag": "\"6b03dc7b-0000-0300-0000-69c72dd50000\"", "FlowType": {}, "ForceCustomerStorageForProfiler": null, "HockeyAppId": null, "HockeyAppToken": null, - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-py1fb4/providers/microsoft.insights/components/Functions-PowerShellTest-d90zp8nj5h-new", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/Functions-Test-Windows-Premium-t7m8hi/providers/microsoft.insights/components/Functions-PowerShellTest-0yltam84vr-new", "ImmediatePurgeDataOn30Day": null, "IngestionMode": {}, - "InstrumentationKey": "AI-INSTRUMENTATION-KEY-REDACTED", + "InstrumentationKey": "c1581c14-e25d-4dd6-9ada-b984bc86eb46", "Kind": "web", "LaMigrationDate": null, "Location": "centralus", - "Name": "Functions-PowerShellTest-d90zp8nj5h-new", + "Name": "Functions-PowerShellTest-0yltam84vr-new", "PrivateLinkScopedResource": null, - "PropertiesName": "Functions-PowerShellTest-d90zp8nj5h-new", + "PropertiesName": "Functions-PowerShellTest-0yltam84vr-new", "ProvisioningState": "Succeeded", "PublicNetworkAccessForIngestion": {}, "PublicNetworkAccessForQuery": {}, "RequestSource": {}, - "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", + "ResourceGroupName": "Functions-Test-Windows-Premium-t7m8hi", "RetentionInDay": 90, "SamplingPercentage": null, "Tag": {}, "TenantId": "26cfabf6-eb15-4de5-ae51-f2218958bd5f", "Type": "microsoft.insights/components", - "WorkspaceResourceId": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-d90zp8nj5h-new_6cb59c7c-84ca-4ca3-ad6a-2f4cfb52c1fd_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-d90zp8nj5h-new-ws" + "WorkspaceResourceId": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourceGroups/ai_functions-powershelltest-0yltam84vr-new_3d6eb1b3-62ce-4c2f-bb99-451be89fca8d_managed/providers/Microsoft.OperationalInsights/workspaces/managed-Functions-PowerShellTest-0yltam84vr-new-ws" }, - "planNameWorkerTypeWindowsNew3": "Func-Windows-Premium-New3-gzxfvo", - "planNameWorkerTypeWindowsNew2": "Func-Windows-Premium-New2-yv6luz", - "resourceGroupNameACA": "Functions-ACA-Test-kbew", - "servicePlansToCreate": [ - { - "MinimumWorkerCount": 1, - "WorkerType": "Windows", - "MaximumWorkerCount": 10, - "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", - "Name": "Functions-Windows-Premium-iklz1o", - "Sku": "EP1", - "Location": "central us" - }, - { - "MinimumWorkerCount": 1, - "WorkerType": "Linux", - "MaximumWorkerCount": 10, - "ResourceGroupName": "Functions-Test-Linux-Premium-mr3bc4", - "Name": "Functions-Linux-Premium-sjhkza", - "Sku": "EP1", - "Location": "central us" - } - ], + "functionNameDotNet": "Functions-DotNet-srcxwfh7tk", + "functionNameNode": "Functions-Node-0kzsvafpx4", + "functionNamePowerShellNew6": "Func-PowerShell-NewTest6-38mwgoyzfn", + "functionNameDotNetIsolated": "Functions-DotNet-Isolatedtwxrs35fho", + "planNameWorkerTypeLinux": "Functions-Linux-Premium-n36iqr", + "functionNamePowerShellNew2": "Func-PowerShell-NewTest2-kzc5qp78i1", + "planNameWorkerTypeWindowsNew": "Func-Windows-Premium-New-zdwf3g", + "resourceGroupNameLinuxPremium": "Functions-Test-Linux-Premium-1tq5io", "identityInfo": { - "ClientId": "9117d8bd-9ee2-4972-8373-fd719cde24ad", - "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-py1fb4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", + "ClientId": "128aaf20-234d-46b2-9e8a-b0f38542edbd", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Test-Windows-Premium-t7m8hi/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ID1", "Location": "centralus", "Name": "ID1", - "PrincipalId": "491cde4e-f8e2-4fd9-a008-c7f56684132d", - "ResourceGroupName": "Functions-Test-Windows-Premium-py1fb4", + "PrincipalId": "fb84fc42-205c-43a2-9956-b759de3a01da", + "ResourceGroupName": "Functions-Test-Windows-Premium-t7m8hi", + "SystemDataCreatedAt": null, + "SystemDataCreatedBy": null, + "SystemDataCreatedByType": null, + "SystemDataLastModifiedAt": null, + "SystemDataLastModifiedBy": null, + "SystemDataLastModifiedByType": null, + "Tag": {}, + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" + }, + "resourceGroupNameACA": "Functions-ACA-Test-uhwf", + "functionNamePowerShell": "Functions-PowerShellTest-0yltam84vr", + "storageAccountNameACA": "funcacastotorageuhwf", + "functionNameContainer": "Functions-CustomImage-zv4osq75px", + "functionAppTestPlanName2": "Functions-MyTestPlan2-9ho6gvcwqb", + "functionNamePython": "Functions-Python-uj27iozaxb", + "flexIdentityInfo": { + "ClientId": "1c8707b8-10eb-4844-99ff-65ec5451412a", + "Id": "/subscriptions/26cfabf6-eb15-4de5-ae51-f2218958bd5f/resourcegroups/Functions-Flex-RG-3wro/providers/Microsoft.ManagedIdentity/userAssignedIdentities/my-flex-app-uai-3wro", + "Location": "eastasia", + "Name": "my-flex-app-uai-3wro", + "PrincipalId": "cf903595-e2e4-4253-bac5-dd7f3bdf61dc", + "ResourceGroupName": "Functions-Flex-RG-3wro", "SystemDataCreatedAt": null, "SystemDataCreatedBy": null, "SystemDataCreatedByType": null, @@ -178,6 +134,50 @@ "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "Type": "Microsoft.ManagedIdentity/userAssignedIdentities" }, - "acaTestRunId": "kbew", - "flexStorageAccountPowerShell": "flexapppowershellsaa50y" + "functionNamePowerShellNew7": "Func-PowerShell-NewTest7-7nvoe2hfym", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "functionAppPlanName": "Functions-MyPlan-9hsqkriuoj", + "functionNamePowerShellNew8": "Func-PowerShell-NewTest8-glhw0cek4j", + "functionAppsToCreate": [ + { + "Name": "Functions-PowerShell-74-umoz8s", + "StorageAccountName": "functionswinstorage0r4", + "FunctionsVersion": 4, + "Runtime": "PowerShell", + "OSType": "Windows", + "PlanName": "Functions-Windows-Premium-iqzomg", + "RuntimeVersion": "7.4", + "ResourceGroupName": "Functions-Test-Windows-Premium-t7m8hi" + }, + { + "Name": "Functions-Node-22-lzxr8g", + "StorageAccountName": "functionslinuxstorageypr", + "FunctionsVersion": 4, + "Runtime": "Node", + "OSType": "Linux", + "PlanName": "Functions-Linux-Premium-n36iqr", + "RuntimeVersion": 22, + "ResourceGroupName": "Functions-Test-Linux-Premium-1tq5io" + }, + { + "Name": "Functions-DotNet-8-8qxhpl", + "StorageAccountName": "functionswinstorage0r4", + "FunctionsVersion": 4, + "Runtime": "DotNet", + "OSType": "Windows", + "Location": "central us", + "RuntimeVersion": 8, + "ResourceGroupName": "Functions-Test-Windows-Consumption-3y2q5t" + }, + { + "Name": "Functions-Python-312-o2a71w", + "StorageAccountName": "functionslinuxstorageypr", + "FunctionsVersion": 4, + "Runtime": "Python", + "OSType": "Linux", + "Location": "central us", + "RuntimeVersion": "3.12", + "ResourceGroupName": "Functions-Test-Linux-Consumption-hrv09k" + } + ] } diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index b9838dc74869..f7501daa42fb 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{AB859DDA-AD7E-41D2-B16E-86EBFCE50429}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{8A755F5C-67C6-4F17-A59E-AF1EB71779BA}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|Any CPU.Build.0 = Debug|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x64.ActiveCfg = Debug|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x64.Build.0 = Debug|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x86.ActiveCfg = Debug|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Debug|x86.Build.0 = Debug|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|Any CPU.ActiveCfg = Release|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|Any CPU.Build.0 = Release|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x64.ActiveCfg = Release|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x64.Build.0 = Release|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x86.ActiveCfg = Release|Any CPU - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429}.Release|x86.Build.0 = Release|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x64.ActiveCfg = Debug|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x64.Build.0 = Debug|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x86.ActiveCfg = Debug|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x86.Build.0 = Debug|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|Any CPU.Build.0 = Release|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x64.ActiveCfg = Release|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x64.Build.0 = Release|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x86.ActiveCfg = Release|Any CPU + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {AB859DDA-AD7E-41D2-B16E-86EBFCE50429} = {409734C8-465A-6FC8-866F-C49222B018F2} + {8A755F5C-67C6-4F17-A59E-AF1EB71779BA} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal diff --git a/src/Functions/Functions/Az.Functions.psd1 b/src/Functions/Functions/Az.Functions.psd1 index 0ebaba4477ac..4bfd90fc5aec 100644 --- a/src/Functions/Functions/Az.Functions.psd1 +++ b/src/Functions/Functions/Az.Functions.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/26/2026 +# Generated on: 3/27/2026 # @{ From 2dc677e20414e1cf0573785ddec70244eec4dd7a Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 28 Mar 2026 01:33:42 -0700 Subject: [PATCH 5/9] Address Copilot review round 2: fix typos, expand acronyms, update Flex test comment - Fix typo in Update-AzFunctionApp.ps1 comment: 'intenal' -> 'internal', 'process' -> 'processed' - Expand acronyms in ChangeLog.md per Azure PS guidelines: ARM (Azure Resource Manager), SKU (stock keeping unit) - Clarify parameter types in ChangeLog: SwitchParameter for New-*, Boolean for Update-* - Update Flex Consumption test comment: removed outdated 'fail in pipeline' note since tests now work in all modes including CI playback --- .../Properties/AssemblyInfo.cs | 1 + .../custom/Update-AzFunctionApp.ps1 | 2 +- .../Functions.Autorest/generate-info.json | 2 +- ...ew-AzFunctionApp.FlexConsumption.Tests.ps1 | 5 ++-- src/Functions/Functions.sln | 28 +++++++++---------- src/Functions/Functions/Az.Functions.psd1 | 2 +- src/Functions/Functions/ChangeLog.md | 6 ++-- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index ec457525e691..b4ed7c38e0e9 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -30,3 +30,4 @@ + diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 index 543d6caf0c2f..cf02508636cf 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 @@ -131,7 +131,7 @@ function Update-AzFunctionApp { $hasEnableSystemAssignedIdentityParam = $PSBoundParameters.ContainsKey('EnableSystemAssignedIdentity') $hasUserAssignedIdentityParam = $PSBoundParameters.ContainsKey('UserAssignedIdentity') - # Remove bound parameters from the dictionary that cannot be process by the intenal cmdlets. + # Remove bound parameters from the dictionary that cannot be processed by the internal cmdlets. $paramsToRemove = @( "PlanName", "ApplicationInsightsName", diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 4a9be93a9156..6a4cef601bcb 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "ab2f9875-e58e-44f6-bcf8-973a23018d07" + "generate_Id": "b39bd87a-f9a5-4324-abb4-d6556d4a8231" } diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 index 9cfdcd1c2316..72d98510d862 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.FlexConsumption.Tests.ps1 @@ -13,9 +13,8 @@ while(-not $mockingPath) { $env:FunctionsTestMode = $true -# Please note that these tests can run in Playback mode only when executed locally. They fail in the pipeline due to the environment. -# However, they can be used for local deployment in Playback mode. -# Describe 'New-AzFunctionApp - Flex Consumption' { +# These tests run in all modes (Live, Record, Playback) including CI pipeline. +# The $env:FunctionsTestMode flag ensures deterministic naming for playback compatibility. Describe 'New-AzFunctionApp - Flex Consumption' { BeforeAll { diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index f7501daa42fb..e3bba9689ffa 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{8A755F5C-67C6-4F17-A59E-AF1EB71779BA}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x64.ActiveCfg = Debug|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x64.Build.0 = Debug|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x86.ActiveCfg = Debug|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Debug|x86.Build.0 = Debug|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|Any CPU.Build.0 = Release|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x64.ActiveCfg = Release|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x64.Build.0 = Release|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x86.ActiveCfg = Release|Any CPU - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA}.Release|x86.Build.0 = Release|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x64.ActiveCfg = Debug|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x64.Build.0 = Debug|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x86.ActiveCfg = Debug|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x86.Build.0 = Debug|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|Any CPU.Build.0 = Release|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x64.ActiveCfg = Release|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x64.Build.0 = Release|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x86.ActiveCfg = Release|Any CPU + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {8A755F5C-67C6-4F17-A59E-AF1EB71779BA} = {409734C8-465A-6FC8-866F-C49222B018F2} + {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal diff --git a/src/Functions/Functions/Az.Functions.psd1 b/src/Functions/Functions/Az.Functions.psd1 index 4bfd90fc5aec..e59b03bfd65e 100644 --- a/src/Functions/Functions/Az.Functions.psd1 +++ b/src/Functions/Functions/Az.Functions.psd1 @@ -3,7 +3,7 @@ # # Generated by: Microsoft Corporation # -# Generated on: 3/27/2026 +# Generated on: 3/28/2026 # @{ diff --git a/src/Functions/Functions/ChangeLog.md b/src/Functions/Functions/ChangeLog.md index a0683c2cccb6..0f2ba39845e1 100644 --- a/src/Functions/Functions/ChangeLog.md +++ b/src/Functions/Functions/ChangeLog.md @@ -19,12 +19,12 @@ --> ## Upcoming Release * Migrated Az.Functions module from AutoRest PowerShell v3 to v4. This may introduce breaking changes. Please refer to [here](https://go.microsoft.com/fwlink/?linkid=2340249). - - Replaced `-IdentityType` parameter with `-EnableSystemAssignedIdentity` (Boolean/SwitchParameter) in `New-AzFunctionApp` and `Update-AzFunctionApp` - - Replaced `-IdentityID` parameter with `-UserAssignedIdentity` (String array of ARM resource IDs) in `New-AzFunctionApp` and `Update-AzFunctionApp` + - Replaced `-IdentityType` parameter with `-EnableSystemAssignedIdentity` in `New-AzFunctionApp` (SwitchParameter) and `Update-AzFunctionApp` (Boolean) + - Replaced `-IdentityID` parameter with `-UserAssignedIdentity` (String array of ARM (Azure Resource Manager) resource IDs) in `New-AzFunctionApp` and `Update-AzFunctionApp` - `New-AzFunctionApp` and `Update-AzFunctionApp` now support combining SystemAssigned and UserAssigned identities in a single call * Fixed error message in `Update-AzFunctionApp` to reference `-EnableSystemAssignedIdentity` instead of removed `-IdentityType` * Fixed error message in `New-AzFunctionApp` to reference `-EnableSystemAssignedIdentity` instead of removed `-IdentityType` -* Added SKU validation guards in `Update-AzFunctionApp` to prevent unsupported operations on Flex Consumption and Container App plans +* Added SKU (stock keeping unit) validation guards in `Update-AzFunctionApp` to prevent unsupported operations on Flex Consumption and Container App plans ## Version 4.3.0 * Added FlexConsumption support to Get-AzFunctionAppAvailableLocation, which returns a list of regions that supported Flex Consumption, including locations supporting zone redundancy (currently applied only to Flex Consumption) From 1c649993b0a2677fe33244aa3b47f105a81a2676 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 28 Mar 2026 01:49:06 -0700 Subject: [PATCH 6/9] Restore cloud portability fix from PR #29035 that was reverted by v4 migration - Replace hardcoded GetEndpointSuffix switch with dynamic StorageEndpointSuffix from Azure context (originally merged as #29035) - The v4 migration regenerated from pre-#29035 code, inadvertently reverting the cloud portability fix [#29034] --- .../Properties/AssemblyInfo.cs | 1 + .../custom/HelperFunctions.ps1 | 11 ++++---- .../Functions.Autorest/generate-info.json | 2 +- src/Functions/Functions.sln | 28 +++++++++---------- src/Functions/Functions/ChangeLog.md | 1 + 5 files changed, 22 insertions(+), 21 deletions(-) diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index b4ed7c38e0e9..84296513e3aa 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -31,3 +31,4 @@ + diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index 16f838e5a039..e08d6a4f6684 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -160,15 +160,14 @@ function GetEndpointSuffix [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] param() - $environmentName = (Get-AzContext).Environment.Name + $storageEndpointSuffix = (Get-AzContext).Environment.StorageEndpointSuffix - switch ($environmentName) + if ([string]::IsNullOrWhiteSpace($storageEndpointSuffix)) { - "AzureUSGovernment" { ';EndpointSuffix=core.usgovcloudapi.net' } - "AzureChinaCloud" { ';EndpointSuffix=core.chinacloudapi.cn' } - "AzureCloud" { ';EndpointSuffix=core.windows.net' } - default { '' } + return '' } + + return ";EndpointSuffix=$storageEndpointSuffix" } function NewAppSetting diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 6a4cef601bcb..60b7f917a8d9 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "b39bd87a-f9a5-4324-abb4-d6556d4a8231" + "generate_Id": "b8162910-9887-42d3-a4bc-c26e9b7a2dd9" } diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index e3bba9689ffa..a9b965ed917b 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{41A7D0A9-E12A-4788-B1CB-703DEDF5B561}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x64.ActiveCfg = Debug|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x64.Build.0 = Debug|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x86.ActiveCfg = Debug|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Debug|x86.Build.0 = Debug|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|Any CPU.Build.0 = Release|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x64.ActiveCfg = Release|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x64.Build.0 = Release|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x86.ActiveCfg = Release|Any CPU - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6}.Release|x86.Build.0 = Release|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|Any CPU.Build.0 = Debug|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x64.ActiveCfg = Debug|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x64.Build.0 = Debug|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x86.ActiveCfg = Debug|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x86.Build.0 = Debug|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|Any CPU.ActiveCfg = Release|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|Any CPU.Build.0 = Release|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x64.ActiveCfg = Release|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x64.Build.0 = Release|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x86.ActiveCfg = Release|Any CPU + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {FBAB9226-7A81-47A8-968C-6DBD46FDFAE6} = {409734C8-465A-6FC8-866F-C49222B018F2} + {41A7D0A9-E12A-4788-B1CB-703DEDF5B561} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal diff --git a/src/Functions/Functions/ChangeLog.md b/src/Functions/Functions/ChangeLog.md index 0f2ba39845e1..b867abc8c8fe 100644 --- a/src/Functions/Functions/ChangeLog.md +++ b/src/Functions/Functions/ChangeLog.md @@ -25,6 +25,7 @@ * Fixed error message in `Update-AzFunctionApp` to reference `-EnableSystemAssignedIdentity` instead of removed `-IdentityType` * Fixed error message in `New-AzFunctionApp` to reference `-EnableSystemAssignedIdentity` instead of removed `-IdentityType` * Added SKU (stock keeping unit) validation guards in `Update-AzFunctionApp` to prevent unsupported operations on Flex Consumption and Container App plans +* Fixed cloud portability in `New-AzFunctionApp` by using dynamic `StorageEndpointSuffix` from Azure context instead of hardcoded endpoint values [#29034] ## Version 4.3.0 * Added FlexConsumption support to Get-AzFunctionAppAvailableLocation, which returns a list of regions that supported Flex Consumption, including locations supporting zone redundancy (currently applied only to Flex Consumption) From 2ed46c833bd55352650d862af60d096714e8d89d Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 28 Mar 2026 02:07:41 -0700 Subject: [PATCH 7/9] Add null-safety to GetEndpointSuffix for missing Azure context - Add null check for Get-AzContext and context.Environment before accessing StorageEndpointSuffix, preventing null reference exceptions when no Azure session is active --- .../Properties/AssemblyInfo.cs | 1 + .../custom/HelperFunctions.ps1 | 8 +++++- .../Functions.Autorest/generate-info.json | 2 +- src/Functions/Functions.sln | 28 +++++++++---------- 4 files changed, 23 insertions(+), 16 deletions(-) diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index 84296513e3aa..4bd5fa5a658a 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -32,3 +32,4 @@ + diff --git a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 index e08d6a4f6684..446332d7f568 100644 --- a/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 +++ b/src/Functions/Functions.Autorest/custom/HelperFunctions.ps1 @@ -160,7 +160,13 @@ function GetEndpointSuffix [Microsoft.Azure.PowerShell.Cmdlets.Functions.DoNotExportAttribute()] param() - $storageEndpointSuffix = (Get-AzContext).Environment.StorageEndpointSuffix + $context = Get-AzContext + if ($null -eq $context -or $null -eq $context.Environment) + { + return '' + } + + $storageEndpointSuffix = $context.Environment.StorageEndpointSuffix if ([string]::IsNullOrWhiteSpace($storageEndpointSuffix)) { diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 60b7f917a8d9..4e6d535731a6 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "b8162910-9887-42d3-a4bc-c26e9b7a2dd9" + "generate_Id": "b17686a2-5634-431c-b727-2fcae16daa6c" } diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index a9b965ed917b..7ae513ab5e4f 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{41A7D0A9-E12A-4788-B1CB-703DEDF5B561}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{75F06F90-38BE-4A77-ACE7-6495B6781C6D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|Any CPU.Build.0 = Debug|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x64.ActiveCfg = Debug|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x64.Build.0 = Debug|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x86.ActiveCfg = Debug|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Debug|x86.Build.0 = Debug|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|Any CPU.ActiveCfg = Release|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|Any CPU.Build.0 = Release|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x64.ActiveCfg = Release|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x64.Build.0 = Release|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x86.ActiveCfg = Release|Any CPU - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561}.Release|x86.Build.0 = Release|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x64.ActiveCfg = Debug|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x64.Build.0 = Debug|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x86.ActiveCfg = Debug|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x86.Build.0 = Debug|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|Any CPU.Build.0 = Release|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x64.ActiveCfg = Release|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x64.Build.0 = Release|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x86.ActiveCfg = Release|Any CPU + {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {41A7D0A9-E12A-4788-B1CB-703DEDF5B561} = {409734C8-465A-6FC8-866F-C49222B018F2} + {75F06F90-38BE-4A77-ACE7-6495B6781C6D} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal From 55598a270ff00e59d8c639e197c26f7ddc3677a5 Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 28 Mar 2026 11:44:31 -0700 Subject: [PATCH 8/9] Fix combined identity fallback and help example in Update-AzFunctionApp - Handle combined 'SystemAssigned,UserAssigned' identity type in fallback logic using -match instead of exact string comparison - Fix help example: use -EnableSystemAssignedIdentity \True instead of 1 - Update test assertion for combined identity to use -Match pattern - Add ChangeLog entry for combined identity fallback fix --- .../Properties/AssemblyInfo.cs | 1 + .../custom/Update-AzFunctionApp.ps1 | 29 ++++++++++++------- .../docs/Update-AzFunctionApp.md | 2 +- .../examples/Update-AzFunctionApp.md | 2 +- .../Functions.Autorest/generate-info.json | 2 +- .../test/New-AzFunctionApp.Tests.ps1 | 4 +-- src/Functions/Functions.sln | 28 +++++++++--------- src/Functions/Functions/ChangeLog.md | 1 + .../Functions/help/Update-AzFunctionApp.md | 2 +- 9 files changed, 40 insertions(+), 31 deletions(-) diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index 4bd5fa5a658a..536445fd8ee2 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -33,3 +33,4 @@ + diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 index cf02508636cf..e8d1fd347a4d 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 @@ -248,9 +248,15 @@ function Update-AzFunctionApp { } elseif ($existingFunctionApp.IdentityType) { - if ($existingFunctionApp.IdentityType -eq "UserAssigned") + # Preserve the existing identity configuration when no identity params are supplied. + # IdentityType can be "SystemAssigned", "UserAssigned", or "SystemAssigned,UserAssigned". + $existingIdentityType = $existingFunctionApp.IdentityType.ToString().Trim() + $hasSystemAssigned = $existingIdentityType -match "SystemAssigned" + $hasUserAssigned = $existingIdentityType -match "UserAssigned" + + if ($hasSystemAssigned -and $hasUserAssigned) { - $functionAppDef.IdentityType = "UserAssigned" + $functionAppDef.IdentityType = "SystemAssigned,UserAssigned" if ($existingFunctionApp.IdentityUserAssignedIdentity -and $existingFunctionApp.IdentityUserAssignedIdentity.Count -gt 0) { @@ -258,18 +264,19 @@ function Update-AzFunctionApp { $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity } } - elseif ($existingFunctionApp.IdentityType -eq "SystemAssigned") + elseif ($hasUserAssigned) { - $functionAppDef.IdentityType = "SystemAssigned" + $functionAppDef.IdentityType = "UserAssigned" + + if ($existingFunctionApp.IdentityUserAssignedIdentity -and $existingFunctionApp.IdentityUserAssignedIdentity.Count -gt 0) + { + $identityUserAssignedIdentity = NewIdentityUserAssignedIdentity -IdentityID $existingFunctionApp.IdentityUserAssignedIdentity.Keys + $functionAppDef.IdentityUserAssignedIdentity = $identityUserAssignedIdentity + } } - else + elseif ($hasSystemAssigned) { - $errorMessage = "Unknown IdentityType '$($existingFunctionApp.IdentityType)'" - $exception = [System.InvalidOperationException]::New($errorMessage) - ThrowTerminatingError -ErrorId "UnknownIdentityType" ` - -ErrorMessage $errorMessage ` - -ErrorCategory ([System.Management.Automation.ErrorCategory]::InvalidOperation) ` - -Exception $exception + $functionAppDef.IdentityType = "SystemAssigned" } } diff --git a/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md b/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md index 7299b0764e59..3ab0b0b90e1d 100644 --- a/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/docs/Update-AzFunctionApp.md @@ -42,7 +42,7 @@ This command updates function app hosting plan. ### Example 2: Set a SystemAssigned managed identity for a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 1 -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity $true -Force ``` This command sets a SystemAssigned managed identity for a function app. diff --git a/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md b/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md index 35f98bc85bb4..5d38418356ce 100644 --- a/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md +++ b/src/Functions/Functions.Autorest/examples/Update-AzFunctionApp.md @@ -5,7 +5,7 @@ Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResource This command updates function app hosting plan. ### Example 2: Set a SystemAssigned managed identity for a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 1 -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity $true -Force ``` This command sets a SystemAssigned managed identity for a function app. ### Example 3: Update function app Application Insights. diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 4e6d535731a6..31ffb80f9edf 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "b17686a2-5634-431c-b727-2fcae16daa6c" + "generate_Id": "1e316419-92a5-4d4d-aef0-0e6a4aa88a90" } diff --git a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 index ac3a89bd28c0..40d8b7a11159 100644 --- a/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 +++ b/src/Functions/Functions.Autorest/test/New-AzFunctionApp.Tests.ps1 @@ -617,7 +617,7 @@ Describe 'New-AzFunctionApp' { } } - It "Creating a function app with 'UserAssigned' managed identity should throw if IdentityID is not provided " { + It "Creating a function app with 'UserAssigned' managed identity should throw if UserAssignedIdentity is not provided " { # Make sure user identiy is available $expectedErrorId = "UserAssignedIdentityRequired" @@ -641,7 +641,7 @@ Describe 'New-AzFunctionApp' { Write-Verbose "RuntimeVersion: $runtimeVersion" -Verbose $scriptblock = { - Write-Verbose "Creating function app with a UserAssigned managed identity but without IdentityID" -Verbose + Write-Verbose "Creating function app with a UserAssigned managed identity but without UserAssignedIdentity" -Verbose New-AzFunctionApp -Name $appName ` -ResourceGroupName $resourceGroupName ` -PlanName $planName ` diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index 7ae513ab5e4f..e66061de2eb9 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{75F06F90-38BE-4A77-ACE7-6495B6781C6D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{8F10C0EF-169D-430B-B247-18AACB235C9C}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x64.ActiveCfg = Debug|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x64.Build.0 = Debug|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x86.ActiveCfg = Debug|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Debug|x86.Build.0 = Debug|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|Any CPU.Build.0 = Release|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x64.ActiveCfg = Release|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x64.Build.0 = Release|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x86.ActiveCfg = Release|Any CPU - {75F06F90-38BE-4A77-ACE7-6495B6781C6D}.Release|x86.Build.0 = Release|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x64.ActiveCfg = Debug|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x64.Build.0 = Debug|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x86.ActiveCfg = Debug|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x86.Build.0 = Debug|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|Any CPU.Build.0 = Release|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x64.ActiveCfg = Release|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x64.Build.0 = Release|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x86.ActiveCfg = Release|Any CPU + {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {75F06F90-38BE-4A77-ACE7-6495B6781C6D} = {409734C8-465A-6FC8-866F-C49222B018F2} + {8F10C0EF-169D-430B-B247-18AACB235C9C} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal diff --git a/src/Functions/Functions/ChangeLog.md b/src/Functions/Functions/ChangeLog.md index b867abc8c8fe..4452f6523d25 100644 --- a/src/Functions/Functions/ChangeLog.md +++ b/src/Functions/Functions/ChangeLog.md @@ -26,6 +26,7 @@ * Fixed error message in `New-AzFunctionApp` to reference `-EnableSystemAssignedIdentity` instead of removed `-IdentityType` * Added SKU (stock keeping unit) validation guards in `Update-AzFunctionApp` to prevent unsupported operations on Flex Consumption and Container App plans * Fixed cloud portability in `New-AzFunctionApp` by using dynamic `StorageEndpointSuffix` from Azure context instead of hardcoded endpoint values [#29034] +* Fixed `Update-AzFunctionApp` identity fallback to correctly preserve combined `SystemAssigned,UserAssigned` identity type when no identity parameters are supplied ## Version 4.3.0 * Added FlexConsumption support to Get-AzFunctionAppAvailableLocation, which returns a list of regions that supported Flex Consumption, including locations supporting zone redundancy (currently applied only to Flex Consumption) diff --git a/src/Functions/Functions/help/Update-AzFunctionApp.md b/src/Functions/Functions/help/Update-AzFunctionApp.md index 31489a7c8940..eec95a0b9ce8 100644 --- a/src/Functions/Functions/help/Update-AzFunctionApp.md +++ b/src/Functions/Functions/help/Update-AzFunctionApp.md @@ -42,7 +42,7 @@ This command updates function app hosting plan. ### Example 2: Set a SystemAssigned managed identity for a function app. ```powershell -Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity 1 -Force +Update-AzFunctionApp -Name MyUniqueFunctionAppName -ResourceGroupName MyResourceGroupName -EnableSystemAssignedIdentity $true -Force ``` This command sets a SystemAssigned managed identity for a function app. From fdcdf80355ab98008e791fa59786305cdfe2babc Mon Sep 17 00:00:00 2001 From: Francisco Gomez Gamino Date: Sat, 28 Mar 2026 12:29:37 -0700 Subject: [PATCH 9/9] Re-add PreviewMessage breaking change attributes from PR #29139 - Restore [PreviewMessage()] BC announcement attributes to all 14 custom cmdlet files. These were lost when the v4 migration commit overwrote the files with regenerated code from pre-#29139 base. - Attributes announce breaking changes in Az v16.0.0 (May 2026) per the BC announcement PR #29139 --- .../Properties/AssemblyInfo.cs | 1 + src/Functions/Functions.Autorest/README.md | 19 +++++++++++++ .../custom/Get-AzFunctionApp.ps1 | 1 + .../custom/Get-AzFunctionAppPlan.ps1 | 1 + .../custom/Get-AzFunctionAppSetting.ps1 | 1 + .../custom/New-AzFunctionApp.ps1 | 1 + .../custom/New-AzFunctionAppPlan.ps1 | 1 + .../custom/Remove-AzFunctionApp.ps1 | 1 + .../custom/Remove-AzFunctionAppPlan.ps1 | 1 + .../custom/Remove-AzFunctionAppSetting.ps1 | 1 + .../custom/Restart-AzFunctionApp.ps1 | 1 + .../custom/Start-AzFunctionApp.ps1 | 1 + .../custom/Stop-AzFunctionApp.ps1 | 1 + .../custom/Update-AzFunctionApp.ps1 | 1 + .../custom/Update-AzFunctionAppPlan.ps1 | 1 + .../custom/Update-AzFunctionAppSetting.ps1 | 1 + .../Functions.Autorest/generate-info.json | 2 +- src/Functions/Functions.sln | 28 +++++++++---------- 18 files changed, 49 insertions(+), 15 deletions(-) diff --git a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs index 536445fd8ee2..490a1fd946eb 100644 --- a/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs +++ b/src/Functions/Functions.Autorest/Properties/AssemblyInfo.cs @@ -34,3 +34,4 @@ + diff --git a/src/Functions/Functions.Autorest/README.md b/src/Functions/Functions.Autorest/README.md index 7023d9eba9cb..019bdf64fd5c 100644 --- a/src/Functions/Functions.Autorest/README.md +++ b/src/Functions/Functions.Autorest/README.md @@ -562,6 +562,25 @@ directive: - from: source-file-csharp where: $ transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}FunctionsToExport = \{cmdletsList\}\"\);/, '') + + - where: + verb: Restart|Start|Stop + subject: App + set: + preview-announcement: + preview-message: "*******************************************************************************************\\r\\n* This cmdlet will undergo a breaking change in Az v16.0.0, to be released in May 2026. *\\r\\n* At least one change applies to this cmdlet. *\\r\\n* See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *\\r\\n*******************************************************************************************" + - where: + verb: New + subject: App|AppPlan + set: + preview-announcement: + preview-message: "*******************************************************************************************\\r\\n* This cmdlet will undergo a breaking change in Az v16.0.0, to be released in May 2026. *\\r\\n* At least one change applies to this cmdlet. *\\r\\n* See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *\\r\\n*******************************************************************************************" + - where: + verb: Get|Remove|Update + subject: App|AppPlan|AppSetting + set: + preview-announcement: + preview-message: "*******************************************************************************************\\r\\n* This cmdlet will undergo a breaking change in Az v16.0.0, to be released in May 2026. *\\r\\n* At least one change applies to this cmdlet. *\\r\\n* See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *\\r\\n*******************************************************************************************" ``` ``` yaml diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 index d1d1800c9b09..859cb3a403b1 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionApp.ps1 @@ -1,4 +1,5 @@ function Get-AzFunctionApp { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets function apps in a subscription.')] [CmdletBinding(DefaultParametersetname="GetAll")] diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 index 69cf8060665d..2ee9274284e9 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppPlan.ps1 @@ -1,4 +1,5 @@ function Get-AzFunctionAppPlan { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Get function apps plans in a subscription.')] [CmdletBinding(DefaultParameterSetName='GetAll')] diff --git a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 index 904f2cd948c5..dfb23c753b57 100644 --- a/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Get-AzFunctionAppSetting.ps1 @@ -1,4 +1,5 @@ function Get-AzFunctionAppSetting { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Gets app settings for a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 index 0fabd9e6c6a5..afa07f64d207 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionApp.ps1 @@ -1,4 +1,5 @@ function New-AzFunctionApp { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Creates a function app.')] [CmdletBinding(SupportsShouldProcess=$true, DefaultParametersetname="Consumption")] diff --git a/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 index 27eb49c4638f..d4388b3da160 100644 --- a/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/New-AzFunctionAppPlan.ps1 @@ -1,4 +1,5 @@ function New-AzFunctionAppPlan { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Creates a function app service plan.')] [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] diff --git a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 index dd8a7972557f..803c64fd21b6 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionApp.ps1 @@ -1,4 +1,5 @@ function Remove-AzFunctionApp { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Deletes a function app.')] diff --git a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 index 6658611712c6..14b8499d9431 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppPlan.ps1 @@ -1,4 +1,5 @@ function Remove-AzFunctionAppPlan { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Deletes a function app plan.')] diff --git a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 index 6a4c381517c7..0cf82841b2cf 100644 --- a/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Remove-AzFunctionAppSetting.ps1 @@ -1,4 +1,5 @@ function Remove-AzFunctionAppSetting { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Removes app settings from a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] diff --git a/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 index c41001849f6b..ee0a0d5f0669 100644 --- a/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Restart-AzFunctionApp.ps1 @@ -1,4 +1,5 @@ function Restart-AzFunctionApp { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='RestartByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Restarts a function app.')] diff --git a/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 index cb77e3c7a506..27b72756ff53 100644 --- a/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Start-AzFunctionApp.ps1 @@ -1,4 +1,5 @@ function Start-AzFunctionApp { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='StartByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Starts a function app.')] diff --git a/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 index 7f913cf68b84..4f014d9ca7aa 100644 --- a/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Stop-AzFunctionApp.ps1 @@ -1,4 +1,5 @@ function Stop-AzFunctionApp { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='StopByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Stops a function app.')] diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 index e8d1fd347a4d..acaaedea650b 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionApp.ps1 @@ -1,5 +1,6 @@ function Update-AzFunctionApp { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.ISite])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Updates a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 index abdc9a74676a..7e120437f00b 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppPlan.ps1 @@ -1,4 +1,5 @@ function Update-AzFunctionAppPlan { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IAppServicePlan])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Updates a function app service plan.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] diff --git a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 index ecd2361f4a6d..5305f1bb6ce5 100644 --- a/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 +++ b/src/Functions/Functions.Autorest/custom/Update-AzFunctionAppSetting.ps1 @@ -1,4 +1,5 @@ function Update-AzFunctionAppSetting { + [Microsoft.Azure.PowerShell.Cmdlets.Functions.Runtime.PreviewMessage("*******************************************************************************************`n * This cmdlet will undergo a breaking change in Az v16.0.0, to be released on May 2026. *`n * At least one change applies to this cmdlet. *`n * See all possible breaking changes at https://go.microsoft.com/fwlink/?linkid=2333486 *`n *******************************************************************************************")] [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Functions.Models.IStringDictionary])] [Microsoft.Azure.PowerShell.Cmdlets.Functions.Description('Adds or updates app settings in a function app.')] [CmdletBinding(DefaultParameterSetName='ByName', SupportsShouldProcess=$true, ConfirmImpact='Medium')] diff --git a/src/Functions/Functions.Autorest/generate-info.json b/src/Functions/Functions.Autorest/generate-info.json index 31ffb80f9edf..803427ae16d2 100644 --- a/src/Functions/Functions.Autorest/generate-info.json +++ b/src/Functions/Functions.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "1e316419-92a5-4d4d-aef0-0e6a4aa88a90" + "generate_Id": "a7e43701-1829-4829-84d1-d08b7baf3907" } diff --git a/src/Functions/Functions.sln b/src/Functions/Functions.sln index e66061de2eb9..7ff788e60875 100644 --- a/src/Functions/Functions.sln +++ b/src/Functions/Functions.sln @@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Functions", "Functions\Func EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Functions.Autorest", "Functions.Autorest", "{409734C8-465A-6FC8-866F-C49222B018F2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{8F10C0EF-169D-430B-B247-18AACB235C9C}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Functions", "..\..\generated\Functions\Functions.Autorest\Az.Functions.csproj", "{CC735097-5A21-475D-8FF3-8EB8FE244F06}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -117,18 +117,18 @@ Global {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x64.Build.0 = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.ActiveCfg = Release|Any CPU {A3D77364-5DA1-4707-B686-6A06395D5AE2}.Release|x86.Build.0 = Release|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x64.ActiveCfg = Debug|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x64.Build.0 = Debug|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x86.ActiveCfg = Debug|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Debug|x86.Build.0 = Debug|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|Any CPU.Build.0 = Release|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x64.ActiveCfg = Release|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x64.Build.0 = Release|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x86.ActiveCfg = Release|Any CPU - {8F10C0EF-169D-430B-B247-18AACB235C9C}.Release|x86.Build.0 = Release|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Debug|x64.ActiveCfg = Debug|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Debug|x64.Build.0 = Debug|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Debug|x86.ActiveCfg = Debug|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Debug|x86.Build.0 = Debug|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Release|Any CPU.Build.0 = Release|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Release|x64.ActiveCfg = Release|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Release|x64.Build.0 = Release|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Release|x86.ActiveCfg = Release|Any CPU + {CC735097-5A21-475D-8FF3-8EB8FE244F06}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -140,6 +140,6 @@ Global {5B61641B-643D-4ABC-B081-5DE505EA6C04} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {B4852E95-CB35-4A86-9E52-7D60A3439A9C} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} {68F3BFCE-E4C2-40D9-8AA6-2083F92368CD} = {3AADD083-8AC5-4FAB-A9D2-7449ACFF1981} - {8F10C0EF-169D-430B-B247-18AACB235C9C} = {409734C8-465A-6FC8-866F-C49222B018F2} + {CC735097-5A21-475D-8FF3-8EB8FE244F06} = {409734C8-465A-6FC8-866F-C49222B018F2} EndGlobalSection EndGlobal